diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ee40776..10a236e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,48 @@ ## v4.0.0 -### :warning: Planned Shopper Context Changes :warning: +### :warning: Planned API Changes :warning: -Starting July 31st 2024, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. +#### Shopper Context + +Starting July 31st 2024, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. You can read more about the planned change [here](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-context?meta=Summary) in the notes section. + +#### Shopper Login (SLAS) + +SLAS will soon require new tenants to pass `channel_id` as an argument for retrieving guest access tokens. You can read more about the planned change [here](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas.html#guest-tokens). + +Please be aware that existing tenants are on a temporary allow list and will see no immediate disruption to service. We do ask that all users seek to adhere to the `channel_id` requirement before the end of August to enhance your security posture before the holiday peak season. + +In practice, we recommend that customers using the SLAS helper functions upgrade to `v4.0.0` of the `commerce-sdk`. ### Enchancements -- Update SLAS helper function `loginGuestUserPrivate` to require `channel_id` as SLAS requires `channel_id` when requesting a guest access token with a `grant_type` of `client_credentials` starting July 31st 2024 [#406](https://github.com/SalesforceCommerceCloud/commerce-sdk/pull/406) - - See the [announcement on the developer docs](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas.html#guest-tokens) for more information +- Update SLAS helper function `loginGuestUserPrivate` to require `channel_id` and `loginGuestUser` to pass in `channel_id` to SLAS through `clientConfig.parameters.siteId` [#406](https://github.com/SalesforceCommerceCloud/commerce-sdk/pull/406) + +### API Changes + +*CDN Zones API* + +* Endpoints added + | **Endpoint Name** | **Description** | + | ------------- |-----------------------------------| + | getOwaspWafPackage | Get a OWASP ModSecurity Core Rule Set. | + | patchOwaspWafPackage | Patch a OWASP ModSecurity Core Rule Set. | + | getWafManagedRulesInRuleset | Retrieves all rules in the specified WAFv2 managed ruleset. | + | updateWafManagedRuleInRuleset | Updates a WAF managed rule in the specified WAFv2 managed ruleset. | + | migrateZoneToWafV2 | Migrates a zone to WAFv2. Only applicable for existing zones using WAFv1. | + | upsertOriginHeaderModification | Upsert origin header modification. | + | getOriginHeaderModification | Get origin header modification associated with a zone. | + | deleteOriginHeaderModification | Delete the origin header modification associated with a zone. | + +* **BREAKING**: Removed deprecated endpoints + * getFirewallRules + * createFirewallRule + * getFirewallRule + * updateFirewallRule + * deleteFirewallRule + + NOTE: As of February 6th, 2024, firewall rules are deprecated and customers can use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. ## v3.1.0 diff --git a/README.md b/README.md index 1797b90d..acab95d9 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,19 @@ The Salesforce Commerce SDK allows easy interaction with the Salesforce B2C Comm Visit the [Commerce Cloud Developer Center](https://developer.salesforce.com/developer-centers/commerce-cloud) to learn more about Salesforce Commerce. The developer center has API documentation, getting started guides, community forums, and more. ​ -## :warning: Planned Shopper Context Changes :warning: +## :warning: Planned API Changes :warning: -Starting July 31st 2024, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. +### Shopper Context + +Starting July 31st 2024, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. You can read more about the planned change [here](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-context?meta=Summary) in the notes section. + +### Shopper Login (SLAS) + +SLAS will soon require new tenants to pass `channel_id` as an argument for retrieving guest access tokens. You can read more about the planned change [here](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas.html#guest-tokens). + +Please be aware that existing tenants are on a temporary allow list and will see no immediate disruption to service. We do ask that all users seek to adhere to the `channel_id` requirement before the end of August to enhance your security posture before the holiday peak season. + +In practice, we recommend that customers using the SLAS helper functions upgrade to `v4.0.0` of the `commerce-sdk`. ## Prerequisites diff --git a/apis/cdn/cdn-api-process-apis/.metadata.json b/apis/cdn/cdn-api-process-apis/.metadata.json index 99d197ad..d0ada386 100644 --- a/apis/cdn/cdn-api-process-apis/.metadata.json +++ b/apis/cdn/cdn-api-process-apis/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/cdn-api-process-apis/1.0.30", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/cdn-api-process-apis/1.0.32", "name": "CDN Zones", "description": "Extend your eCDN beyond Business Manager configuration.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "cdn-api-process-apis", - "version": "1.0.30", + "version": "1.0.32", "categories": { "API layer": [ "Process" diff --git a/apis/cdn/cdn-api-process-apis/cdn-zones-description.md b/apis/cdn/cdn-api-process-apis/cdn-zones-description.md index 03e64e27..09c3e9e2 100644 --- a/apis/cdn/cdn-api-process-apis/cdn-zones-description.md +++ b/apis/cdn/cdn-api-process-apis/cdn-zones-description.md @@ -17,6 +17,8 @@ The API client must also have at least one of the following OAuth scopes: `sfcc. For detailed setup instructions, see the [Authorization for Admin APIs](https://developer.salesforce.com/docs/commerce/commerce-api/guide/authorization-for-admin-apis.html) guide. +You must include the relevant scope(s) in the client ID used to generate the token. For details, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + ## Use Cases For detailed usage information, refer to the [CDN Zones Guides.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones.html) \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/cdnapi-process-api.raml b/apis/cdn/cdn-api-process-apis/cdnapi-process-api.raml index 657c7dc2..97340254 100644 --- a/apis/cdn/cdn-api-process-apis/cdnapi-process-api.raml +++ b/apis/cdn/cdn-api-process-apis/cdnapi-process-api.raml @@ -22,7 +22,7 @@ mediaType: application/json uses: ApiStandards: /exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/api-standards/1.1.12/api-standards.raml - CommerceCloudStandards: /exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/commerce-cloud-standards.raml + CommerceCloudStandards: /exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml types: @@ -65,6 +65,12 @@ types: RateLimitingRulesPatchRequest: !include dataTypes/RateLimitingRulesPatchRequest.raml WAFManagedRuleset: !include dataTypes/WAFManagedRuleset.raml WAFManagedRulesetRequest: !include dataTypes/WAFManagedRulesetRequest.raml + WAFManagedRule: !include dataTypes/WAFManagedRule.raml + WAFManagedRuleRequest: !include dataTypes/WAFManagedRuleRequest.raml + WafPackagePatchRequest: !include dataTypes/WafPackagePatchRequest.raml + WAFRulePackage: !include dataTypes/WAFRulePackage.raml + OriginHeaderModification: !include dataTypes/OriginHeaderModification.raml + OriginHeaderModificationPutRequest: !include dataTypes/OriginHeaderModificationPutRequest.raml ZonesEnvelope: type: CollectionResponseEnvelope @@ -76,16 +82,6 @@ types: properties: data: type: Zone - FirewallRulesEnvelope: - type: CollectionResponseEnvelope - properties: - data: - type: FirewallRule[] - FirewallRuleEnvelope: - type: ItemResponseEnvelope - properties: - data: - type: FirewallRule WafGroupsEnvelope: type: CollectionResponseEnvelope properties: @@ -116,6 +112,11 @@ types: properties: data: type: SecuritySetting + WAFRulePackageEnvelope: + type: ItemResponseEnvelope + properties: + data: + type: WAFRulePackage CertificateEnvelope: type: ItemResponseEnvelope properties: @@ -186,6 +187,21 @@ types: properties: data: type: WAFManagedRuleset + WAFManagedRulesEnvelope: + type: CollectionResponseEnvelope + properties: + data: + type: WAFManagedRule[] + WAFManagedRuleEnvelope: + type: ItemResponseEnvelope + properties: + data: + type: WAFManagedRule + OriginHeaderModificationEnvelope: + type: ItemResponseEnvelope + properties: + data: + type: OriginHeaderModification traits: hasUnauthorizedResponse: !include traits/HasUnauthorizedResponse.raml @@ -215,8 +231,7 @@ traits: type: StorefrontZoneCreateEnvelope example: !include /examples/zone/storefront-zone-create-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/info: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -231,8 +246,7 @@ traits: type: ZonesEnvelope example: !include /examples/zone/zones-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /zones/{zoneId}/waf/groups: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -247,8 +261,7 @@ traits: type: WafGroupsEnvelope example: !include /examples/waf/wafgroups-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{groupId}: put: @@ -267,8 +280,7 @@ traits: type: WafGroupEnvelope example: !include /examples/waf/wafgroup-put-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/waf/rules: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] @@ -291,8 +303,7 @@ traits: type: WafRulesEnvelope example: !include /examples/waf/wafrules-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{ruleId}: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -307,8 +318,7 @@ traits: type: WafRuleEnvelope example: !include /examples/waf/wafrule-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } put: is: [hasBadRequestResponse] displayName: updateWafRule @@ -325,87 +335,7 @@ traits: type: WafRuleEnvelope example: !include /examples/waf/wafrule-put-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - - /zones/{zoneId}/firewall/rules: - get: - is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] - displayName: getFirewallRules - description: (DEPRECATED) Retrieves existing firewall rules. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - responses: - '200': - description: Successfully returned back the list of firewall rules requested by the caller. - body: - application/json: - type: FirewallRulesEnvelope - example: !include /examples/firewall/firewall-rules-get-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - - post: - is: [hasBadRequestResponse] - displayName: createFirewallRule - description: (DEPRECATED) Creates a firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - body: - application/json: - type: FirewallRule - example: !include /examples/firewall/firewall-rules-post-request.raml - responses: - '201': - description: Successfully created the firewall rule requested by the caller. - body: - application/json: - type: FirewallRuleEnvelope - example: !include /examples/firewall/firewall-rules-post-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - - /{firewallRuleId}: - get: - is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] - displayName: getFirewallRule - description: (DEPRECATED) Retrieve a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - responses: - '200': - description: Successfully returned back the firewall rule requested by the caller. - body: - application/json: - type: FirewallRuleEnvelope - example: !include /examples/firewall/firewall-rule-get-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - put: - is: [hasBadRequestResponse] - displayName: updateFirewallRule - description: (DEPRECATED) Update a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - body: - application/json: - type: FirewallRule - example: !include /examples/firewall/firewall-rules-put-request.raml - responses: - '200': - description: Successfully updated the firewall rule specified by the caller. - body: - application/json: - type: FirewallRuleEnvelope - example: !include /examples/firewall/firewall-rules-put-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - delete: - is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] - displayName: deleteFirewallRule - description: (DEPRECATED) Delete a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - responses: - '204': - description: Successfully deleted the firewall rule specified by the caller. - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/speed-settings: is: [hasResourceNotFoundResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] @@ -420,8 +350,7 @@ traits: type: SpeedSettingsEnvelope example: !include /examples/zone/speed-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateSpeedSettings @@ -441,8 +370,7 @@ traits: examples: response : !include /examples/zone/speed-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/security-settings: is: [hasBadRequestResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] get: @@ -456,8 +384,7 @@ traits: type: SecuritySettingsEnvelope example: !include /examples/zone/security-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: displayName: updateSecuritySettings description: Update security settings for a zone. @@ -473,8 +400,7 @@ traits: type: SecuritySettingsEnvelope example: !include /examples/zone/security-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/cachepurge: post: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] @@ -490,8 +416,7 @@ traits: application/json: type: CachePurgeResponseEnvelope securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/ocapicachingpagerule: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] patch: @@ -508,8 +433,7 @@ traits: application/json: type: OCAPICachingToggleRequest securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/certificates: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -526,8 +450,7 @@ traits: Proxy Zone Certificates Response: !include /examples/zone/certificates-get-response1.raml Legacy Zone Certificates Response: !include /examples/zone/certificates-get-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } post: is: [hasBadRequestResponse, hasConflictResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] displayName: addCertificateForZone @@ -545,8 +468,7 @@ traits: Self-Managed Certificate Response: !include /examples/zone/certificate-post-response1.raml eCDN-Managed Certificate Response: !include /examples/zone/certificate-post-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /{certificateId}: is: [ hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse ] delete: @@ -557,8 +479,7 @@ traits: 204: description: Successfully deleted the custom hostname and certificate associated with it. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateCertificate @@ -577,8 +498,7 @@ traits: Self-Managed Certificate Response: !include /examples/zone/certificate-update-response1.raml eCDN-Managed Certificate Response: !include /examples/zone/certificate-update-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /custom-hostnames/{customHostnameId}: patch: is: [ hasBadRequestResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse ] @@ -593,99 +513,100 @@ traits: examples: response : !include /examples/zone/custom-hostnames-patch-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/mrtrules: is: [hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] post: is: [hasBadRequestResponse] displayName: createMrtRules - description: Create MRT rules. + description: Create MRT rules to route to a new MRT environment. body: application/json: type: MRTRulesPostRequest - example: !include /examples/mrtrules/mrt-rules-post-request.raml + examples: + Single Hostname Request: !include /examples/mrtrules/mrt-rules-post-request-single-hostname.raml + Multiple Hostnames Request: !include /examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml responses: 201: - description: Create new MRT rules. + description: Create MRT rules to route to a new MRT environment. body: application/json: type: MRTRulesResponseEnvelope - example: !include /examples/mrtrules/mrt-rules-post-response.raml + examples: + Single Hostname Response: !include /examples/mrtrules/mrt-rules-post-response-single-hostname.raml + Multiple Hostnames Response: !include /examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateMrtRuleset - description: Update the MRT hostname or add MRT rules to the ruleset. + description: Update the MRT environment hostname or add MRT rules to route to an existing MRT environment. body: application/json: type: MRTRulesetPatchRequest - example: !include /examples/mrtrules/mrt-ruleset-patch-request.raml + examples: + Update MRT Hostname Request: !include /examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml + Add Rules for Existing MRT Hostname Request: !include /examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml responses: 200: - description: Update the MRT hostname or add MRT rules to the ruleset. + description: Update the MRT environment hostname or add MRT rules to route to an existing MRT environment. body: application/json: type: MRTRulesResponseEnvelope - example: !include /examples/mrtrules/mrt-ruleset-patch-response.raml + examples: + Update MRT Hostname Response: !include /examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml + Add Rules for Existing MRT Hostname Response: !include /examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: is: [hasBadRequestResponse] displayName: getMrtRules - description: Get MRT rules associated with a zone. + description: Get all MRT rules. responses: 200: - description: Get MRT rules associated with a zone. + description: Get all MRT rules. body: application/json: type: MRTRulesResponseEnvelope example: !include /examples/mrtrules/mrt-rules-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{rulesetId}: delete: displayName: deleteMrtRuleset - description: Delete the MRT ruleset specified for that particular zone. + description: Delete the MRT ruleset and all rules within the ruleset. responses: 204: - description: Delete the MRT ruleset specified for that particular zone. + description: Delete the MRT ruleset and all rules within the ruleset. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /rules/{ruleId}: is: [hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] delete: displayName: deleteMrtRule - description: Delete an MRT rule in the specified ruleset. + description: Delete an MRT rule. responses: 204: - description: Delete the MRT rule specified for the particular zone. + description: Delete an MRT rule. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateMrtRule - description: Update the expression and enable or disable an MRT rule. + description: Update an MRT rule. body: application/json: type: MRTRulePatchRequest example: !include /examples/mrtrules/mrt-rule-patch-request.raml responses: 200: - description: Successfully updated the MRT rule. + description: Update an MRT rule. body: application/json: type: MRTRulesResponseEnvelope example: !include /examples/mrtrules/mrt-rule-patch-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/logpush/ownership: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] post: @@ -704,8 +625,7 @@ traits: type: LogpushOwnershipPostResponse example: !include /examples/logpush/logpush-ownership-post-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/logpush/jobs: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] post: @@ -728,8 +648,7 @@ traits: response1 : !include /examples/logpush/logpush-create-response1.raml response2 : !include /examples/logpush/logpush-create-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: is: [ hasBadRequestResponse ] displayName: listLogpushJob @@ -742,8 +661,7 @@ traits: type: LogpushJobsEnvelope example: !include /examples/logpush/logpush-get-list-job.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{jobId}: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] get: @@ -761,8 +679,7 @@ traits: response2: !include /examples/logpush/logpush-get-job-by-id2.raml response3: !include /examples/logpush/logpush-get-job-by-id3.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } put: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] displayName: updateLogpushJob @@ -779,8 +696,7 @@ traits: type: LogpushEnvelope example: !include /examples/logpush/logpush-update-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } delete: displayName: deleteLogpushJob description: Delete Logpush job by job ID. @@ -788,8 +704,41 @@ traits: 204: description: Delete Logpush job by job ID. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /zones/{zoneId}/firewall/waf/packages/owasp: + is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] + get: + is: [hasBadRequestResponse] + displayName: getOwaspWafPackage + description: Get a OWASP ModSecurity Core Rule Set. + responses: + '200': + description: Successfully retrieved a OWASP ModSecurity Core Rule Set + body: + application/json: + type: WAFRulePackageEnvelope + examples: + response : !include /examples/wafpackages/wafpackages_get_example.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } + patch: + is: [ hasBadRequestResponse ] + displayName: patchOwaspWafPackage + description: Patch a OWASP ModSecurity Core Rule Set. + body: + application/json: + type: WafPackagePatchRequest + examples: !include /examples/wafpackages/wafpackages_patch_example.raml + responses: + '200': + description: Successfully patched a OWASP ModSecurity Core Rule Set + body: + application/json: + type: WAFRulePackageEnvelope + examples: + response: !include /examples/wafpackages/wafpackages_get_example.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/firewall-custom/rules: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] post: @@ -808,8 +757,7 @@ traits: type: CustomRuleEnvelope example: !include /examples/customrules/custom-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: is: [ApiStandards.OffsetPaginated: {maxLimit: 50, defaultSize: 25}] displayName: getCustomRules @@ -822,8 +770,7 @@ traits: type: CustomRulesEnvelope example: !include /examples/customrules/custom-rules-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateOrderOfCustomRules @@ -839,8 +786,7 @@ traits: type: CustomRulesEnvelope example: !include /examples/customrules/custom-rules-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /{ruleId}: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] get: @@ -854,8 +800,7 @@ traits: type: CustomRuleEnvelope example: !include /examples/customrules/custom-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateCustomRule @@ -871,8 +816,7 @@ traits: type: CustomRuleEnvelope example: !include /examples/customrules/custom-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } delete: displayName: deleteCustomRule description: Deletes a specific custom rule. @@ -880,8 +824,7 @@ traits: '204': description: Successfully deleted the custom rule requested by the caller. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/rate-limiting/rules: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] post: @@ -900,8 +843,7 @@ traits: type: RateLimitingRuleEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: displayName: getRateLimitingRules description: Retrieves existing rate limiting rules. @@ -913,8 +855,7 @@ traits: type: RateLimitingRulesEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rules-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{ruleId}: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] get: @@ -928,8 +869,7 @@ traits: type: RateLimitingRuleEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateRateLimitingRule @@ -945,8 +885,7 @@ traits: type: RateLimitingRuleEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } delete: displayName: deleteRateLimitingRule description: Deletes a specific rate limiting rule. @@ -954,8 +893,7 @@ traits: '204': description: Successfully deleted the rate limiting rule requested by the caller. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/firewall-managed/rulesets: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] get: @@ -969,8 +907,7 @@ traits: type: WAFManagedRulesetsEnvelope example: !include /examples/wafmanagedrulesets/waf-managed-rulesets-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{rulesetId}: is: [hasBadRequestResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] patch: @@ -988,5 +925,94 @@ traits: type: WAFManagedRulesetEnvelope example: !include /examples/wafmanagedrulesets/waf-managed-rulesets-update-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /rules: + get: + displayName: getWafManagedRulesInRuleset + description: Retrieves all rules in the specified WAFv2 managed ruleset. + responses: + '200': + description: Successfully returned the rules in the WAFv2 managed ruleset. + body: + application/json: + type: WAFManagedRulesEnvelope + example: !include /examples/wafmanagedrulesets/waf-managed-rules-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } + /{ruleId}: + patch: + displayName: updateWafManagedRuleInRuleset + description: Updates a WAF managed rule in the specified WAFv2 managed ruleset. + body: + application/json: + type: WAFManagedRuleRequest + example: !include /examples/wafmanagedrulesets/waf-managed-rules-update-request.raml + responses: + '200': + description: Successfully returned the updated WAF managed rule. + body: + application/json: + type: WAFManagedRuleEnvelope + example: !include /examples/wafmanagedrulesets/waf-managed-rules-update-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /zones/{zoneId}/firewall-managed/migration: + is: [hasBadRequestResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] + put: + displayName: migrateZoneToWafV2 + description: Migrates a zone to WAFv2. Only applicable for existing zones using WAFv1. + responses: + '200': + description: Successfully migrated the zone to WAFv2 and returned the updated WAF managed rulesets. + body: + application/json: + type: WAFManagedRulesetsEnvelope + example: !include /examples/wafmanagedrulesets/waf-managed-rulesets-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /zones/{zoneId}/origin-header-modification/{type}: + is: [hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] + put: + is: [hasBadRequestResponse] + displayName: upsertOriginHeaderModification + description: Upsert origin header modification. + body: + application/json: + type: OriginHeaderModificationPutRequest + example: !include /examples/originheadermodification/mrt-put-request.raml + responses: + 201: + description: Successfully created the origin header modification. + body: + application/json: + type: OriginHeaderModificationEnvelope + example: !include /examples/originheadermodification/mrt-put-create-response.raml + 200: + description: Successfully updated the origin header modification. + body: + application/json: + type: OriginHeaderModificationEnvelope + example: !include /examples/originheadermodification/mrt-put-update-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + get: + is: [hasBadRequestResponse] + displayName: getOriginHeaderModification + description: Get origin header modification associated with a zone. + responses: + 200: + description: Successfully returned the origin header modification associated with a zone. + body: + application/json: + type: OriginHeaderModificationEnvelope + example: !include /examples/originheadermodification/mrt-get-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } + delete: + displayName: deleteOriginHeaderModification + description: Delete the origin header modification associated with a zone. + responses: + 204: + description: Successfully deleted the origin header modification associated with a zone. + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml b/apis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml index 6606d68f..3ea5068d 100644 --- a/apis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml +++ b/apis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml @@ -1,5 +1,5 @@ #%RAML 1.0 DataType -description: Patch request for updating the mrtHostname pointing to an environment. +description: PATCH request for updating the MRT environment hostname or adding MRT rules to route to an existing MRT environment. type: object properties: oldMrtHostname: diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModification.raml b/apis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModification.raml new file mode 100644 index 00000000..e274c876 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModification.raml @@ -0,0 +1,16 @@ +#%RAML 1.0 DataType +description: An origin header modification rule. +type: object +properties: + headerName: + description: The name of the header forwarded to the origin. + type: string + example: x-sfdc-access-control + headerValue: + description: The masked value of the header forwarded to the origin. + type: string + example: '****************789' + lastUpdated: + description: Date when the rule was last updated. + type: datetime + example: 2022-01-01T05:20:00Z \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModificationPutRequest.raml b/apis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModificationPutRequest.raml new file mode 100644 index 00000000..48dcf5cf --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModificationPutRequest.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +description: Put request for creating/updating the origin header modification. +type: object +properties: + headerValue: + description: The value of the header forwarded to the origin. + type: string + example: "123456789" + required: true + headerName: + description: The name of the header forwarded to the origin. Cannot be modified for the MRT origin. + type: string + required: false \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml b/apis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml index 6456dbc2..df3f1a86 100644 --- a/apis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml +++ b/apis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml @@ -48,6 +48,27 @@ properties: default: off enum: ["on", "off"] example: off + earlyHints: + type: string + description: Early Hints for a zone. + required: false + default: off + enum: [ "on", "off" ] + example: off + http3: + type: string + description: Http3 for a zone. + required: false + default: off + enum: [ "on", "off" ] + example: off + http2ToOrigin: + type: string + description: Http2 to Origin for a zone. + required: false + default: off + enum: [ "on", "off" ] + example: off examples: brotliCompressionExample: @@ -63,4 +84,10 @@ examples: minfyHtmlExample: minfyHtml: off minifyCssExample: - minifyCss: off \ No newline at end of file + minifyCss: off + earlyHintsExample: + earlyHints: off + http3Example: + http3: off + http2ToOriginExample: + http2ToOrigin: off \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRule.raml b/apis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRule.raml new file mode 100644 index 00000000..e37161cb --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRule.raml @@ -0,0 +1,28 @@ +#%RAML 1.0 DataType +description: A WAF managed rule. +type: object +properties: + ruleId: + description: The ID of the WAF managed rule. + type: string + example: 5de7edfa648c4d6891dc3e7f84534ffa + action: + description: The action applied by the WAF managed rule. + type: string + example: block + categories: + description: A list of categories describing the function of the WAF managed rule. + type: string[] + example: ["broken-access-control", "wordpress"] + description: + description: The description of the WAF managed rule. + type: string + example: Wordpress - Broken Access Control + lastUpdated: + description: Date when the WAF managed rule was last updated. + type: datetime + example: 2024-01-01T05:20:00Z + enabled: + description: Whether or not the WAF managed rule is enabled. + type: boolean + example: true \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRuleRequest.raml b/apis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRuleRequest.raml new file mode 100644 index 00000000..b79dac3d --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRuleRequest.raml @@ -0,0 +1,14 @@ +#%RAML 1.0 DataType +description: A PATCH request for updating a WAF managed rule. +type: object +properties: + action: + description: The action applied by the WAF managed rule. + type: string + example: block + required: false + enabled: + description: Whether or not the WAF managed rule is enabled. + type: boolean + example: true + required: false \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/WAFRulePackage.raml b/apis/cdn/cdn-api-process-apis/dataTypes/WAFRulePackage.raml new file mode 100644 index 00000000..0f7f4325 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/dataTypes/WAFRulePackage.raml @@ -0,0 +1,27 @@ +#%RAML 1.0 DataType + +properties: + id: + type: string + example: a25a9a7e9c00afc1fb2e0245519d725b + maxLength: 32 + name: + type: string + description: Name of the firewall package + description: + type: string + description: Summary of purpose/function of firewall package + detection_mode: + type: string + description: How the rules within the package are evaluated during the course of a request. When a package uses anomaly detection, each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined on the package, the action defined on the package is taken. Traditional detection decides which action to take when it is triggered by the request. If multiple rules are triggered, the action with highest protection is used. For example, a block action beats a challenge. + zone_id: + type: string + description: Zone identifier with which this rule package is associated. + sensitivity: + type: string + enum: ["low", "medium", "high", "off"] + description: Sensitivity for traditional (owasp) rule package. + action_mode: + type: string + enum: ["simulate", "challenge", "block"] + description: The default action that is taken for rules under traditional(owasp) firewall package. diff --git a/apis/cdn/cdn-api-process-apis/dataTypes/WafPackagePatchRequest.raml b/apis/cdn/cdn-api-process-apis/dataTypes/WafPackagePatchRequest.raml new file mode 100644 index 00000000..1e1f6d97 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/dataTypes/WafPackagePatchRequest.raml @@ -0,0 +1,9 @@ +properties: + sensitivity: + type: string + enum: ["low", "medium", "high", "off"] + description: Sensitivity for traditional (owasp) rule package. + action_mode: + type: string + enum: ["simulate", "challenge", "block"] + description: The default action that is taken for rules under traditional(owasp) firewall package. \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rule-get-response.raml b/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rule-get-response.raml deleted file mode 100644 index 698aa86f..00000000 --- a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rule-get-response.raml +++ /dev/null @@ -1,13 +0,0 @@ -#%RAML 1.0 NamedExample - -value: - { - "data": - { - "firewallruleId": "3cc2523177bd4bc68e0065c3baf5e283", - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "ip", - "action": "blocklist", - "values": ["10.0.0.2/16"] - } - } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-get-response.raml b/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-get-response.raml deleted file mode 100644 index bd24db11..00000000 --- a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-get-response.raml +++ /dev/null @@ -1,35 +0,0 @@ -#%RAML 1.0 NamedExample - -value: - { - "data": [ - { - "firewallruleId": "3cc2523177bd4bc68e0065c3baf5e283", - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "ip", - "action": "blocklist", - "values": ["10.0.0.2/16"] - }, - { - "firewallruleId": "1044cb26a5d94e58b2d08d1ad246d038", - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "country", - "action": "blocklist", - "values": ["SU"] - }, - { - "firewallruleId": "8eccf2baf52a45668b4524aaa2546e60", - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "ip", - "action": "allowlist", - "values": ["10.0.0.1/16"] - }, - { - "firewallruleId": "e60bbc2c7a674ccf9754e76a1ee1924c", - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "country", - "action": "allowlist", - "values": ["US"] - } - ] - } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-post-request.raml b/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-post-request.raml deleted file mode 100644 index 239ccb24..00000000 --- a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-post-request.raml +++ /dev/null @@ -1,9 +0,0 @@ -#%RAML 1.0 NamedExample - -value: - { - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "ip", - "action": "allowlist", - "values": ["10.0.0.2/16"] - } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-post-response.raml b/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-post-response.raml deleted file mode 100644 index e7d1711e..00000000 --- a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-post-response.raml +++ /dev/null @@ -1,11 +0,0 @@ -#%RAML 1.0 NamedExample - -value: - { - "data": { - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "ip", - "action": "blocklist", - "values": ["10.0.0.2/16"] - } - } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-put-request.raml b/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-put-request.raml deleted file mode 100644 index a789a4ef..00000000 --- a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-put-request.raml +++ /dev/null @@ -1,9 +0,0 @@ -#%RAML 1.0 NamedExample - -value: - { - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "ip", - "action": "allowlist", - "values": ["10.0.0.2/16", "10.0.0.3/16"] - } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-put-response.raml b/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-put-response.raml deleted file mode 100644 index e7d1711e..00000000 --- a/apis/cdn/cdn-api-process-apis/examples/firewall/firewall-rules-put-response.raml +++ /dev/null @@ -1,11 +0,0 @@ -#%RAML 1.0 NamedExample - -value: - { - "data": { - "zoneId": "e4288c0a1f80fa5490b598d74c69bde4", - "type": "ip", - "action": "blocklist", - "values": ["10.0.0.2/16"] - } - } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml index e7247e00..e5c13f88 100644 --- a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml @@ -15,7 +15,7 @@ value: "lastUpdated": "2022-09-27T18:32:34.675182Z", "ref": "12345678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-paw-hybrid.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" } ] } diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml index 4a1acb87..53beda7a 100644 --- a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml @@ -15,15 +15,15 @@ value: "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "12345678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-dev.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" }, { "id": "12345678901234asdfasfasdf1234567", - "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "12345678901234asdfasfasdf1233333", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-dev.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" }, { "id": "12345678901234asdfasfasdf1234567", @@ -31,7 +31,7 @@ value: "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "98745678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-prod.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" } ] } diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml new file mode 100644 index 00000000..fe76d6cb --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value : + { + "mrtHostname": "customer.mobify-storefront.com", + "expressions": ["(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))"] + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-single-hostname.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-single-hostname.raml new file mode 100644 index 00000000..f60b250c --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-single-hostname.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value : + { + "mrtHostname": "customer.mobify-storefront.com", + "expressions": ["(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))"] + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml new file mode 100644 index 00000000..fddcaae1 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml @@ -0,0 +1,23 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "ruleset": + { + "id": "12345678901234asdfasfasdf1234567", + "name": "MRT Rules", + "lastUpdated": "2022-09-27T18:32:34.675182Z", + "rules": [ + { + "id": "12345678901234asdfasfasdf1234567", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234567", + "enabled": true, + "mrtHostname": "customer.mobify-storefront.com" + } + ] + } + } + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-single-hostname.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-single-hostname.raml new file mode 100644 index 00000000..a75270f0 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-single-hostname.raml @@ -0,0 +1,23 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "ruleset": + { + "id": "12345678901234asdfasfasdf1234567", + "name": "MRT Rules", + "lastUpdated": "2022-09-27T18:32:34.675182Z", + "rules": [ + { + "id": "12345678901234asdfasfasdf1234567", + "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234567", + "enabled": true, + "mrtHostname": "customer.mobify-storefront.com" + } + ] + } + } + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml similarity index 52% rename from apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request.raml rename to apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml index 17520d5d..44f9bdd2 100644 --- a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request.raml +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml @@ -1,9 +1,9 @@ #%RAML 1.0 NamedExample value : { - "mrtHostname": "customer-react-projec-production.mobify-storefront.com", + "mrtHostname": "customer.mobify-storefront.com", "expressions": ["(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))", - "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))" - ] + "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))" + ] } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml new file mode 100644 index 00000000..1ce2ee6a --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value : + { + "oldMrtHostname": "old-hostname.mobify-storefront.com", + "mrtHostname": "new-hostname.mobify-storefront.com" + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml similarity index 74% rename from apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response.raml rename to apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml index 6c5b4e29..78535c13 100644 --- a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response.raml +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml @@ -15,15 +15,15 @@ value: "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "12345678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-pwa-hybrid.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" }, { "id": "12345678901234asdfasfasdf1234568", - "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "12345678901234asdfasfasdf1234568", "enabled": true, - "mrtHostname": "customer-pwa-hybrid.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" } ] } diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml new file mode 100644 index 00000000..f32ca1c1 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml @@ -0,0 +1,31 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "ruleset": + { + "id": "12345678901234asdfasfasdf1234567", + "name": "MRT Rules", + "lastUpdated": "2022-09-27T18:32:34.675182Z", + "rules": [ + { + "id": "12345678901234asdfasfasdf1234567", + "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234567", + "enabled": true, + "mrtHostname": "new-hostname.mobify-storefront.com" + }, + { + "id": "12345678901234asdfasfasdf1234568", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234568", + "enabled": true, + "mrtHostname": "new-hostname.mobify-storefront.com" + } + ] + } + } + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-get-response.raml b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-get-response.raml new file mode 100644 index 00000000..ead58147 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-get-response.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "headerName": "x-sfdc-access-control", + "headerValue": "********789", + "lastUpdated": "2024-04-27T18:32:34.675182Z" + } + } diff --git a/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-create-response.raml b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-create-response.raml new file mode 100644 index 00000000..bbe28298 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-create-response.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "headerName": "x-sfdc-access-control", + "headerValue": "********789", + "lastUpdated": "2024-04-27T18:32:34.675182Z" + } + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-request.raml b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-request.raml new file mode 100644 index 00000000..49d4bc6f --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-request.raml @@ -0,0 +1,5 @@ +#%RAML 1.0 NamedExample +value : + { + "headerValue": "123456789" + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-update-response.raml b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-update-response.raml new file mode 100644 index 00000000..bbe28298 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-update-response.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "headerName": "x-sfdc-access-control", + "headerValue": "********789", + "lastUpdated": "2024-04-27T18:32:34.675182Z" + } + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-response.raml b/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-response.raml new file mode 100644 index 00000000..2aec67bc --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-response.raml @@ -0,0 +1,28 @@ +#%RAML 1.0 NamedExample +value: + { + "data": [ + { + "ruleId": "ef9520b6b08b4e279a6bf67286aa4371", + "action": "block", + "categories": [ + "broken-access-control", + "wordpress" + ], + "description": "Wordpress - Broken Access Control", + "lastUpdated": "2024-04-15T16:49:28.423829Z", + "enabled": true + }, + { + "ruleId": "20e34d3164a340dbb5c5d29203ccff90", + "action": "block", + "categories": [ + "broken-access-control", + "wordpress" + ], + "description": "Wordpress - Broken Access Control - Update Script", + "lastUpdated": "2024-04-15T16:49:28.423829Z", + "enabled": true + } + ] + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-request.raml b/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-request.raml new file mode 100644 index 00000000..7299d0cc --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-request.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value: + { + "action": "log", + "enabled": true + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-response.raml b/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-response.raml new file mode 100644 index 00000000..3ea1a36f --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-response.raml @@ -0,0 +1,15 @@ +#%RAML 1.0 NamedExample +value: + { + "data": { + "ruleId": "ef9520b6b08b4e279a6bf67286aa4371", + "action": "log", + "categories": [ + "broken-access-control", + "wordpress" + ], + "description": "Wordpress - Broken Access Control", + "lastUpdated": "2024-04-15T16:49:28.423829Z", + "enabled": true + } + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_get_example.raml b/apis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_get_example.raml new file mode 100644 index 00000000..9fb6a21f --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_get_example.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 NamedExample +{ + "data" : + { + "id": "c504870194831cd12c3fc0284f294abb", + "name": "OWASP ModSecurity Core Rule Set", + "description": "OWASP Core Ruleset (2013) provides protection against common attack categories, including SQL Injection and Cross-Site Scripting.", + "zone_id": "56702a674281951f541f9f304f7431f0", + "detection_mode": "anomaly", + "sensitivity": "low", + "action_mode": "simulate" + } +} \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_patch_example.raml b/apis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_patch_example.raml new file mode 100644 index 00000000..0b043467 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_patch_example.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 NamedExample +{ + "data" : + { + "sensitivity": "low", + "action_mode": "simulate" + } +} \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange.json b/apis/cdn/cdn-api-process-apis/exchange.json index b7a4775b..863d6a9a 100644 --- a/apis/cdn/cdn-api-process-apis/exchange.json +++ b/apis/cdn/cdn-api-process-apis/exchange.json @@ -1,24 +1,25 @@ { - "main": "cdnapi-process-api.raml", - "name": "CDN API - Process APIs", - "classifier": "raml", - "tags": [], "dependencies": [ { - "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "version": "1.1.12", "assetId": "api-standards", - "version": "1.1.12" + "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" }, { - "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "version": "2.0.1", "assetId": "commerce-cloud-standards", - "version": "1.0.17" + "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], + "version": "1.0.32", + "originalFormatVersion": "1.0", + "apiVersion": "v1", + "descriptorVersion": "0.1.0", + "classifier": "raml", + "main": "cdnapi-process-api.raml", + "assetId": "cdn-api-process-apis", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "organizationId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", - "assetId": "cdn-api-process-apis", - "version": "1.0.30", - "apiVersion": "v1", - "originalFormatVersion": "1.0" + "name": "CDN API - Process APIs", + "tags": [] } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/bearer-token.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/bearer-token.raml deleted file mode 100644 index a1d58111..00000000 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/bearer-token.raml +++ /dev/null @@ -1,13 +0,0 @@ -#%RAML 1.0 SecurityScheme -description: A security scheme that supplements APIs secured with `AmOAuth2` to support the usage of the mocking service. Expects a valid Bearer token passed in the 'Authorization' header to permit API access. -type: x-custom -displayName: BearerToken -describedBy: - headers: - Authorization: - description: |- - Bearer token - type: string - pattern: "Bearer .*" - examples: - authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/commerce-cloud-standards.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/commerce-cloud-standards.raml deleted file mode 100644 index 0a2aefa8..00000000 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/commerce-cloud-standards.raml +++ /dev/null @@ -1,111 +0,0 @@ -#%RAML 1.0 Library -usage: |- - - This is a collection of types, traits, security schemes, and more that follow the standards that are defined for Salesforce Commerce Cloud APIs. This standard library should be used, in conjuction with the standard Salesforce API Standards library, via: - - uses: - ApiStandards: exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/api-standards/1.1.3/api-standards.raml - CommerceCloudStandards: exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.5/commerce-cloud-standards.raml - - The goal is to expose only the importable objects in these files, and keep other, internal details as 'private'. If you feel something that is used internally in the standard is something that should be exposed in `commerce-cloud-standards.raml`, or if you feel something should be added to the standard, contact the C4E team with your proposal. - - # SecuritySchemes - - This project provides the following reusable securitySchemes. Except in rare circumstances, an API should not need to define its own security scheme and should use the ones provided here or in the Salesforce API Standards: - - - **`AmOAuth2`:** a security scheme for endpoints authenticated against [Account Manager](https://account.demandware.com/dw/account/Home#/) OAuth 2.0. - - **`ShopperToken`:** a security scheme for endpoints authenticated via Shopper JWTs. - - **`BearerToken`:** a security scheme that supplements APIs secured with `AmOAuth2` to support the usage of the mocking service. - - # Types - This project provides the following reusable types. These types are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. - - - **`SiteId`:** a type that describes the storefront context for requests by a Shopper. If you need to have a siteId queryParam, use the trait `SiteSpecific`. - - ## Search Specific - - **`SearchRequest`:** a type commonly used for searching that takes a query in a body. - - **`PaginatedSearchResult`:** a type commonly used for a search response that took a query in a body. - - **`SimpleSearchResult`:** a type used for a search response that takes a query in a body, but does not return a paginated result. - - ## Following Standards - - - **`CurrencyCode`:** ISO 4217 compliant currency code. - - **`Money`:** A combination of a CurrencyCode and a number. - - **`LanguageCode`:** ISO 639-1 compliant language code. - - **`CountryCode `:** ISO 3166-1 compliant country code. - - **`LocaleCode`:** A combination of LanguageCode and CountryCode. - - **`LocalizedString`:** A map of LocaleCode keys to String values. Used for strings that would have different values in different langauges, like description fields. - - ## Property Metadata - - **`PropertyMetadata`:** A base type used for retrieving property metadata and creating property metadata for custom properties. - - # Resource Types - - This project provides the following reusable resource types. These resource types are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. - - - **`Organization`:** a type that describes the `organizationId` uri parameter that the majority of Commerce Cloud APIs require in the resource path after the `version`. The beginning of all API resource paths is expected to be `/organizations/{organizationId}`. This resource type will provide the documentation and validation of the `organizationId`. - - # Traits - This project provides the following reusable traits. These traits are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. - - - **`SiteSpecific`:** adds a query parameter called `siteId` of type `SiteId` to the request. - - **`QueryParamsLimit`:** adds an offset query parameter without the limit query parameter. Some Commerce Cloud use cases do not currently require both. Prefer the use of `ApiStandards.OffsetPaginated`, may be deprecated in the future if there is no use case for it. - - **`QueryParamsOffset`:** adds a limit query parameter without the offset query parameter. Some Commerce Cloud use cases do not currently require both. Prefer the use of `ApiStandards.OffsetPaginated`, may be deprecated in the future if there is no use case for it. - - -uses: - AdditionalProperties: Types/additional-properties.raml - Search: Types/search-types.raml - Pagination: Types/pagination-types.raml - ISO: Types/ISO-standards.raml - AttributeDefinitions: Types/attribute-definition-types.raml - -securitySchemes: - AmOAuth2: !include SecuritySchemes/am-oauth-2.raml - ShopperToken: !include SecuritySchemes/shopper-token.raml - BearerToken: !include SecuritySchemes/bearer-token.raml - -types: - SiteId: - description: The identifer of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites - example: - SiteGenesis - type: string - minLength: 1 - SearchRequest: Search.SearchRequestBase - PaginatedSearchResult: Search.PaginatedSearchResultBase - SimpleSearchResult: Search.SimpleSearchResultBase - - CurrencyCode: ISO.Currency - Money: ISO.MoneyMnemonic - LanguageCode: ISO.Language - CountryCode: ISO.Country - LocaleCode: ISO.Locale - LocalizedString: ISO.L10nString - - PropertyDefinition: AttributeDefinitions.AttributeDefinition - - ClosedObject: AdditionalProperties.NoPropertiesAllowed - OpenObject: AdditionalProperties.SpecifiedPropertiesAllowed - -resourceTypes: - Organization: - uriParameters: - organizationId: - description: An identifier for the organization the request is being made by. - example: - f_ecom_zzxy_prd - -traits: - QueryParamsLimit: - usage: This trait should not be used unless there is no requirement for QueryParamsOffset. Prefer the usage of ApiStandards.OffsetPaginated. - queryParameters: - limit?: Pagination.Limit - QueryParamsOffset: - usage: This trait should not be used unless there is no requirement for QueryParamsLimit. Prefer the usage of ApiStandards.OffsetPaginated. - queryParameters: - offset?: Pagination.Offset - SiteSpecific: - usage: This trait should be used whenever a resource has the context of a site assoicated with its request. This will add a siteId query parameter - queryParameters: - siteId: SiteId diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/exchange.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/exchange.json deleted file mode 100644 index b7967978..00000000 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/exchange.json +++ /dev/null @@ -1 +0,0 @@ -{"main":"commerce-cloud-standards.raml","name":"Commerce Cloud Standards","classifier":"raml-fragment","tags":[],"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"commerce-cloud-standards","version":"1.0.17"} \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Documentation/ErrorResponseMapping.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/ErrorResponseMapping.raml similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Documentation/ErrorResponseMapping.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/ErrorResponseMapping.raml diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Documentation/baseUri.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/baseUri.raml similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Documentation/baseUri.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/baseUri.raml diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/BoolFilter.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolFilter.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/BoolFilter.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolFilter.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/BoolQuery.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/BoolQuery.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/BoolQuery.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.raml similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/BoolQuery.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.raml diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/Filter.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Filter.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/Filter.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Filter.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/FilteredQuery.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/FilteredQuery.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/FilteredQuery.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/FilteredQuery.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/NestedQuery.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/NestedQuery.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/NestedQuery.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/NestedQuery.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/PaginatedSearchResultBase.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/PaginatedSearchResultBase.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/PaginatedSearchResultBase.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/PaginatedSearchResultBase.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/Query.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Query.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/Query.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Query.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/QueryFilter.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/QueryFilter.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/QueryFilter.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/QueryFilter.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/Range2Filter.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Range2Filter.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/Range2Filter.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Range2Filter.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/RangeFilter.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/RangeFilter.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/RangeFilter.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/RangeFilter.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/SearchRequestBase.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SearchRequestBase.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/SearchRequestBase.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SearchRequestBase.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/SimpleSearchResultBase.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SimpleSearchResultBase.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/SimpleSearchResultBase.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SimpleSearchResultBase.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/TermFilter.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermFilter.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/TermFilter.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermFilter.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/TermQuery.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermQuery.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/TermQuery.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermQuery.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/TextQuery.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TextQuery.json similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Examples/TextQuery.json rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TextQuery.json diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/am-oauth-2.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/am-oauth-2.raml similarity index 67% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/am-oauth-2.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/am-oauth-2.raml index f5e12239..2a4c8589 100644 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/am-oauth-2.raml +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/am-oauth-2.raml @@ -10,36 +10,36 @@ describedBy: headers: Authorization: description: | - OAuth 2.0 access-token in Bearer scheme + OAuth 2.0 access token in Bearer scheme type: string pattern: "Bearer .*" examples: authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f responses: 401: - description: Unauthorized. Your access-token is invalid and could not be used to identify an API client or user. + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify an API client or user. headers: WWW-Authenticate: example: | WWW-Authenticate: Bearer realm="servers", error="invalid_token", - error_description="The access-token expired" + error_description="The access token expired" body: application/json: type: !include ../Types/error-response.raml example: type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" title: Unauthorized - detail: Your access-token is invalid and could not be used to identify an API client or user. + detail: Your access token is invalid and can’t be used to identify an API client or user. 403: - description: Forbidden. Your access-token is valid, but you have no permissions to access the resource. + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. body: application/json: type: !include ../Types/error-response.raml example: type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" title: Forbidden - detail: Your access-token is valid, but you have no permissions to access the resource. + detail: Your access token is valid, but you don’t have the required permissions to access the resource. settings: authorizationUri: https://account.demandware.com/dwsso/oauth2/authorize accessTokenUri: https://account.demandware.com/dwsso/oauth2/access_token diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-taob.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-taob.raml new file mode 100644 index 00000000..e6754c16 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-taob.raml @@ -0,0 +1,51 @@ +#%RAML 1.0 SecurityScheme + +description: | + `ShopperTokenTaob` (Taob = trusted agent on behalf) is a child of the `ShopperToken` security scheme and extends the functionality of `ShopperToken` for specific use cases. + A token of type `ShopperTokenTaob` allows you to access Shopper API endpoints, including OCAPI and Salesforce Commerce API for headless applications. Besides endpoints that require this specific subtype, all other endpoints secured by the `ShopperToken` parent scheme can be accessed with a `ShopperTokenTaob`. + To get a `ShopperTokenTaob` token, a `Taob` session needs to be created first (see [getTrustedAgentAuthorizationToken](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-login?meta=getTrustedAgentAuthorizationToken)). Afterwards the `ShopperTokenTaob` token can be gained (see [getTrustedAgentAccessToken](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-login?meta=getTrustedAgentAccessToken)). + For more information regarding the `Taob` flow see also [Trusted Agent Authorization](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-trusted-agent.html). + +type: OAuth 2.0 +displayName: ShopperTokenTaob + +uses: + +describedBy: + headers: + Authorization: + description: | + OAuth 2.0 access token in Bearer scheme + type: string + pattern: "Bearer .*" + examples: + authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f + responses: + 401: + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify an API client or user. + headers: + WWW-Authenticate: + example: | + WWW-Authenticate: Bearer realm="servers", + error="invalid_token", + error_description="The access token expired" + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" + title: Unauthorized + detail: Your access token is invalid and can’t be used to identify an API client or user. + 403: + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" + title: Forbidden + detail: Your access token is valid, but you don’t have the required permissions to access the resource. +settings: + accessTokenUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/trusted-agent/token + authorizationGrants: [client_credentials] + \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-tsob.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-tsob.raml new file mode 100644 index 00000000..a8248865 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-tsob.raml @@ -0,0 +1,50 @@ +#%RAML 1.0 SecurityScheme + +description: | + `ShopperTokenTsob` (Tsob = trusted system on behalf) is a child of the `ShopperToken` security scheme and extends the functionality of `ShopperToken` for specific use cases. + A token of type `ShopperTokenTsob` allows you to access Shopper API endpoints, including OCAPI and Salesforce Commerce API for headless applications. Besides endpoints that require this specific subtype, all other endpoints secured by the `ShopperToken` parent scheme can be accessed with a `ShopperTokenTsob`. + To learn how to get a `ShopperTokenTsob` token, see [getTrustedSystemAccessToken](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:getTrustedSystemAccessToken). + +type: OAuth 2.0 +displayName: ShopperTokenTsob + +uses: + +describedBy: + headers: + Authorization: + description: | + OAuth 2.0 access token in Bearer scheme + type: string + pattern: "Bearer .*" + examples: + authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f + responses: + 401: + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify an API client or user. + headers: + WWW-Authenticate: + example: | + WWW-Authenticate: Bearer realm="servers", + error="invalid_token", + error_description="The access token expired" + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" + title: Unauthorized + detail: Your access token is invalid and can’t be used to identify an API client or user. + 403: + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" + title: Forbidden + detail: Your access token is valid, but you don’t have the required permissions to access the resource. +settings: + accessTokenUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/trusted-system/token + authorizationGrants: [client_credentials] + \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token.raml new file mode 100644 index 00000000..f211a3c0 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token.raml @@ -0,0 +1,50 @@ +#%RAML 1.0 SecurityScheme + +description: | + `ShopperToken` authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. For a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary). + A shopper token allows you to access the Shopper API endpoints of both OCAPI and the B2C Commerce API. These endpoints can be used to build headless storefronts and other applications. + The `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token. + +type: OAuth 2.0 +displayName: ShopperToken + +uses: + +describedBy: + headers: + Authorization: + description: | + Bearer token + type: string + pattern: "Bearer .*" + examples: + authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f + responses: + 401: + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify a user. + headers: + WWW-Authenticate: + example: | + WWW-Authenticate: Bearer realm="servers", + error="invalid_token", + error_description="The token expired" + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" + title: Unauthorized + detail: Your access token is invalid or expired and can’t be used to identify a user. + 403: + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" + title: Forbidden + detail: Your access token is valid, but you don’t have the required permissions to access the resource. +settings: + authorizationUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize + accessTokenUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + authorizationGrants: [authorization_code,client_credentials] \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/ISO-standards.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/ISO-standards.raml similarity index 99% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/ISO-standards.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/ISO-standards.raml index f71d3928..cb15c1c0 100644 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/ISO-standards.raml +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/ISO-standards.raml @@ -22,6 +22,8 @@ types: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. # type: ISOCurrency | NoValue type: string + example: + USD MoneyMnemonic: description: |- A combination of a Currency and an amount of that Currency. diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/additional-properties.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/additional-properties.raml similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/additional-properties.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/additional-properties.raml diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/attribute-definition-types.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/attribute-definition-types.raml similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/attribute-definition-types.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/attribute-definition-types.raml diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/error-response.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/error-response.raml similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/error-response.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/error-response.raml diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/pagination-types.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/pagination-types.raml similarity index 100% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/pagination-types.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/pagination-types.raml diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/search-types.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/search-types.raml similarity index 65% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/search-types.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/search-types.raml index 4530d24e..93accaf6 100644 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/Types/search-types.raml +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/search-types.raml @@ -1,21 +1,21 @@ #%RAML 1.0 Library -usage: A common set of search related request and response types for OCAPI Data resources. Data resources are expected to use the search request directly, and extend search response in their definition. +usage: A common set of search-related request types and response types for OCAPI Data resources. Data resources are expected to use the search request directly and extend the search response in their definition. uses: Pagination: pagination-types.raml types: BoolFilter: - description: Allows you to combine other filters into (possibly recursive) logical expression trees. A boolean filter is configured with a boolean operator (AND, OR, NOT) and a list of filters the operator relates to. If multiple filters are given to a boolean NOT operator, this is interpreted as a NOT upon a boolean AND of the given filters. + description: Allows you to combine other filters into (possibly recursive) logical expression trees. A boolean filter is composed of a logical operator (`AND`, `OR`, `NOT`) and a list of filters that the operator relates to. Multiple filters can be negated with a single `NOT` operator, even when the filters are combined with the `AND` operator. type: object example: !include ../Examples/BoolFilter.json properties: filters: - description: A list of filters, which are logically combined by an operator. - type: any[] + description: A list of filters that are logically combined by an operator. + type: Filter[] required: false operator: - description: The logical operator the filters are combined with. + description: The logical operator that is used to combine the filters. type: string enum: - and @@ -23,42 +23,43 @@ types: - not BoolQuery: description: | - A boolean query allows construction of full logical expression trees consisting of other queries (usually term and text queries). A boolean query basically has 3 sets of clauses: + A boolean query allows construction of full logical expression trees that are composed of other queries (usually term queries and text queries). A boolean query has three sets of clauses: - * must, which combines as an `AND` - * should, which combines as an `OR`, and - * must_not, which combines as a `NOT`. + - `must`, which combines as an `AND` operator. + - `should`, which combines as an `OR` operator. + - `must_not`, which combines as a `NOT` operator. - If 'must', 'mustNot', or 'should' appear in the same boolean query, they are combined logically using the AND operator. Syntactically, this amounts to: + If `must`, `mustNot`, or `should` appear in the same boolean query, they are combined logically using the `AND` operator. For example: (must-1 AND must-1 AND ...) AND (should-1 OR should-2 OR ...) AND NOT (must_not-1 OR must_not-2 OR ...) + type: object examples: !include ../Examples/BoolQuery.raml properties: must?: - description: List of queries to be evaluated as an `AND`. - type: any[] + description: List of queries to be evaluated as an `AND` operator. + type: Query[] mustNot?: - description: List of queries to be evaluated as an `NOT`. - type: any[] + description: List of queries to be evaluated as a `NOT` operator. + type: Query[] should?: - description: List of queries to be evaluated as an `OR`. - type: any[] + description: List of queries to be evaluated as an `OR` operator. + type: Query[] Filter: description: |- Contains a set of objects that define criteria used to select records. A filter can contain one of the following: - * TermFilter - - Matches records where a field (or fields) exactly match some simple value (including null). - * RangeFilter - - Matches records where a field value lies in a specified range. - * Range2Filter + * `TermFilter` + - Matches records where a field (or fields) exactly matches some simple value (including `null`). + * `RangeFilter` + - Matches records where a field value lies within a specified range. + * `Range2Filter` - Matches records in a specified range across fields. - * QueryFilter + * `QueryFilter` - Matches records based on a query. - * BoolFilter - - Provides filtering of records using a set of filters combined using a specified operator. + * `BoolFilter` + - Provides filtering of records using a set of filters combined using a logical operator. type: object example: !include ../Examples/Filter.json minProperties: 1 @@ -70,24 +71,24 @@ types: rangeFilter?: RangeFilter termFilter?: TermFilter FilteredQuery: - description: A filtered query allows to filter the result of a possibly complex query using a possibly complex filter. + description: Allows to filter the result of a possibly complex query using a possibly complex filter. type: object example: !include ../Examples/FilteredQuery.json properties: filter: description: The possibly complex filter object. - type: any + type: Filter query: description: The query object. - type: any + type: Query MatchAllQuery: - description: A match all query simply matches all documents (namespace and document type). This query comes in handy if you just want to filter a search result or really do not have any constraints. + description: Matches all documents (namespace and document type). This query comes in handy if you just want to filter a search result or really do not have any constraints. type: object NestedQuery: description: | - Nested query allows to query upon nested documents that are part of a larger document. The classical example is a product master with variants, in one big document, where you want to constraint a search to masters that have variants that match multiple constraints. + Allows you to query nested documents that are part of a larger document. Say, for example, that you have a main product with variations in one big document, and you want to constrain a search to main products that have variations that match multiple constraints. - This Query is only applicable a subset of APIs. Consult your API documentation to see if NestedQuery is supported. + A `NestedQuery` is only supported by some Commerce APIs. For more details, see the endpoint descriptions in the API documentation. type: object example: !include ../Examples/NestedQuery.json properties: @@ -96,7 +97,7 @@ types: type: string query: description: The query to run on the nested document. - type: any + type: Query scoreMode: description: |- Indicates how scores for matching child objects affect the root parent document’s relevance score. @@ -110,19 +111,19 @@ types: Query: description: |- A set of objects that define criteria used to select records. A query can contain one of the following: - * MatchAllQuery + * `MatchAllQuery` - Matches all documents. - * TermQuery + * `TermQuery` - Matches one or more documents against one or more document fields. - * TextQuery + * `TextQuery` - Matches text against one or more fields. - * BoolQuery + * `BoolQuery` - Allows construction of a logical expression of multiple queries. - * FilteredQuery + * `FilteredQuery` - Allows a filter to be applied to a query. - * NestedQuery - - Allows to query upon nested documents that are part of a larger document. - - _Only valid for a subset of APIs. See API documentation to determine if this is supported._ + * `NestedQuery` + - Allows you to query on nested documents. + - _Only supported by some Commerce APIs. For more details, see the endpoint descriptions in the API documentation._ type: object maxProperties: 1 minProperties: 1 @@ -142,22 +143,22 @@ types: properties: query: description: The query to use as a filter. - type: any + type: Query Range2Filter: description: |- Allows you to restrict a search result to hits where a range defined by specified attributes has a certain relationship to a specified range. - The first range (R1) is defined by a pair of attributes ("fromField" and "toField") that specify the extent of a range, such as attributes "validFrom" and "validTo". + The first range (R1) is defined by a pair of attributes (`fromField` and `toField`) that specify the extent of a range, such as attributes `validFrom` and `validTo`. - The second range (R2) is defined by "fromValue" and "toValue". + The second range (R2) is defined by `fromValue` and `toValue`. The filter mode specifies the method used to compare the two ranges: - * overlap: R1 overlaps fully or partially with R2. - * containing: R1 contains R2. - * contained: R1 is contained in R2. + * `overlap`: R1 overlaps fully or partially with R2. + * `containing`: R1 contains R2. + * `contained`: R1 is contained in R2. - The range filter supports several value types, and relies on the natural sorting of the value type for range interpretation. Value ranges can be open-ended, at one end only. You can configure whether the lower and upper bounds are inclusive or exclusive. + The range filter supports several value types, and relies on the natural sorting of the value type for range interpretation. Value ranges can be open-ended, but only at one end of the range. You can configure whether the lower bounds and upper bounds are inclusive or exclusive. A range 2 filter is useful for general restrictions that can be shared between searches (like a static date range) because the filter result is cached in memory. Range filters are not appropriate if the range is expected to be different for every query (for example, if the user controls the date range down to the hour via a UI control). Range filters are inclusive by default. @@ -177,7 +178,7 @@ types: description: The field name of the field that starts the first range. type: string fromInclusive: - description: A flag indicating if the lower bound of the second range is inclusive. Set to false to make the lower bound exclusive. + description: A flag indicating if the lower bound of the second range is inclusive. To make the lower bound exclusive, set to `false`. type: boolean required: false default: true @@ -189,7 +190,7 @@ types: description: The field name of the field that ends the first range. type: string toInclusive: - description: A flag indicating if the upper bound of the second range is inclusive. Set to false to make the lower bound exclusive. + description: A flag indicating if the upper bound of the second range is inclusive. To make the lower bound exclusive, set to `false`. type: boolean required: false default: true @@ -199,7 +200,7 @@ types: required: false RangeFilter: description: |- - Allows you to restrict a search result to hits that have values for a given attribute that fall into a given value range. The range filter supports several value types, and relies on the natural sorting of the value type for range interpretation. Value ranges can be open-ended, at one end only. You can configure whether the lower and upper bounds are inclusive or exclusive. + Allows you to restrict a search result to hits that have values for a given attribute that fall within a given value range. The range filter supports several value types and relies on the natural sorting of the value type for range interpretation. Value ranges can be open-ended, but only at one end of the range. You can configure whether the lower bounds and upper bounds are inclusive or exclusive. A range filter is useful for general restrictions that can be shared between searches (like a static date range) because the filter result is cached in memory. Range filters are not appropriate if the range is expected to be different for every query (for example, if the user controls the date range down to the hour via a UI control). Range filters are inclusive by default. type: object @@ -213,7 +214,7 @@ types: type: any required: false fromInclusive: - description: A flag indicating if the lower bound of the range is inclusive. Set to false to make the lower bound exclusive. + description: A flag indicating if the lower bound of the range is inclusive. To make the lower bound exclusive, set to `false`. type: boolean required: false default: true @@ -222,7 +223,7 @@ types: type: any required: false toInclusive: - description: A flag indicating if the upper bound of the range is inclusive. Set to false to made the upper bound exclusive. + description: A flag indicating if the upper bound of the range is inclusive. To make the upper bound exclusive, set to `false`. type: boolean required: false default: true @@ -237,10 +238,10 @@ types: description: Maximum records to retrieve per request, not to exceed 200. query: description: | - The search query. See the API documentation for a list of supported queryable attributes. - type: any + The search query. See the description of the search endpoint for a list of queryable attributes. + type: Query sorts: - description: The list of sort clauses configured for the search request. Sort clauses are optional; see the API documentation for the default sorting behavior if explicit sorts are not passed. + description: The list of sort clauses configured for the search request. Sort clauses are optional. See the description of the search endpoint for details on the default sorting behavior that is used when explicit sorts are not passed. type: Sort[] required: false offset?: Pagination.Offset @@ -250,8 +251,8 @@ types: example: !include ../Examples/PaginatedSearchResultBase.json properties: query: - description: The query passed into the search. - type: any + description: The query that is passed into the search. + type: Query sorts: description: The sorting that was applied to the result. type: Sort[] @@ -273,7 +274,7 @@ types: total: Pagination.Total Sort: - description: Document representing a sort request. Each API has a different default sort configured that can be modified in the request. + description: Document representing a sort request. Each API has a different default sort configuration that can be modified in the request. type: object example: { "field": "couponId", "sortOrder": "desc" } properties: @@ -298,7 +299,7 @@ types: description: The filter field. type: string operator: - description: The operator to compare the field's values with the given ones. + description: The operator used to compare the field's values with the given values. type: string enum: - is @@ -315,17 +316,17 @@ types: required: false TermQuery: description: |- - A term query matches one or more values against one or more document fields. A document is considered a hit if one of the values matches exactly with at least one of the given fields. The operator "is" can only take one value, while "one_of" can take multiple. If multiple fields are specified, they are combined using the OR operator. + A term query matches one or more values against one or more document fields. A document is considered a hit if one of the values matches exactly with at least one of the given fields. The operator `is` can only take one value, while `one_of` can take multiple values. If multiple fields are specified, they are combined using a logical `OR` operator. **Limitations:** - * The `greater` and `less` operators are not supported under certain conditions. They are permitted unless the API documentation states that they are not supported. - * A subset of APIs have special handling when used with multiple fields. If used with multiple fields, the query is internally handled as a boolean OR of DisjointMaxQueries (with the dismax matching a value against all fields). The dismax makes sure that a document carrying a single term in multiple fields does not get higher scores than a document matching multiple terms in multiple fields. See your API documetation to see if that API has this behavior. + * The `greater` and `less` operators are not supported under certain conditions. Both operators are permitted unless the API documentation states otherwise. + * A subset of Commerce APIs handle queries with multiple fields differently. If the query has multiple fields, the query is internally handled as a logical `OR` of `DisjointMaxQueries` (with the dismax matching a value against all fields). The dismax makes sure that a document carrying a single term in multiple fields does not get higher scores than a document matching multiple terms in multiple fields. type: object example: !include ../Examples/TermQuery.json properties: fields: - description: The document fields, the values are matched against, combined with the operator. + description: The document fields that the values are matched against, combined with the operator. minItems: 1 type: string[] operator: @@ -341,19 +342,19 @@ types: - not_in - neq values: - description: The values, the fields are compared against, combined with the operator. + description: The values that the fields are compared against, combined with the operator. type: any[] required: false TextQuery: description: |- - A text query is used to match some text (for example, a search phrase possibly consisting of multiple terms) against one or multiple fields. When multiple fields are provided, the phrase conceptually forms a logical OR over the fields. In this case, the terms of the phrase basically have to match within the text, that would result in concatenating all given fields. + A text query is used to match some text (for example, a search phrase possibly consisting of multiple terms) against one or more fields. When multiple fields are provided, the phrase conceptually forms a logical `OR` over the fields. In this case, the terms of the phrase basically have to match within the text, that would result in concatenating all given fields. type: object example: !include ../Examples/TextQuery.json properties: fields: - description: The document fields the search phrase has to match against. + description: The document fields that the search phrase matches against. minItems: 1 type: string[] searchPhrase: - description: A search phrase, which can consist of multiple terms separated by spaces. + description: A search phrase, which can include multiple terms separated by spaces. type: string \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml new file mode 100644 index 00000000..90ec2324 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml @@ -0,0 +1,118 @@ +#%RAML 1.0 Library +usage: |- + + The Commerce Cloud API Standards is a collection of types, traits, security schemes, and more that follows the standards that are defined for the B2C Commerce APIs. Use this standard library in conjunction with the Salesforce API Standards library, via the `uses` property. See the main RAML file for any of the B2C Commerce APIs for example usage. + + The goal of this library is to expose only the importable objects and keep other, internal details as private. If you have suggestions for adding to the standard, contact the C4E team with your proposal. + + # Security Schemes + + This library provides the following reusable security schemes. Except in rare circumstances, avoid defining a custom security scheme for a single API. The security schemes provided here or in the Salesforce API Standards are designed to meet the needs of most applications. + + Security schemes included in Commerce Cloud Standards: + + - `AmOAuth2`: for endpoints authenticated against [Account Manager](https://account.demandware.com/dw/account/Home#/) OAuth 2.0. + - `ShopperToken`: for endpoints authenticated via Shopper JWTs. + + ## Types + + This library provides the following reusable types. These types are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. + + - `SiteId`: a type that describes the storefront context for requests by a Shopper. If you need to have a siteId queryParam, use the trait `SiteSpecific`. + + ## Search Specific + + - `SearchRequest`: a type commonly used for searching that takes a query in a body. + - `PaginatedSearchResult`: a type commonly used for a search response that took a query in a body. + - `SimpleSearchResult`: a type used for a search response that takes a query in a body, but does not return a paginated result. + + ## Standards Followed + + - `CurrencyCode`: ISO 4217 compliant currency code. + - `Money`: A combination of a CurrencyCode and a number. + - `LanguageCode`: ISO 639-1 compliant language code. + - `CountryCode`: ISO 3166-1 compliant country code. + - `LocaleCode`: A combination of LanguageCode and CountryCode. + + ## Resource Types + + This project provides the following reusable resource types. These resource types are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. + + - `Organization`: a type that describes the `organizationId` URI parameter that the majority of Commerce Cloud APIs require in the resource path after the `version`. The beginning of all API resource paths is expected to be `/organizations/{organizationId}`. This resource type provides the documentation and validation of the `organizationId`. + + ## Traits + + This project provides the following reusable traits. These traits are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. + + - `Selectable`: adds a query parameter called `select` of type `Select` to the request. + - `SiteSpecific`: adds a query parameter called `siteId` of type `SiteId` to the request. + - `QueryParamsLimit`: adds an offset query parameter without the limit query parameter. Some Commerce Cloud use cases do not currently require both. Prefer the use of `ApiStandards.OffsetPaginated` because this trait will be deprecated in the future if there is no use case for it. + - `QueryParamsOffset`: adds a limit query parameter without the offset query parameter. Some Commerce Cloud use cases do not currently require both. Prefer the use of `ApiStandards.OffsetPaginated` because this trait will be deprecated in the future if there is no use case for it. + +uses: + AdditionalProperties: Types/additional-properties.raml + Search: Types/search-types.raml + Pagination: Types/pagination-types.raml + ISO: Types/ISO-standards.raml + AttributeDefinitions: Types/attribute-definition-types.raml + +securitySchemes: + AmOAuth2: !include SecuritySchemes/am-oauth-2.raml + ShopperToken: !include SecuritySchemes/shopper-token.raml + ShopperTokenTsob: !include SecuritySchemes/shopper-token-tsob.raml + ShopperTokenTaob: !include SecuritySchemes/shopper-token-taob.raml + +types: + SiteId: + description: The identifer of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites + example: + SiteGenesis + type: string + minLength: 1 + Select: + description: The property selector declaring which fields are included into the response payload. You can specify a single field name, a comma-separated list of names or work with wildcards. You can also specify array operations and filter expressions. The actual selector value must be enclosed within parentheses. + example: + (name,id,variationAttributes.(**)) + type: string + minLength: 1 + SearchRequest: Search.SearchRequestBase + PaginatedSearchResult: Search.PaginatedSearchResultBase + SimpleSearchResult: Search.SimpleSearchResultBase + + CurrencyCode: ISO.Currency + Money: ISO.MoneyMnemonic + LanguageCode: ISO.Language + CountryCode: ISO.Country + LocaleCode: ISO.Locale + LocalizedString: ISO.L10nString + + PropertyDefinition: AttributeDefinitions.AttributeDefinition + + ClosedObject: AdditionalProperties.NoPropertiesAllowed + OpenObject: AdditionalProperties.SpecifiedPropertiesAllowed + +resourceTypes: + Organization: + uriParameters: + organizationId: + description: An identifier for the organization the request is being made by. + example: + f_ecom_zzxy_prd + +traits: + QueryParamsLimit: + usage: This trait should not be used unless there is no requirement for QueryParamsOffset. Prefer the usage of ApiStandards.OffsetPaginated. + queryParameters: + limit?: Pagination.Limit + QueryParamsOffset: + usage: This trait should not be used unless there is no requirement for QueryParamsLimit. Prefer the usage of ApiStandards.OffsetPaginated. + queryParameters: + offset?: Pagination.Offset + SiteSpecific: + usage: This trait should be used whenever a resource has the context of a site assoicated with its request. This will add a siteId query parameter + queryParameters: + siteId: SiteId + Selectable: + usage: This trait should be used whenever a resource supports generic property selection. This will add a select query parameter. + queryParameters: + select?: Select \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/example.raml b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/example.raml similarity index 82% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/example.raml rename to apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/example.raml index 8b117905..0a12252c 100644 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/example.raml +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/example.raml @@ -26,8 +26,7 @@ uses: displayName: getFoo description: Example get Method securedBy: - - CommerceCloudStandards.AmOAuth2 - - CommerceCloudStandards.BearerToken + - CommerceCloudStandards.AmOAuth2: { scopes: [example]} is: - CommerceCloudStandards.QueryParamsOffset: @@ -35,6 +34,7 @@ uses: - CommerceCloudStandards.SiteSpecific: objectType: SiteId objectId: SiteGenesis + - CommerceCloudStandards.Selectable responses: 200: description: an example response @@ -46,9 +46,14 @@ uses: description: Another example endpoint get: displayName: getBar - description: Another example get method + description: |- + Another example get method + + ## Scopes + + This endpoint requires that you have access to the following scopes: shopper-example securedBy: - - CommerceCloudStandards.ShopperToken + - CommerceCloudStandards.ShopperToken: { scopes: [shopper-example]} is: - CommerceCloudStandards.SiteSpecific: diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/exchange.json b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/exchange.json new file mode 100644 index 00000000..99686e80 --- /dev/null +++ b/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/exchange.json @@ -0,0 +1,10 @@ +{ + "main": "commerce-cloud-standards.raml", + "name": "Commerce Cloud Standards", + "classifier": "raml-fragment", + "tags": [], + "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "assetId": "commerce-cloud-standards", + "version": "2.0.1", + "organizationId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" +} \ No newline at end of file diff --git a/apis/customer/shopper-context/.metadata.json b/apis/customer/shopper-context/.metadata.json index ea34ea38..1ba8e672 100644 --- a/apis/customer/shopper-context/.metadata.json +++ b/apis/customer/shopper-context/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-context/0.0.28", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-context/0.0.29", "name": "Shopper Context", "description": "The Shopper Context API enables developers to build highly contextualized shopping experiences for shoppers.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-context", - "version": "0.0.28", + "version": "0.0.29", "categories": { "API layer": [ "System" diff --git a/apis/customer/shopper-context/exchange.json b/apis/customer/shopper-context/exchange.json index 8bfb6be6..d80be78f 100644 --- a/apis/customer/shopper-context/exchange.json +++ b/apis/customer/shopper-context/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "0.0.28", + "version": "0.0.29", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/customer/shopper-context/shopper-context.raml b/apis/customer/shopper-context/shopper-context.raml index a397ec92..429eacaa 100644 --- a/apis/customer/shopper-context/shopper-context.raml +++ b/apis/customer/shopper-context/shopper-context.raml @@ -102,11 +102,14 @@ types: type: CommerceCloudStandards.Organization /shopper-context/{usid}: get: - description: Gets the shopper's context based on the shopperJWT. + description: |- + Gets the shopper's context based on the shopperJWT. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: getShopperContext queryParameters: siteId: - description: The identifier of the site to which the request is being sent. With B2C Commerce release 24.5, all new implementations of Shopper Context require the `siteId` query parameter to be passed. Existing customers with Shopper Context implementations should start including `siteId` going forward. Starting July 31 2024, `siteId` will be required for all customers, and a bad request response code will be returned for requests without a `siteId`. + description: The identifier of the site to which the request is being sent. With B2C Commerce release 24.5, all new implementations of Shopper Context require the `siteId` query parameter to be passed. Existing customers with Shopper Context implementations should start including `siteId` going forward. Starting January 2025, `siteId` will be required for all customers, and a bad request response code will be returned for requests without a `siteId`. example: SiteGenesis type: string @@ -147,7 +150,10 @@ types: securedBy: - CommerceCloudStandards.ShopperToken: { scopes: [sfcc.shopper-context, sfcc.shopper-context.rw] } put: - description: Creates the shopper's context based on shopperJWT. + description: |- + Creates the shopper's context based on shopperJWT. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: createShopperContext queryParameters: siteId: @@ -200,7 +206,10 @@ types: securedBy: - CommerceCloudStandards.ShopperToken: { scopes: [sfcc.shopper-context.rw] } delete: - description: Gets the shopper's context based on the shopperJWT. + description: |- + Gets the shopper's context based on the shopperJWT. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: deleteShopperContext queryParameters: siteId: @@ -240,7 +249,10 @@ types: securedBy: - CommerceCloudStandards.ShopperToken: { scopes: [sfcc.shopper-context.rw] } patch: - description: Updates the shopper's context based on the Shopper JWT. If the shopper context exists, it's updated with the patch body. If a `custom qualifier/assignment qualifer` or an `effectiveDateTime` or a `sourceCode` or a `customerGroupIds` is already present in the existing shopper context, its value is replaced by the corresponding value from the patch body. If a `custom qualifers'` or a `assignment qualifiers'` value is set to `null`, it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to an empty string (""), it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to `null`, it's ignored. If an `effectiveDateTime` or `sourceCode` or `custom/assignment qualifiiers'` value is new, it's added to the existing Shopper context. If `customerGroupIds` is set to empty array `[]` the existing value in shopper context is deleted. + description: |- + Updates the shopper's context based on the Shopper JWT. If the shopper context exists, it's updated with the patch body. If a `custom qualifier/assignment qualifer` or an `effectiveDateTime` or a `sourceCode` or a `customerGroupIds` is already present in the existing shopper context, its value is replaced by the corresponding value from the patch body. If a `custom qualifers'` or a `assignment qualifiers'` value is set to `null`, it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to an empty string (""), it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to `null`, it's ignored. If an `effectiveDateTime` or `sourceCode` or `custom/assignment qualifiiers'` value is new, it's added to the existing Shopper context. If `customerGroupIds` is set to empty array `[]` the existing value in shopper context is deleted. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: updateShopperContext queryParameters: siteId: diff --git a/apis/pricing/assignments/.metadata.json b/apis/pricing/assignments/.metadata.json index 85032e8e..d6a658fc 100644 --- a/apis/pricing/assignments/.metadata.json +++ b/apis/pricing/assignments/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/assignments/1.0.25", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/assignments/1.0.26", "name": "Assignments", "description": "Search for promotions associated with campaigns.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "assignments", - "version": "1.0.25", + "version": "1.0.26", "categories": { "API layer": [ "System" diff --git a/apis/pricing/assignments/assignments.raml b/apis/pricing/assignments/assignments.raml index 293b0459..3b059a7a 100644 --- a/apis/pricing/assignments/assignments.raml +++ b/apis/pricing/assignments/assignments.raml @@ -17,7 +17,10 @@ uses: types: Campaign: - description: Document representing a campaign. + description: |- + Document representing a campaign. + type: + CommerceCloudStandards.OpenObject properties: campaignId: description: The ID of the campaign. @@ -70,7 +73,9 @@ types: Promotion: description: |- Document representing a promotion. Unless otherwise stated, attributes of this document are not supported when using - the Open Commerce API to update multiple promotions at once. + the Open Commerce API to update multiple promotions at once. + type: + CommerceCloudStandards.OpenObject properties: archived: description: |- @@ -89,7 +94,7 @@ types: currencyCode: description: |- The ISO 4217 mnemonic code of the currency this promotion is restricted to. If not populated, then there is no - currency restriction on the promotion. + currency restriction on the promotion. maxLength: 3 type: string required: false @@ -145,6 +150,8 @@ types: type: Tag required: false PromotionAbtestGroupAssignment: + type: + CommerceCloudStandards.ClosedObject properties: abtestDescription: type: string @@ -159,6 +166,8 @@ types: segmentId: type: string PromotionAssignmentInformation: + type: + CommerceCloudStandards.ClosedObject properties: abtestId: description: |- @@ -227,7 +236,10 @@ types: items: type: PromotionCampaignAssignment PromotionCampaignAssignment: - description: Document representing a promotion campaign assignment. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a promotion campaign assignment. properties: campaign: description: The campaign. @@ -277,7 +289,10 @@ types: items: type: string Schedule: - description: Document representing a time schedule for slots. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a time schedule for slots. properties: endDate: description: 'The date to end of validity. ISO8601 date time format: yyyy-MM-dd''T''HH:mm:ssZ.' @@ -289,7 +304,10 @@ types: description: 'The date to start validity. ISO8601 date time format: yyyy-MM-dd''T''HH:mm:ssZ.' type: datetime Recurrence: - description: Document representing a schedule recurrence. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a schedule recurrence. properties: dayOfWeek: description: The days of week for recurrence. @@ -308,7 +326,10 @@ types: description: The time of the day for recurrence. type: TimeOfDay TimeOfDay: - description: Document representing a time schedule within a single day. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a time schedule within a single day. properties: timeFrom: description: |- @@ -321,7 +342,10 @@ types: are ignored and set to 0. type: string Tag: - description: Document representing a tag. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a tag. properties: tagId: description: The ID of the tag. diff --git a/apis/pricing/assignments/exchange.json b/apis/pricing/assignments/exchange.json index d567c46d..97de630c 100644 --- a/apis/pricing/assignments/exchange.json +++ b/apis/pricing/assignments/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.25", + "version": "1.0.26", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/campaigns/.metadata.json b/apis/pricing/campaigns/.metadata.json index 5b63e0c1..910d60f8 100644 --- a/apis/pricing/campaigns/.metadata.json +++ b/apis/pricing/campaigns/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/campaigns/1.0.27", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/campaigns/1.0.28", "name": "Campaigns", "description": "Utilize campaign experiences for your customers.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "campaigns", - "version": "1.0.27", + "version": "1.0.28", "categories": { "API layer": [ "System" diff --git a/apis/pricing/campaigns/campaigns.raml b/apis/pricing/campaigns/campaigns.raml index cac250db..89fa50ce 100644 --- a/apis/pricing/campaigns/campaigns.raml +++ b/apis/pricing/campaigns/campaigns.raml @@ -25,7 +25,10 @@ types: description: The sorted array of campaign search hits. Can be empty. type: Campaign[] Campaign: - description: Document representing a campaign. + description: |- + Document representing a campaign. + type: + CommerceCloudStandards.OpenObject properties: campaignId: description: The ID of the campaign. diff --git a/apis/pricing/campaigns/exchange.json b/apis/pricing/campaigns/exchange.json index 6e393ce3..c88f93f9 100644 --- a/apis/pricing/campaigns/exchange.json +++ b/apis/pricing/campaigns/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.27", + "version": "1.0.28", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/coupons/.metadata.json b/apis/pricing/coupons/.metadata.json index cfdcb4b0..4cd68e46 100644 --- a/apis/pricing/coupons/.metadata.json +++ b/apis/pricing/coupons/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/coupons/1.0.27", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/coupons/1.0.28", "name": "Coupons", "description": "Manage coupons for use in your storefront.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "coupons", - "version": "1.0.27", + "version": "1.0.28", "categories": { "API layer": [ "System" diff --git a/apis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml b/apis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml index 93b905f6..b76b8806 100644 --- a/apis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml +++ b/apis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml @@ -2,10 +2,6 @@ value: { "limit": 3, - "expand": - [ - "stats" - ], "offset": 0, "total": 50, "data": [ diff --git a/apis/pricing/coupons/coupons.raml b/apis/pricing/coupons/coupons.raml index 7e75841c..138cd615 100644 --- a/apis/pricing/coupons/coupons.raml +++ b/apis/pricing/coupons/coupons.raml @@ -20,7 +20,10 @@ uses: types: Coupon: - description: Document representing a coupon. + description: |- + Document representing a coupon. + type: + CommerceCloudStandards.ClosedObject properties: couponId: description: The ID of the coupon. @@ -101,7 +104,10 @@ types: - system_codes example: single_code CouponCode: - description: A coupon code with accompanying stats for redemptions and issues. + description: |- + A coupon code with accompanying stats for redemptions and issues. + type: + CommerceCloudStandards.ClosedObject properties: code: description: The code used to redeem the coupon. @@ -117,7 +123,10 @@ types: format: int32 example: 1 CouponCodes: - description: Document representing a set of coupon codes. + description: |- + Document representing a set of coupon codes. + type: + CommerceCloudStandards.ClosedObject properties: limit?: ApiStandards.Limit data: @@ -133,7 +142,10 @@ types: format: int32 example: 50 CouponMultiCodesRequest: - description: A request object to add and remove coupon codes from a document. + description: |- + A request object to add and remove coupon codes from a document. + type: + CommerceCloudStandards.ClosedObject properties: codes: description: The list of coupon codes to add or delete. @@ -142,6 +154,8 @@ types: items: type: string CouponSystemCodeConfig: + type: + CommerceCloudStandards.ClosedObject properties: codePrefix: description: The code prefix for system-generated coupon codes. @@ -153,7 +167,10 @@ types: format: int32 example: 50000 RedemptionLimitPerPeriod: - description: Document representing a coupon redemption limit. + description: |- + Document representing a coupon redemption limit. + type: + CommerceCloudStandards.ClosedObject properties: limit: description: The limit on the number of times a coupon can be redeemed for a specified redemption time period. @@ -169,7 +186,10 @@ types: format: int32 example: 24 RedemptionLimits: - description: Document representing a coupon. + description: |- + Document representing a coupon. + type: + CommerceCloudStandards.ClosedObject properties: limitPerCode: description: The redemption limit per code. @@ -190,7 +210,10 @@ types: redemptionTimeFrame: 24 limit: 1 CouponRedemption: - description: A redemption record returned from the coupon redemption resources. + description: |- + A redemption record returned from the coupon redemption resources. + type: + CommerceCloudStandards.ClosedObject properties: code: description: The coupon code that was redeemed. @@ -225,7 +248,10 @@ types: description: The array of coupon redemption search hits. Can be empty. type: CouponRedemption[] CouponCodeRedemptionRequest: - description: Document representing a request to redeem a coupon. + description: |- + Document representing a request to redeem a coupon. + type: + CommerceCloudStandards.ClosedObject properties: code: description: The coupon code to redeem. diff --git a/apis/pricing/coupons/exchange.json b/apis/pricing/coupons/exchange.json index ee049b7f..ef10aa9c 100644 --- a/apis/pricing/coupons/exchange.json +++ b/apis/pricing/coupons/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.27", + "version": "1.0.28", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/gift-certificates/.metadata.json b/apis/pricing/gift-certificates/.metadata.json index a28b0888..1f0800ec 100644 --- a/apis/pricing/gift-certificates/.metadata.json +++ b/apis/pricing/gift-certificates/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/gift-certificates/1.0.29", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/gift-certificates/1.0.30", "name": "Gift Certificates", "description": "Manage your gift certificates.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "gift-certificates", - "version": "1.0.29", + "version": "1.0.30", "categories": { "API layer": [ "System" diff --git a/apis/pricing/gift-certificates/Examples/get-result-example.raml b/apis/pricing/gift-certificates/Examples/get-result-example.raml index 71aea187..b0838c3c 100644 --- a/apis/pricing/gift-certificates/Examples/get-result-example.raml +++ b/apis/pricing/gift-certificates/Examples/get-result-example.raml @@ -1,38 +1,33 @@ #%RAML 1.0 NamedExample -value: - { - "amount" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "balance" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "creationDate" : "2015-07-31T14:56:38.936Z", - "description" : "Birthday Gift", - "enabled" : true, - "maskedGiftCertificateCode" : "************LKWJ", - "merchantId" : "NorthernTrailOutfitters", - "message" : "A birthday gift for you", - "orderNo" : "CA17293", - "recipientName" : "John Doe", - "recipientEmail" : "john.doe@gmail.com", - "senderName" : "Jane Doe", - "status" : "issued", - "transactions" : - [ - { - "amount" : - { - "currencyMnemonic" : "EUR", - "value" : 80.00 - }, - "orderNo" : "CA17293", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" - } - ] +{ + "amount": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "balance": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "creationDate": "2015-07-31T14:56:38.936Z", + "description": "Birthday Gift", + "enabled": true, + "maskedGiftCertificateCode": "************LKWJ", + "merchantId": "NorthernTrailOutfitters", + "message": "A birthday gift for you", + "orderNo": "CA17293", + "recipientName": "John Doe", + "recipientEmail": "john.doe@gmail.com", + "senderName": "Jane Doe", + "status": "issued", + "transactions": [ + { + "amount": { + "currencyMnemonic": "EUR", + "value": 80.00 + }, + "orderNo": "CA17293", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" + } + ] } \ No newline at end of file diff --git a/apis/pricing/gift-certificates/Examples/get-results-example.raml b/apis/pricing/gift-certificates/Examples/get-results-example.raml index 825a861d..bb2d539f 100644 --- a/apis/pricing/gift-certificates/Examples/get-results-example.raml +++ b/apis/pricing/gift-certificates/Examples/get-results-example.raml @@ -1,119 +1,113 @@ #%RAML 1.0 NamedExample -value: - { - "limit" : 3, - "hits" : - [ +{ + "limit": 3, + "hits": [ { - "amount" : + "amount": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "balance" : + "balance": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "creationDate" : "2015-07-31T15:10:25.192Z", - "description" : "Birthday Gift", - "enabled" : true, - "maskedGiftCertificateCode" : "************HHHZ", - "merchantId" : "NorthernTrailOutfitters", - "orderNo" : "CA17293", - "status" : "pending", - "transactions" : - [ + "creationDate": "2015-07-31T15:10:25.192Z", + "description": "Birthday Gift", + "enabled": true, + "maskedGiftCertificateCode": "************HHHZ", + "merchantId": "NorthernTrailOutfitters", + "orderNo": "CA17293", + "status": "pending", + "transactions": [ { - "amount" : + "amount": { - "currencyMnemonic" : "EUR", - "value" : 80.00 + "currencyMnemonic": "EUR", + "value": 80.00 }, - "orderNo" : "CA17293", - "timestamp" : "2015-01-09T17:16:12.066Z", - "typeCode" : "create" + "orderNo": "CA17293", + "timestamp": "2015-01-09T17:16:12.066Z", + "typeCode": "create" } ] }, - { - "amount" : + "amount": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "balance" : + "balance": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "creationDate" : "2015-07-31T15:03:21.988Z", - "enabled" : true, - "maskedGiftCertificateCode" : "************DOIZ", - "merchantId" : "my-merchant_id", - "orderNo" : "00000002", - "status" : "pending", - "transactions" : + "creationDate": "2015-07-31T15:03:21.988Z", + "enabled": true, + "maskedGiftCertificateCode": "************DOIZ", + "merchantId": "my-merchant_id", + "orderNo": "00000002", + "status": "pending", + "transactions": [ { - "amount" : + "amount": { - "currencyMnemonic" : "EUR", - "value" : 80.00 + "currencyMnemonic": "EUR", + "value": 80.00 }, - "orderNo" : "00000002", - "timestamp" : "2015-02-09T17:16:12.066Z", - "typeCode" : "create" + "orderNo": "00000002", + "timestamp": "2015-02-09T17:16:12.066Z", + "typeCode": "create" } ] }, - { - "amount" : + "amount": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "balance" : + "balance": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "creationDate" : "2015-07-31T15:10:00.659Z", - "description" : "Promotion Gift", - "enabled" : true, - "maskedGiftCertificateCode" : "************GSPZ", - "merchantId" : "NorthernTrailOutfitters", - "orderNo" : "00000003", - "status" : "pending", - "transactions" : + "creationDate": "2015-07-31T15:10:00.659Z", + "description": "Promotion Gift", + "enabled": true, + "maskedGiftCertificateCode": "************GSPZ", + "merchantId": "NorthernTrailOutfitters", + "orderNo": "00000003", + "status": "pending", + "transactions": [ { - "amount" : + "amount": { - "currencyMnemonic" : "EUR", - "value" : 80.00 + "currencyMnemonic": "EUR", + "value": 80.00 }, - "orderNo" : "00000003", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" + "orderNo": "00000003", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" } ] } ], - "query" : - { - "TextQuery" : + "query": { + "TextQuery": { - "fields" : + "fields": [ "status" ], - "searchPhrase" : "pending" + "searchPhrase": "pending" } }, - "select" : "(**)", - "offset" : 0, - "total" : 3 + "select": "(**)", + "offset": 0, + "total": 3 } diff --git a/apis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml b/apis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml index 1d134823..40359705 100644 --- a/apis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml +++ b/apis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml @@ -1,38 +1,33 @@ #%RAML 1.0 NamedExample -value: - { - "amount" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "balance" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "creationDate" : "2015-07-31T14:36:17.544Z", - "description" : "Birthday gift", - "enabled" : false, - "maskedGiftCertificateCode" : "************KTIP", - "merchantId" : "NorthernTrailOutfitters", - "message" : "A birthday gift for you", - "orderNo" : "CA17293", - "recipientName" : "John Doe", - "recipientEmail" : "john.doe@gmail.com", - "senderName" : "Jane Doe", - "status" : "issued", - "transactions" : - [ - { - "amount" : - { - "currencyMnemonic" : "EUR", - "value" : 80.00 - }, - "orderNo" : "my-order_no", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" - } - ] +{ + "amount": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "balance": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "creationDate": "2015-07-31T14:36:17.544Z", + "description": "Birthday gift", + "enabled": false, + "maskedGiftCertificateCode": "************KTIP", + "merchantId": "NorthernTrailOutfitters", + "message": "A birthday gift for you", + "orderNo": "CA17293", + "recipientName": "John Doe", + "recipientEmail": "john.doe@gmail.com", + "senderName": "Jane Doe", + "status": "issued", + "transactions": [ + { + "amount": { + "currencyMnemonic": "EUR", + "value": 80.00 + }, + "orderNo": "my-order_no", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" + } + ] } \ No newline at end of file diff --git a/apis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml b/apis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml index a5d268fe..2ce8e821 100644 --- a/apis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml +++ b/apis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml @@ -1,9 +1,8 @@ #%RAML 1.0 NamedExample -value: - { - "description" : "Birthday Gift", - "enabled" :false, - "message" : "A birthday gift for you", +{ + "description": "Birthday Gift", + "enabled": false, + "message": "A birthday gift for you", "recipientEmail": "john.doe@gmail.com", "recipientName": "John Doe", "senderName": "Jane Doe", diff --git a/apis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml b/apis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml index 2fa7654d..373433c6 100644 --- a/apis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml +++ b/apis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml @@ -1,38 +1,33 @@ #%RAML 1.0 NamedExample -value: - { - "amount" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "balance" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "creationDate" : "2015-07-31T15:05:52.311Z", - "description" : "Birthday Gift", - "enabled" : false, - "maskedGiftCertificateCode" : "***********cate", - "merchantId" : "NorthernTrailOutfitters", - "message" : "A birthday gift for you", - "orderNo" : "CA17293", - "recipientEmail" : "john.doe@gmail.com", - "recipientName" : "John Doe", - "senderName" : "Jane Doe", - "status" : "pending", - "transactions" : - [ - { - "amount" : - { - "currencyMnemonic" : "EUR", - "value" : 80.00 - }, - "orderNo" : "CA17293", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" - } - ] +{ + "amount": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "balance": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "creationDate": "2015-07-31T15:05:52.311Z", + "description": "Birthday Gift", + "enabled": false, + "maskedGiftCertificateCode": "***********cate", + "merchantId": "NorthernTrailOutfitters", + "message": "A birthday gift for you", + "orderNo": "CA17293", + "recipientEmail": "john.doe@gmail.com", + "recipientName": "John Doe", + "senderName": "Jane Doe", + "status": "pending", + "transactions": [ + { + "amount": { + "currencyMnemonic": "EUR", + "value": 80.00 + }, + "orderNo": "CA17293", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" + } + ] } \ No newline at end of file diff --git a/apis/pricing/gift-certificates/Examples/query-match-all-query-example.raml b/apis/pricing/gift-certificates/Examples/query-match-all-query-example.raml deleted file mode 100644 index 94f4888e..00000000 --- a/apis/pricing/gift-certificates/Examples/query-match-all-query-example.raml +++ /dev/null @@ -1,7 +0,0 @@ -#%RAML 1.0 NamedExample -value: - { - "query" : { - "MatchAllQuery": {} - } - } \ No newline at end of file diff --git a/apis/pricing/gift-certificates/exchange.json b/apis/pricing/gift-certificates/exchange.json index e34d1de2..23e14b9a 100644 --- a/apis/pricing/gift-certificates/exchange.json +++ b/apis/pricing/gift-certificates/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.29", + "version": "1.0.30", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/gift-certificates/gift-certificates.raml b/apis/pricing/gift-certificates/gift-certificates.raml index 9e0a01ff..2447b15d 100644 --- a/apis/pricing/gift-certificates/gift-certificates.raml +++ b/apis/pricing/gift-certificates/gift-certificates.raml @@ -15,7 +15,10 @@ uses: GiftCertificateTraits: gift-certificate-traits-library.raml types: AccountTransaction: - description: Document representing an account transaction. + description: |- + Document representing an account transaction. + type: + CommerceCloudStandards.ClosedObject properties: amount: description: The amount of the gift certificate. @@ -40,7 +43,10 @@ types: - disable example: redeem GiftCertificate: - description: Document representing a gift certificate. + description: |- + Document representing a gift certificate. + type: + CommerceCloudStandards.OpenObject properties: amount: description: |- @@ -158,7 +164,10 @@ types: } ] GiftCertificates: - description: Document representing an unfiltered list of gift certificates. + description: |- + Document representing an unfiltered list of gift certificates. + type: + CommerceCloudStandards.ClosedObject properties: offset: ApiStandards.Offset data: @@ -176,12 +185,15 @@ types: required: false example: 25 GiftCertificateSearchResult: - description: Document representing a gift certificate search result. + description: |- + Document representing a gift certificate search result. type: CommerceCloudStandards.PaginatedSearchResult properties: hits: type: GiftCertificate[] Money: + type: + CommerceCloudStandards.ClosedObject properties: currencyMnemonic: description: The mnemonic for the money. @@ -215,7 +227,7 @@ types: application/json: type: GiftCertificate example: - gift_certificate: !include Examples/gift-certificate-create-success-example.raml + !include Examples/gift-certificate-create-success-example.raml '400': description: If the gift certificate passed in is not valid (the argument indicates the field that was invalid), the amount specified is out of range, the merchant ID is not unique, the recipient email address is invalid, or the gift certificate status specified is invalid. body: @@ -260,8 +272,8 @@ types: body: application/json: type: GiftCertificateSearchResult - examples: - giftCertificates: !include Examples/get-results-example.raml + example: + !include Examples/get-results-example.raml '400': description: Thrown if the query is ill-formed. body: @@ -300,8 +312,8 @@ types: body: application/json: type: GiftCertificate - examples: - giftCertificate: !include Examples/get-result-example.raml + example: + !include Examples/get-result-example.raml '404': description: Thrown in case the gift certificate does not exist matching the given merchant ID. securedBy: @@ -320,7 +332,7 @@ types: application/json: type: GiftCertificate example: - gift_certificate: !include Examples/gift-certificate-update-success-example.raml + !include Examples/gift-certificate-update-success-example.raml '400': description: If recipient email address or gift certificate status specified is invalid. '404': @@ -329,6 +341,6 @@ types: application/json: type: GiftCertificate example: - patchGiftCertificate: !include Examples/gift-certificate-update-example.raml + !include Examples/gift-certificate-update-example.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.gift-certificates.rw ] } \ No newline at end of file diff --git a/apis/pricing/promotions/.metadata.json b/apis/pricing/promotions/.metadata.json index 45424269..625845cf 100644 --- a/apis/pricing/promotions/.metadata.json +++ b/apis/pricing/promotions/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/promotions/1.0.23", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/promotions/1.0.24", "name": "Promotions", "description": "Launch and manage promotions across your storefront.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "promotions", - "version": "1.0.23", + "version": "1.0.24", "categories": { "API layer": [ "System" diff --git a/apis/pricing/promotions/Examples/get-promotion-response.raml b/apis/pricing/promotions/Examples/get-promotion-response.raml index e442a74c..15fd7e12 100644 --- a/apis/pricing/promotions/Examples/get-promotion-response.raml +++ b/apis/pricing/promotions/Examples/get-promotion-response.raml @@ -3,18 +3,37 @@ get-promotion-example: { "archived": false, "assignmentInformation": { - "active": false, + "active": true, + "activeCampaignAssignments": [ + { + "campaignId": "coupon-campaign", + "coupons": [ + "shipping-promotion-coupon" + ], + "description": "Coupon Shipping Promotion", + "enabled": true, + "promotionId": "my-shipping-promotion", + "schedule": { + + } + } + ], + "campaignId": "coupon-campaign", "enabled": true, + "schedule": { + + }, "scheduleType": "none" }, "creationDate": "2020-01-09T16:50:32.000Z", "disableGloballyExcluded": false, "enabled": true, - "exclusivity": "class", - "id": "my-promotion", + "exclusivity": "no", + "id": "my-shipping-promotion", "lastModified": "2020-01-09T16:50:32.000Z", "name": { - "default": "__PROMOTION_ID__" + "default": "Coupon Shipping Promotion" }, - "promotionClass": "order" + "promotionClass": "shipping", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/apis/pricing/promotions/Examples/patch-promotion-request.raml b/apis/pricing/promotions/Examples/patch-promotion-request.raml index b7609823..93f774f7 100644 --- a/apis/pricing/promotions/Examples/patch-promotion-request.raml +++ b/apis/pricing/promotions/Examples/patch-promotion-request.raml @@ -6,5 +6,6 @@ patch-promotion-request: "default" : "__PROMOTION_ID__" }, "exclusivity" : "class", - "promotionClass" : "order" + "promotionClass" : "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/apis/pricing/promotions/Examples/patch-promotion-response.raml b/apis/pricing/promotions/Examples/patch-promotion-response.raml index 9708f71c..a44f692a 100644 --- a/apis/pricing/promotions/Examples/patch-promotion-response.raml +++ b/apis/pricing/promotions/Examples/patch-promotion-response.raml @@ -4,7 +4,14 @@ patch-promotion-response: "archived": false, "assignmentInformation": { "active": false, + "activeCampaignAssignments": [ + + ], + "campaignId": "coupon-campaign", "enabled": false, + "schedule": { + + }, "scheduleType": "none" }, "creationDate": "2020-01-13T20:22:09.189Z", @@ -16,5 +23,6 @@ patch-promotion-response: "name": { "default": "__PROMOTION_ID__" }, - "promotionClass": "order" + "promotionClass": "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/apis/pricing/promotions/Examples/put-promotion-request.raml b/apis/pricing/promotions/Examples/put-promotion-request.raml index 66e1583a..872ccbc1 100644 --- a/apis/pricing/promotions/Examples/put-promotion-request.raml +++ b/apis/pricing/promotions/Examples/put-promotion-request.raml @@ -6,5 +6,6 @@ put-promotion-request: "default" : "__PROMOTION_ID__" }, "exclusivity" : "class", - "promotionClass" : "order" + "promotionClass" : "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/apis/pricing/promotions/Examples/put-promotion-response.raml b/apis/pricing/promotions/Examples/put-promotion-response.raml index 81ef12fe..85d323fc 100644 --- a/apis/pricing/promotions/Examples/put-promotion-response.raml +++ b/apis/pricing/promotions/Examples/put-promotion-response.raml @@ -4,7 +4,14 @@ put-promotion-response: "archived": false, "assignmentInformation": { "active": false, + "activeCampaignAssignments": [ + + ], + "campaignId": "coupon-campaign", "enabled": true, + "schedule": { + + }, "scheduleType": "none" }, "creationDate": "2020-01-13T20:22:09.189Z", @@ -16,5 +23,6 @@ put-promotion-response: "name": { "default": "__PROMOTION_ID__" }, - "promotionClass": "order" + "promotionClass": "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/apis/pricing/promotions/exchange.json b/apis/pricing/promotions/exchange.json index 10bcfcff..495490b2 100644 --- a/apis/pricing/promotions/exchange.json +++ b/apis/pricing/promotions/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.23", + "version": "1.0.24", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/promotions/promotions.raml b/apis/pricing/promotions/promotions.raml index 2db8fa33..44217eaf 100644 --- a/apis/pricing/promotions/promotions.raml +++ b/apis/pricing/promotions/promotions.raml @@ -18,7 +18,10 @@ uses: types: Campaign: - description: Document representing a campaign. + description: |- + Document representing a campaign. + type: + CommerceCloudStandards.OpenObject properties: campaignId: description: The ID of the campaign. @@ -71,7 +74,9 @@ types: Promotion: description: |- Document representing a promotion. Unless otherwise stated, attributes of this document are not supported when using - the Open Commerce API to update multiple promotions at once. + the Open Commerce API to update multiple promotions at once. + type: + CommerceCloudStandards.OpenObject properties: archived: description: |- @@ -150,6 +155,8 @@ types: required: false siteId?: CommerceCloudStandards.SiteId PromotionAbtestGroupAssignment: + type: + CommerceCloudStandards.ClosedObject properties: abtestDescription: type: string @@ -164,11 +171,13 @@ types: segmentId: type: string PromotionAssignmentInformation: + type: + CommerceCloudStandards.ClosedObject properties: abtestId: description: |- If there is only one assignment, and that assignment is an A/B test segment, the ID of the A/B test the segment - belongs to. Otherwise, empty. + belongs to. Otherwise, empty. type: string required: false abtestSegmentId: @@ -239,7 +248,10 @@ types: type: PromotionCampaignAssignment required: false PromotionCampaignAssignment: - description: Document representing a promotion campaign assignment. + description: |- + Document representing a promotion campaign assignment. + type: + CommerceCloudStandards.ClosedObject properties: campaign: description: The campaign. @@ -293,14 +305,18 @@ types: type: string required: false PromotionSearchResult: - description: Document representing a promotion search result. + description: |- + Document representing a promotion search result. type: CommerceCloudStandards.PaginatedSearchResult properties: hits: description: The sorted array of promotion search hits. Can be empty. type: Promotion[] Recurrence: - description: Document representing a schedule recurrence. + description: |- + Document representing a schedule recurrence. + type: + CommerceCloudStandards.ClosedObject properties: dayOfWeek: description: The days of week for recurrence. @@ -319,7 +335,10 @@ types: description: The time of the day for recurrence. type: TimeOfDay Schedule: - description: Document representing a time schedule for slots. + description: |- + Document representing a time schedule for slots. + type: + CommerceCloudStandards.ClosedObject properties: endDate: description: 'The date to end of validity. ISO8601 date time format: yyyy-MM-dd''T''HH:mm:ssZ.' @@ -334,13 +353,19 @@ types: type: datetime required: false Tag: - description: Document representing a tag + description: |- + Document representing a tag + type: + CommerceCloudStandards.ClosedObject properties: tagId: description: The ID of the tag. type: string TimeOfDay: - description: Document representing a time schedule within a single day. + description: |- + Document representing a time schedule within a single day. + type: + CommerceCloudStandards.ClosedObject properties: timeFrom: description: |- @@ -425,7 +450,7 @@ types: application/json: type: Promotion examples: - promotionGetResponse: !include Examples/get-promotion-response.raml + !include Examples/get-promotion-response.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.promotions, sfcc.promotions.rw ] } patch: @@ -443,12 +468,12 @@ types: application/json: type: Promotion examples: - promotionPatchResponse: !include Examples/patch-promotion-response.raml + !include Examples/patch-promotion-response.raml body: application/json: type: Promotion examples: - promotionPatchRequest: !include Examples/patch-promotion-request.raml + !include Examples/patch-promotion-request.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.promotions.rw ] } put: @@ -463,11 +488,11 @@ types: application/json: type: Promotion examples: - promotionPutResponse: !include Examples/put-promotion-response.raml + !include Examples/put-promotion-response.raml body: application/json: type: Promotion examples: - promotionPutRequest: !include Examples/put-promotion-request.raml + !include Examples/put-promotion-request.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.promotions.rw ] } \ No newline at end of file diff --git a/apis/pricing/shopper-gift-certificates/.metadata.json b/apis/pricing/shopper-gift-certificates/.metadata.json index 48185dbd..333e8479 100644 --- a/apis/pricing/shopper-gift-certificates/.metadata.json +++ b/apis/pricing/shopper-gift-certificates/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-gift-certificates/1.0.16", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-gift-certificates/1.0.17", "name": "Shopper Gift Certificates", "description": "Obtain details about a gift certificate.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-gift-certificates", - "version": "1.0.16", + "version": "1.0.17", "categories": { "API layer": [ "System" diff --git a/apis/pricing/shopper-gift-certificates/exchange.json b/apis/pricing/shopper-gift-certificates/exchange.json index 7ac952da..2fd857a0 100644 --- a/apis/pricing/shopper-gift-certificates/exchange.json +++ b/apis/pricing/shopper-gift-certificates/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.16", + "version": "1.0.17", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml b/apis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml index 801a8375..05ee900f 100644 --- a/apis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml +++ b/apis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml @@ -18,7 +18,10 @@ uses: CommerceCloudStandards: exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml types: GiftCertificate: - description: Document representing a gift certificate. + description: |- + Document representing a gift certificate. + type: + CommerceCloudStandards.OpenObject examples: gift-certificate: !include Examples/gift-certificate-example.raml properties: @@ -63,7 +66,10 @@ types: - partially_redeemed - redeemed GiftCertificateRequest: - description: Document representing a gift certificate request data. + description: |- + Document representing a gift certificate request data. + type: + CommerceCloudStandards.ClosedObject properties: giftCertificateCode: description: The gift certificate code. diff --git a/apis/pricing/shopper-promotions/.metadata.json b/apis/pricing/shopper-promotions/.metadata.json index 8efd5ba7..10510223 100644 --- a/apis/pricing/shopper-promotions/.metadata.json +++ b/apis/pricing/shopper-promotions/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-promotions/1.0.26", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-promotions/1.0.27", "name": "Shopper Promotions", "description": "View details for active promotions.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-promotions", - "version": "1.0.26", + "version": "1.0.27", "categories": { "API layer": [ "System" diff --git a/apis/pricing/shopper-promotions/exchange.json b/apis/pricing/shopper-promotions/exchange.json index 8d6fbe06..7fecf183 100644 --- a/apis/pricing/shopper-promotions/exchange.json +++ b/apis/pricing/shopper-promotions/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.26", + "version": "1.0.27", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/shopper-promotions/shopper-promotions.raml b/apis/pricing/shopper-promotions/shopper-promotions.raml index 1f47e1ca..f2b9bc94 100644 --- a/apis/pricing/shopper-promotions/shopper-promotions.raml +++ b/apis/pricing/shopper-promotions/shopper-promotions.raml @@ -17,7 +17,10 @@ uses: types: Promotion: - description: Document representing a promotion. + description: |- + Document representing a promotion. + type: + CommerceCloudStandards.OpenObject properties: calloutMsg: description: The localized call-out message of the promotion. @@ -64,7 +67,10 @@ types: required: false example: 2015-07-04T21:00:00Z PromotionResult: - description: Result document containing an array of promotions. + description: |- + Result document containing an array of promotions. + type: + CommerceCloudStandards.ClosedObject examples: promotion: !include Examples/promotions_result.raml properties: diff --git a/apis/pricing/source-code-groups/.metadata.json b/apis/pricing/source-code-groups/.metadata.json index 6ca47f6d..d8becdf4 100644 --- a/apis/pricing/source-code-groups/.metadata.json +++ b/apis/pricing/source-code-groups/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/source-code-groups/1.0.27", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/source-code-groups/1.0.28", "name": "Source Code Groups", "description": "Create, update, delete, and search for source code groups.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "source-code-groups", - "version": "1.0.27", + "version": "1.0.28", "categories": { "API layer": [ "System" diff --git a/apis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml b/apis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml index 19df308b..2a343a49 100644 --- a/apis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml +++ b/apis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml @@ -1,20 +1,19 @@ #%RAML 1.0 NamedExample -value: - { - "active": false, - "activeRedirect": { - "location": "urlString", - "locationType": "url" - }, - "creationDate": "2019-11-25T15:24:25.317Z", - "description": "description for source code group test2", - "enabled": false, - "endTime": "2030-10-01T00:00:00.000Z", - "id": "20% off (£30) New Customer", - "inactiveRedirect": { - "location": "urlString", - "locationType": "url" - }, - "lastModified": "2019-11-25T15:28:55.175Z", - "startTime": "2014-10-01T00:00:00.000Z" - } \ No newline at end of file +{ + "active": false, + "activeRedirect": { + "location": "urlString", + "locationType": "url" + }, + "creationDate": "2019-11-25T15:24:25.317Z", + "description": "description for source code group test2", + "enabled": false, + "endTime": "2030-10-01T00:00:00.000Z", + "id": "20% off (£30) New Customer", + "inactiveRedirect": { + "location": "urlString", + "locationType": "url" + }, + "lastModified": "2019-11-25T15:28:55.175Z", + "startTime": "2014-10-01T00:00:00.000Z" +} \ No newline at end of file diff --git a/apis/pricing/source-code-groups/Examples/put_source_code_group_id.raml b/apis/pricing/source-code-groups/Examples/put_source_code_group_id.raml index d7114fe4..14fb1383 100644 --- a/apis/pricing/source-code-groups/Examples/put_source_code_group_id.raml +++ b/apis/pricing/source-code-groups/Examples/put_source_code_group_id.raml @@ -1,23 +1,19 @@ #%RAML 1.0 NamedExample -value: - { - "active": false, - "active_redirect": { - "_type": "source_code_redirect_info", - "location": "https://production-functional23-qa.demandware.net/s/-/dw/data/v18_7/sites/SiteGenesis/source_code_groups/20%25%20off%20%28%C2%A330%29%20New%20Customer", - "location_type": "url" - }, - "creation_date": "2019-11-25T15:24:25.317Z", - "description": "description for source code group test", - "enabled": false, - "end_time": "2030-10-01T00:00:00.000Z", - "id": "20% off (£30) New Customer", - "inactive_redirect": { - "_type": "source_code_redirect_info", - "location": "https://production-functional23-qa.demandware.net/on/demandware.store/Sites-Site/default/ViewApplication-DisplayWelcomePage", - "location_type": "url" - }, - "last_modified": "2019-11-25T15:24:25.320Z", - "link": "https://production-functional23-qa.demandware.net/s/-/dw/data/v18_7/sites/SiteGenesis/source_code_groups/20%25%20off%20%28%C2%A330%29%20New%20Customer", - "start_time": "2014-10-01T00:00:00.000Z" - } \ No newline at end of file +{ + "active": false, + "activeRedirect": { + "location": "urlString", + "locationType": "url" + }, + "creationDate": "2019-11-25T15:24:25.317Z", + "description": "description for source code group test", + "enabled": false, + "endTime": "2030-10-01T00:00:00.000Z", + "id": "20% off (£30) New Customer", + "inactiveRedirect": { + "location": "urlString", + "locationType": "url" + }, + "lastModified": "2019-11-25T15:24:25.320Z", + "startTime": "2014-10-01T00:00:00.000Z" +} \ No newline at end of file diff --git a/apis/pricing/source-code-groups/Examples/source-code-result-example.raml b/apis/pricing/source-code-groups/Examples/source-code-result-example.raml index f4917b1f..2280f809 100644 --- a/apis/pricing/source-code-groups/Examples/source-code-result-example.raml +++ b/apis/pricing/source-code-groups/Examples/source-code-result-example.raml @@ -1,35 +1,34 @@ #%RAML 1.0 NamedExample -value: - { - "limit": 1, - "hits": [ - { - "active": false, - "activeRedirect": { - "location": "nintendo-wii-console", - "locationType": "product" - }, - "creationDate": "2020-01-06T15:30:26.000Z", - "description": "Email promoting save 20% of WII game when buying system", - "enabled": true, - "endTime": "2009-12-20T00:00:00.000Z", - "id": "gaming-email", - "inactiveRedirect": { - "location": "inactive-source-code", - "locationType": "page" - }, - "lastModified": "2020-01-06T15:30:26.000Z", - "startTime": "2009-11-01T00:00:00.000Z" - } - ], - "query": { - "TextQuery": { - "fields": [ - "id" - ], - "searchPhrase": "gaming" - } - }, - "offset": 0, - "total": 1 - } \ No newline at end of file +{ + "limit": 1, + "hits": [ + { + "active": false, + "activeRedirect": { + "location": "nintendo-wii-console", + "locationType": "product" + }, + "creationDate": "2020-01-06T15:30:26.000Z", + "description": "Email promoting save 20% of WII game when buying system", + "enabled": true, + "endTime": "2009-12-20T00:00:00.000Z", + "id": "gaming-email", + "inactiveRedirect": { + "location": "inactive-source-code", + "locationType": "page" + }, + "lastModified": "2020-01-06T15:30:26.000Z", + "startTime": "2009-11-01T00:00:00.000Z" + } + ], + "query": { + "TextQuery": { + "fields": [ + "id" + ], + "searchPhrase": "gaming" + } + }, + "offset": 0, + "total": 1 +} \ No newline at end of file diff --git a/apis/pricing/source-code-groups/exchange.json b/apis/pricing/source-code-groups/exchange.json index 8e6bda0a..2775c342 100644 --- a/apis/pricing/source-code-groups/exchange.json +++ b/apis/pricing/source-code-groups/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.27", + "version": "1.0.28", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/apis/pricing/source-code-groups/source-code-groups.raml b/apis/pricing/source-code-groups/source-code-groups.raml index 89e70344..b5667495 100644 --- a/apis/pricing/source-code-groups/source-code-groups.raml +++ b/apis/pricing/source-code-groups/source-code-groups.raml @@ -18,7 +18,10 @@ uses: types: SourceCodeGroup: - description: Document representing a source code group. + description: |- + Document representing a source code group. + type: + CommerceCloudStandards.OpenObject properties: active: description: The active flag, a computed value based on start and end time. @@ -85,17 +88,22 @@ types: required: false example: 2019-10-20T12:00:00Z SourceCodeGroupSearchResult: - description: Document representing a source code group search result. + description: |- + Document representing a source code group search result. type: CommerceCloudStandards.PaginatedSearchResult properties: hits: description: The sorted array of search hits. Can be empty. type: SourceCodeGroup[] SourceCodeRedirectInfo: - description: Document representing source code redirect info. + description: |- + Document representing source code redirect info. + type: + CommerceCloudStandards.ClosedObject properties: locationType: - description: The type of redirect location, such as product (for a product page), category (a category page), home (for home page), page (for content), or URL (for a URL location). + description: |- + The type of redirect location, such as product (for a product page), category (a category page), home (for home page), page (for content), or URL (for a URL location). type: string enum: - default @@ -105,8 +113,15 @@ types: - page - url example: url + location?: + description: |- + The location of redirect, based on the type, this can be a product location, category location, home page, content page, or just a URL. + type: string SourceCodeSpecification: - description: Document representing a source code specification. + description: |- + Document representing a source code specification. + type: + CommerceCloudStandards.ClosedObject properties: expression: description: |- @@ -236,8 +251,7 @@ types: body: application/json: type: SourceCodeGroupSearchResult - examples: - source-code-group-result: !include Examples/source-code-result-example.raml + example: !include Examples/source-code-result-example.raml '400': description: SearchRequest post body is ill-formed. body: diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3afa94af..10a236e3 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,14 +1,49 @@ ## CHANGELOG -### :warning: Planned future release will contain breaking changes :warning - -Due to an issue with the generation of the type definitions, an upcoming release -of the SDK will change type definitions to include namespaces. As this is a -breaking change, a new major version will be released (v4.0.0). Only the names of -the types will change, not their contents or any of the exported code. If you -only use JavaScript, or if you use TypeScript but only import the client classes, -then your usage **will not change**. You will likely only need to make changes if -you import the type definitions directly. +## v4.0.0 + +### :warning: Planned API Changes :warning: + +#### Shopper Context + +Starting July 31st 2024, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. You can read more about the planned change [here](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-context?meta=Summary) in the notes section. + +#### Shopper Login (SLAS) + +SLAS will soon require new tenants to pass `channel_id` as an argument for retrieving guest access tokens. You can read more about the planned change [here](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas.html#guest-tokens). + +Please be aware that existing tenants are on a temporary allow list and will see no immediate disruption to service. We do ask that all users seek to adhere to the `channel_id` requirement before the end of August to enhance your security posture before the holiday peak season. + +In practice, we recommend that customers using the SLAS helper functions upgrade to `v4.0.0` of the `commerce-sdk`. + +### Enchancements + +- Update SLAS helper function `loginGuestUserPrivate` to require `channel_id` and `loginGuestUser` to pass in `channel_id` to SLAS through `clientConfig.parameters.siteId` [#406](https://github.com/SalesforceCommerceCloud/commerce-sdk/pull/406) + +### API Changes + +*CDN Zones API* + +* Endpoints added + | **Endpoint Name** | **Description** | + | ------------- |-----------------------------------| + | getOwaspWafPackage | Get a OWASP ModSecurity Core Rule Set. | + | patchOwaspWafPackage | Patch a OWASP ModSecurity Core Rule Set. | + | getWafManagedRulesInRuleset | Retrieves all rules in the specified WAFv2 managed ruleset. | + | updateWafManagedRuleInRuleset | Updates a WAF managed rule in the specified WAFv2 managed ruleset. | + | migrateZoneToWafV2 | Migrates a zone to WAFv2. Only applicable for existing zones using WAFv1. | + | upsertOriginHeaderModification | Upsert origin header modification. | + | getOriginHeaderModification | Get origin header modification associated with a zone. | + | deleteOriginHeaderModification | Delete the origin header modification associated with a zone. | + +* **BREAKING**: Removed deprecated endpoints + * getFirewallRules + * createFirewallRule + * getFirewallRule + * updateFirewallRule + * deleteFirewallRule + + NOTE: As of February 6th, 2024, firewall rules are deprecated and customers can use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. ## v3.1.0 diff --git a/docs/assets/js/search.json b/docs/assets/js/search.json index e504ee5a..1f008450 100644 --- a/docs/assets/js/search.json +++ b/docs/assets/js/search.json @@ -1 +1 @@ -{"kinds":{"1":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","2097152":"Object literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"cdn","url":"modules/cdn.html","classes":"tsd-kind-module"},{"id":1,"kind":128,"name":"CdnZones","url":"classes/cdn.cdnzones.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"cdn"},{"id":2,"kind":512,"name":"constructor","url":"classes/cdn.cdnzones.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"cdn.CdnZones"},{"id":3,"kind":2048,"name":"createStorefrontZone","url":"classes/cdn.cdnzones.html#createstorefrontzone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":4,"kind":2048,"name":"getZonesInfo","url":"classes/cdn.cdnzones.html#getzonesinfo","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":5,"kind":2048,"name":"getWafGroups","url":"classes/cdn.cdnzones.html#getwafgroups","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":6,"kind":2048,"name":"updateWafGroup","url":"classes/cdn.cdnzones.html#updatewafgroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":7,"kind":2048,"name":"getWafRules","url":"classes/cdn.cdnzones.html#getwafrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":8,"kind":2048,"name":"getWafRule","url":"classes/cdn.cdnzones.html#getwafrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":9,"kind":2048,"name":"updateWafRule","url":"classes/cdn.cdnzones.html#updatewafrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":10,"kind":2048,"name":"getFirewallRules","url":"classes/cdn.cdnzones.html#getfirewallrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":11,"kind":2048,"name":"createFirewallRule","url":"classes/cdn.cdnzones.html#createfirewallrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":12,"kind":2048,"name":"getFirewallRule","url":"classes/cdn.cdnzones.html#getfirewallrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":13,"kind":2048,"name":"updateFirewallRule","url":"classes/cdn.cdnzones.html#updatefirewallrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":14,"kind":2048,"name":"deleteFirewallRule","url":"classes/cdn.cdnzones.html#deletefirewallrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":15,"kind":2048,"name":"getSpeedSettings","url":"classes/cdn.cdnzones.html#getspeedsettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":16,"kind":2048,"name":"updateSpeedSettings","url":"classes/cdn.cdnzones.html#updatespeedsettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":17,"kind":2048,"name":"getSecuritySettings","url":"classes/cdn.cdnzones.html#getsecuritysettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":18,"kind":2048,"name":"updateSecuritySettings","url":"classes/cdn.cdnzones.html#updatesecuritysettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":19,"kind":2048,"name":"cachePurge","url":"classes/cdn.cdnzones.html#cachepurge","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":20,"kind":2048,"name":"toggleOcapiCachingPageRule","url":"classes/cdn.cdnzones.html#toggleocapicachingpagerule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":21,"kind":2048,"name":"getCertificates","url":"classes/cdn.cdnzones.html#getcertificates","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":22,"kind":2048,"name":"addCertificateForZone","url":"classes/cdn.cdnzones.html#addcertificateforzone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":23,"kind":2048,"name":"deleteCertificate","url":"classes/cdn.cdnzones.html#deletecertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":24,"kind":2048,"name":"updateCertificate","url":"classes/cdn.cdnzones.html#updatecertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":25,"kind":2048,"name":"validateCustomHostname","url":"classes/cdn.cdnzones.html#validatecustomhostname","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":26,"kind":2048,"name":"createMrtRules","url":"classes/cdn.cdnzones.html#createmrtrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":27,"kind":2048,"name":"updateMrtRuleset","url":"classes/cdn.cdnzones.html#updatemrtruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":28,"kind":2048,"name":"getMrtRules","url":"classes/cdn.cdnzones.html#getmrtrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":29,"kind":2048,"name":"deleteMrtRuleset","url":"classes/cdn.cdnzones.html#deletemrtruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":30,"kind":2048,"name":"deleteMrtRule","url":"classes/cdn.cdnzones.html#deletemrtrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":31,"kind":2048,"name":"updateMrtRule","url":"classes/cdn.cdnzones.html#updatemrtrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":32,"kind":2048,"name":"createLogpushOwnership","url":"classes/cdn.cdnzones.html#createlogpushownership","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":33,"kind":2048,"name":"createLogpushJob","url":"classes/cdn.cdnzones.html#createlogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":34,"kind":2048,"name":"listLogpushJob","url":"classes/cdn.cdnzones.html#listlogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":35,"kind":2048,"name":"getLogpushJob","url":"classes/cdn.cdnzones.html#getlogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":36,"kind":2048,"name":"updateLogpushJob","url":"classes/cdn.cdnzones.html#updatelogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":37,"kind":2048,"name":"deleteLogpushJob","url":"classes/cdn.cdnzones.html#deletelogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":38,"kind":2048,"name":"createCustomRule","url":"classes/cdn.cdnzones.html#createcustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":39,"kind":2048,"name":"getCustomRules","url":"classes/cdn.cdnzones.html#getcustomrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":40,"kind":2048,"name":"updateOrderOfCustomRules","url":"classes/cdn.cdnzones.html#updateorderofcustomrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":41,"kind":2048,"name":"getCustomRule","url":"classes/cdn.cdnzones.html#getcustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":42,"kind":2048,"name":"updateCustomRule","url":"classes/cdn.cdnzones.html#updatecustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":43,"kind":2048,"name":"deleteCustomRule","url":"classes/cdn.cdnzones.html#deletecustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":44,"kind":2048,"name":"createRateLimitingRule","url":"classes/cdn.cdnzones.html#createratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":45,"kind":2048,"name":"getRateLimitingRules","url":"classes/cdn.cdnzones.html#getratelimitingrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":46,"kind":2048,"name":"getRateLimitingRule","url":"classes/cdn.cdnzones.html#getratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":47,"kind":2048,"name":"updateRateLimitingRule","url":"classes/cdn.cdnzones.html#updateratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":48,"kind":2048,"name":"deleteRateLimitingRule","url":"classes/cdn.cdnzones.html#deleteratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":49,"kind":2048,"name":"getWafManagedRulesets","url":"classes/cdn.cdnzones.html#getwafmanagedrulesets","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":50,"kind":2048,"name":"updateWafManagedRuleset","url":"classes/cdn.cdnzones.html#updatewafmanagedruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":51,"kind":1024,"name":"clientConfig","url":"classes/cdn.cdnzones.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"cdn.CdnZones"},{"id":52,"kind":4194304,"name":"FirewallRule","url":"classes/cdn.cdnzones.html#firewallrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":53,"kind":4194304,"name":"CachePurgeRequest","url":"classes/cdn.cdnzones.html#cachepurgerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":54,"kind":4194304,"name":"CachePurgeResponseEnvelope","url":"classes/cdn.cdnzones.html#cachepurgeresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":55,"kind":4194304,"name":"CollectionResponseEnvelope","url":"classes/cdn.cdnzones.html#collectionresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":56,"kind":4194304,"name":"StorefrontZoneCreateResponse","url":"classes/cdn.cdnzones.html#storefrontzonecreateresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":57,"kind":4194304,"name":"WafGroupEnvelope","url":"classes/cdn.cdnzones.html#wafgroupenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":58,"kind":4194304,"name":"LogpushOwnershipPostRequest","url":"classes/cdn.cdnzones.html#logpushownershippostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":59,"kind":4194304,"name":"SpeedSettingsEnvelope","url":"classes/cdn.cdnzones.html#speedsettingsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":60,"kind":4194304,"name":"LogpushResponse","url":"classes/cdn.cdnzones.html#logpushresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":61,"kind":4194304,"name":"Zone","url":"classes/cdn.cdnzones.html#zone","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":62,"kind":4194304,"name":"ZonesEnvelope","url":"classes/cdn.cdnzones.html#zonesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":63,"kind":4194304,"name":"ItemResponseEnvelope","url":"classes/cdn.cdnzones.html#itemresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":64,"kind":4194304,"name":"RateLimitingRuleEnvelope","url":"classes/cdn.cdnzones.html#ratelimitingruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":65,"kind":4194304,"name":"StorefrontZoneCreateRequest","url":"classes/cdn.cdnzones.html#storefrontzonecreaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":66,"kind":4194304,"name":"LogpushCreateRequest","url":"classes/cdn.cdnzones.html#logpushcreaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":67,"kind":4194304,"name":"LogpushJobsEnvelope","url":"classes/cdn.cdnzones.html#logpushjobsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":68,"kind":4194304,"name":"RateLimitingRulesPostRequest","url":"classes/cdn.cdnzones.html#ratelimitingrulespostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":69,"kind":4194304,"name":"WAFManagedRulesetRequest","url":"classes/cdn.cdnzones.html#wafmanagedrulesetrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":70,"kind":4194304,"name":"CertificatesEnvelope","url":"classes/cdn.cdnzones.html#certificatesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":71,"kind":4194304,"name":"WAFManagedRulesetsEnvelope","url":"classes/cdn.cdnzones.html#wafmanagedrulesetsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":72,"kind":4194304,"name":"MRTRulesResponse","url":"classes/cdn.cdnzones.html#mrtrulesresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":73,"kind":4194304,"name":"Hsts","url":"classes/cdn.cdnzones.html#hsts","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":74,"kind":4194304,"name":"SecuritySettingsEnvelope","url":"classes/cdn.cdnzones.html#securitysettingsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":75,"kind":4194304,"name":"RulePosition","url":"classes/cdn.cdnzones.html#ruleposition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":76,"kind":4194304,"name":"CustomRulesPostRequest","url":"classes/cdn.cdnzones.html#customrulespostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":77,"kind":4194304,"name":"LogpushUpdateRequest","url":"classes/cdn.cdnzones.html#logpushupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":78,"kind":4194304,"name":"ZoneEnvelope","url":"classes/cdn.cdnzones.html#zoneenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":79,"kind":4194304,"name":"SpeedSetting","url":"classes/cdn.cdnzones.html#speedsetting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":80,"kind":4194304,"name":"MRTRulePatchRequest","url":"classes/cdn.cdnzones.html#mrtrulepatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":81,"kind":4194304,"name":"CustomRulesEnvelope","url":"classes/cdn.cdnzones.html#customrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":82,"kind":4194304,"name":"WAFManagedRulesetEnvelope","url":"classes/cdn.cdnzones.html#wafmanagedrulesetenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":83,"kind":4194304,"name":"FirewallRuleEnvelope","url":"classes/cdn.cdnzones.html#firewallruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":84,"kind":4194304,"name":"RateLimitingRulesPatchRequest","url":"classes/cdn.cdnzones.html#ratelimitingrulespatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":85,"kind":4194304,"name":"FirewallRulesEnvelope","url":"classes/cdn.cdnzones.html#firewallrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":86,"kind":4194304,"name":"CertificateRequest","url":"classes/cdn.cdnzones.html#certificaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":87,"kind":4194304,"name":"RateLimitingRulesEnvelope","url":"classes/cdn.cdnzones.html#ratelimitingrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":88,"kind":4194304,"name":"CustomHostnameValidationResponse","url":"classes/cdn.cdnzones.html#customhostnamevalidationresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":89,"kind":4194304,"name":"LogpushOwnershipPostResponse","url":"classes/cdn.cdnzones.html#logpushownershippostresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":90,"kind":4194304,"name":"MRTRulesPostRequest","url":"classes/cdn.cdnzones.html#mrtrulespostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":91,"kind":4194304,"name":"LogpushEnvelope","url":"classes/cdn.cdnzones.html#logpushenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":92,"kind":4194304,"name":"ErrorResponse","url":"classes/cdn.cdnzones.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":93,"kind":4194304,"name":"MRTRulesResponseEnvelope","url":"classes/cdn.cdnzones.html#mrtrulesresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":94,"kind":4194304,"name":"CustomRuleEnvelope","url":"classes/cdn.cdnzones.html#customruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":95,"kind":4194304,"name":"MRTRulesetPatchRequest","url":"classes/cdn.cdnzones.html#mrtrulesetpatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":96,"kind":4194304,"name":"WafGroupsEnvelope","url":"classes/cdn.cdnzones.html#wafgroupsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":97,"kind":4194304,"name":"OCAPICachingToggleRequest","url":"classes/cdn.cdnzones.html#ocapicachingtogglerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":98,"kind":4194304,"name":"SecuritySetting","url":"classes/cdn.cdnzones.html#securitysetting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":99,"kind":4194304,"name":"CustomRule","url":"classes/cdn.cdnzones.html#customrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":100,"kind":4194304,"name":"MRTRules","url":"classes/cdn.cdnzones.html#mrtrules","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":101,"kind":4194304,"name":"WafRulesEnvelope","url":"classes/cdn.cdnzones.html#wafrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":102,"kind":4194304,"name":"CertificateEnvelope","url":"classes/cdn.cdnzones.html#certificateenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":103,"kind":4194304,"name":"CustomHostnameValidationEnvelope","url":"classes/cdn.cdnzones.html#customhostnamevalidationenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":104,"kind":4194304,"name":"RateLimitingRule","url":"classes/cdn.cdnzones.html#ratelimitingrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":105,"kind":4194304,"name":"CustomRulesPatchRequest","url":"classes/cdn.cdnzones.html#customrulespatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":106,"kind":4194304,"name":"StorefrontZoneCreateEnvelope","url":"classes/cdn.cdnzones.html#storefrontzonecreateenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":107,"kind":4194304,"name":"WafGroup","url":"classes/cdn.cdnzones.html#wafgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":108,"kind":4194304,"name":"Certificate","url":"classes/cdn.cdnzones.html#certificate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":109,"kind":4194304,"name":"CustomRulesPatchOrderRequest","url":"classes/cdn.cdnzones.html#customrulespatchorderrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":110,"kind":4194304,"name":"WafRuleEnvelope","url":"classes/cdn.cdnzones.html#wafruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":111,"kind":4194304,"name":"CachePurgeResponse","url":"classes/cdn.cdnzones.html#cachepurgeresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":112,"kind":4194304,"name":"WAFManagedRuleset","url":"classes/cdn.cdnzones.html#wafmanagedruleset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":113,"kind":4194304,"name":"MRTRuleset","url":"classes/cdn.cdnzones.html#mrtruleset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":114,"kind":4194304,"name":"WafRule","url":"classes/cdn.cdnzones.html#wafrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":115,"kind":4194304,"name":"hasUnauthorizedResponse","url":"classes/cdn.cdnzones.html#hasunauthorizedresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":116,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasunauthorizedresponse.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasUnauthorizedResponse"},{"id":117,"kind":4194304,"name":"hasBadRequestResponse","url":"classes/cdn.cdnzones.html#hasbadrequestresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":118,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasbadrequestresponse.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasBadRequestResponse"},{"id":119,"kind":4194304,"name":"hasConflictResponse","url":"classes/cdn.cdnzones.html#hasconflictresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":120,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasconflictresponse.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasConflictResponse"},{"id":121,"kind":4194304,"name":"hasForbiddenAccessResponse","url":"classes/cdn.cdnzones.html#hasforbiddenaccessresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":122,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasforbiddenaccessresponse.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasForbiddenAccessResponse"},{"id":123,"kind":4194304,"name":"hasInternalServerErrorResponse","url":"classes/cdn.cdnzones.html#hasinternalservererrorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":124,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasinternalservererrorresponse.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasInternalServerErrorResponse"},{"id":125,"kind":4194304,"name":"hasResourceNotFoundResponse","url":"classes/cdn.cdnzones.html#hasresourcenotfoundresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":126,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasresourcenotfoundresponse.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasResourceNotFoundResponse"},{"id":127,"kind":4194304,"name":"EtagResponse","url":"classes/cdn.cdnzones.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":128,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#etagresponse.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.EtagResponse"},{"id":129,"kind":4194304,"name":"RateLimited3","url":"classes/cdn.cdnzones.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":130,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited3.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited3"},{"id":131,"kind":4194304,"name":"SyncCreated","url":"classes/cdn.cdnzones.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":132,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#synccreated.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.SyncCreated"},{"id":133,"kind":4194304,"name":"DateConditionalRequest","url":"classes/cdn.cdnzones.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":134,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.DateConditionalRequest"},{"id":135,"kind":4194304,"name":"RateLimited5","url":"classes/cdn.cdnzones.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":136,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited5.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited5"},{"id":137,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/cdn.cdnzones.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":138,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#etagconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.EtagConditionalRequest"},{"id":139,"kind":4194304,"name":"AsyncCreated","url":"classes/cdn.cdnzones.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":140,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.AsyncCreated"},{"id":141,"kind":4194304,"name":"RateLimited","url":"classes/cdn.cdnzones.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":142,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited"},{"id":143,"kind":4194304,"name":"RateLimited2","url":"classes/cdn.cdnzones.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":144,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited2"},{"id":145,"kind":4194304,"name":"OffsetPaginated","url":"classes/cdn.cdnzones.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":146,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#offsetpaginated.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.OffsetPaginated"},{"id":147,"kind":4194304,"name":"RateLimited4","url":"classes/cdn.cdnzones.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":148,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited4.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited4"},{"id":149,"kind":4194304,"name":"Money","url":"classes/cdn.cdnzones.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":150,"kind":4194304,"name":"SimpleSearchResult","url":"classes/cdn.cdnzones.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":151,"kind":4194304,"name":"SearchRequest","url":"classes/cdn.cdnzones.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":152,"kind":4194304,"name":"PropertyDefinition","url":"classes/cdn.cdnzones.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":153,"kind":4194304,"name":"LocalizedString","url":"classes/cdn.cdnzones.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":154,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/cdn.cdnzones.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":155,"kind":4194304,"name":"ClosedObject","url":"classes/cdn.cdnzones.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":156,"kind":4194304,"name":"OpenObject","url":"classes/cdn.cdnzones.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":157,"kind":4194304,"name":"QueryParamsLimit","url":"classes/cdn.cdnzones.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":158,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#queryparamslimit.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.QueryParamsLimit"},{"id":159,"kind":4194304,"name":"QueryParamsOffset","url":"classes/cdn.cdnzones.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":160,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#queryparamsoffset.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.QueryParamsOffset"},{"id":161,"kind":4194304,"name":"SiteSpecific","url":"classes/cdn.cdnzones.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":162,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#sitespecific-1.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.SiteSpecific"},{"id":163,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/cdn.cdnzones.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":164,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#nopropertiesallowed.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.NoPropertiesAllowed"},{"id":165,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/cdn.cdnzones.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":166,"kind":4194304,"name":"BoolFilter","url":"classes/cdn.cdnzones.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":167,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/cdn.cdnzones.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":168,"kind":4194304,"name":"MatchAllQuery","url":"classes/cdn.cdnzones.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":169,"kind":4194304,"name":"FilteredQuery","url":"classes/cdn.cdnzones.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":170,"kind":4194304,"name":"QueryFilter","url":"classes/cdn.cdnzones.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":171,"kind":4194304,"name":"Query","url":"classes/cdn.cdnzones.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":172,"kind":4194304,"name":"TermQuery","url":"classes/cdn.cdnzones.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":173,"kind":4194304,"name":"TermFilter","url":"classes/cdn.cdnzones.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":174,"kind":4194304,"name":"TextQuery","url":"classes/cdn.cdnzones.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":175,"kind":4194304,"name":"Range2Filter","url":"classes/cdn.cdnzones.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":176,"kind":4194304,"name":"BoolQuery","url":"classes/cdn.cdnzones.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":177,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/cdn.cdnzones.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":178,"kind":4194304,"name":"NestedQuery","url":"classes/cdn.cdnzones.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":179,"kind":4194304,"name":"Filter","url":"classes/cdn.cdnzones.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":180,"kind":4194304,"name":"Sort","url":"classes/cdn.cdnzones.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":181,"kind":4194304,"name":"RangeFilter","url":"classes/cdn.cdnzones.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":182,"kind":4194304,"name":"SearchRequestBase","url":"classes/cdn.cdnzones.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":183,"kind":4194304,"name":"MoneyMnemonic","url":"classes/cdn.cdnzones.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":184,"kind":4194304,"name":"L10nString","url":"classes/cdn.cdnzones.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":185,"kind":4194304,"name":"AttributeDefinition","url":"classes/cdn.cdnzones.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":186,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.AttributeDefinition"},{"id":187,"kind":32,"name":"defaultValue","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":188,"kind":32,"name":"id","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":189,"kind":32,"name":"name","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":190,"kind":32,"name":"description","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":191,"kind":32,"name":"key","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":192,"kind":32,"name":"localizable","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":193,"kind":32,"name":"mandatory","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":194,"kind":32,"name":"max","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":195,"kind":32,"name":"minLength","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":196,"kind":32,"name":"min","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":197,"kind":32,"name":"multiValueType","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":198,"kind":32,"name":"regularExpression","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":199,"kind":32,"name":"scale","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":200,"kind":32,"name":"searchable","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":201,"kind":32,"name":"siteSpecific","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":202,"kind":32,"name":"system","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":203,"kind":32,"name":"unit","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":204,"kind":32,"name":"possibleValues","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":205,"kind":32,"name":"type","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":206,"kind":32,"name":"visible","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":207,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/cdn.cdnzones.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":208,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.PropertyValueDefinition"},{"id":209,"kind":32,"name":"description","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":210,"kind":32,"name":"displayValue","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":211,"kind":32,"name":"id","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":212,"kind":32,"name":"position","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":213,"kind":32,"name":"value","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":214,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/cdn.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"cdn"},{"id":215,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/cdn.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"cdn"},{"id":216,"kind":1,"name":"checkout","url":"modules/checkout.html","classes":"tsd-kind-module"},{"id":217,"kind":128,"name":"Orders","url":"classes/checkout.orders.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"checkout"},{"id":218,"kind":512,"name":"constructor","url":"classes/checkout.orders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"checkout.Orders"},{"id":219,"kind":2048,"name":"getOrders","url":"classes/checkout.orders.html#getorders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":220,"kind":2048,"name":"createOrders","url":"classes/checkout.orders.html#createorders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":221,"kind":2048,"name":"getOrder","url":"classes/checkout.orders.html#getorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":222,"kind":2048,"name":"updateOrder","url":"classes/checkout.orders.html#updateorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":223,"kind":2048,"name":"updateOrderConfirmationStatus","url":"classes/checkout.orders.html#updateorderconfirmationstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":224,"kind":2048,"name":"updateOrderExportStatus","url":"classes/checkout.orders.html#updateorderexportstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":225,"kind":2048,"name":"updateOrderExternalStatus","url":"classes/checkout.orders.html#updateorderexternalstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":226,"kind":2048,"name":"updateOrderPaymentStatus","url":"classes/checkout.orders.html#updateorderpaymentstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":227,"kind":2048,"name":"updateOrderShippingStatus","url":"classes/checkout.orders.html#updateordershippingstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":228,"kind":2048,"name":"updateOrderStatus","url":"classes/checkout.orders.html#updateorderstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":229,"kind":2048,"name":"updateOrderPaymentInstrument","url":"classes/checkout.orders.html#updateorderpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":230,"kind":2048,"name":"updateOrderPaymentTransaction","url":"classes/checkout.orders.html#updateorderpaymenttransaction","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":231,"kind":2048,"name":"updateOrderShippingAddress","url":"classes/checkout.orders.html#updateordershippingaddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":232,"kind":1024,"name":"clientConfig","url":"classes/checkout.orders.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"checkout.Orders"},{"id":233,"kind":4194304,"name":"ErrorResponse","url":"classes/checkout.orders.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":234,"kind":4194304,"name":"SiteNotFound","url":"classes/checkout.orders.html#sitenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":235,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#sitenotfound.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.SiteNotFound"},{"id":236,"kind":4194304,"name":"OrderNotFound","url":"classes/checkout.orders.html#ordernotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":237,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordernotfound.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderNotFound"},{"id":238,"kind":4194304,"name":"StatusTransitionConflict","url":"classes/checkout.orders.html#statustransitionconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":239,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#statustransitionconflict.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.StatusTransitionConflict"},{"id":240,"kind":4194304,"name":"CancelOrderConflict","url":"classes/checkout.orders.html#cancelorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":241,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#cancelorderconflict.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CancelOrderConflict"},{"id":242,"kind":4194304,"name":"BadRequest","url":"classes/checkout.orders.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":243,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#badrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.BadRequest"},{"id":244,"kind":4194304,"name":"OrderCreated","url":"classes/checkout.orders.html#ordercreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":245,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordercreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderCreated"},{"id":246,"kind":4194304,"name":"ShipmentNotFound","url":"classes/checkout.orders.html#shipmentnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":247,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#shipmentnotfound.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ShipmentNotFound"},{"id":248,"kind":4194304,"name":"InvalidTaxTotal","url":"classes/checkout.orders.html#invalidtaxtotal","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":249,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#invalidtaxtotal.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.InvalidTaxTotal"},{"id":250,"kind":4194304,"name":"PaymentInstrumentNotFound","url":"classes/checkout.orders.html#paymentinstrumentnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":251,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#paymentinstrumentnotfound.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PaymentInstrumentNotFound"},{"id":252,"kind":4194304,"name":"UndoCancelOrderConflict","url":"classes/checkout.orders.html#undocancelorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":253,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#undocancelorderconflict.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.UndoCancelOrderConflict"},{"id":254,"kind":4194304,"name":"InvalidOrderTotal","url":"classes/checkout.orders.html#invalidordertotal","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":255,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#invalidordertotal.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.InvalidOrderTotal"},{"id":256,"kind":4194304,"name":"PlaceOrderConflict","url":"classes/checkout.orders.html#placeorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":257,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#placeorderconflict.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PlaceOrderConflict"},{"id":258,"kind":4194304,"name":"InvalidCurrency","url":"classes/checkout.orders.html#invalidcurrency","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":259,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#invalidcurrency.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.InvalidCurrency"},{"id":260,"kind":4194304,"name":"BasketReopen","url":"classes/checkout.orders.html#basketreopen","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":261,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#basketreopen.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.BasketReopen"},{"id":262,"kind":4194304,"name":"NoContent","url":"classes/checkout.orders.html#nocontent","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":263,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#nocontent.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.NoContent"},{"id":264,"kind":4194304,"name":"UndoFailOrderConflict","url":"classes/checkout.orders.html#undofailorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":265,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#undofailorderconflict.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.UndoFailOrderConflict"},{"id":266,"kind":4194304,"name":"PaymentTransactionUpdateRequest","url":"classes/checkout.orders.html#paymenttransactionupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":267,"kind":4194304,"name":"PaymentInstrumentUpdateRequest","url":"classes/checkout.orders.html#paymentinstrumentupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":268,"kind":4194304,"name":"OrderPaymentStatusUpdateRequest","url":"classes/checkout.orders.html#orderpaymentstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":269,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderpaymentstatusupdaterequest.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderPaymentStatusUpdateRequest"},{"id":270,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderpaymentstatusupdaterequest.__type-29.status-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderPaymentStatusUpdateRequest.__type"},{"id":271,"kind":4194304,"name":"PaymentCard","url":"classes/checkout.orders.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":272,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#paymentcard.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PaymentCard"},{"id":273,"kind":32,"name":"cardType","url":"classes/checkout.orders.html#paymentcard.__type-33.cardtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":274,"kind":32,"name":"creditCardExpired","url":"classes/checkout.orders.html#paymentcard.__type-33.creditcardexpired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":275,"kind":32,"name":"creditCardToken","url":"classes/checkout.orders.html#paymentcard.__type-33.creditcardtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":276,"kind":32,"name":"expirationMonth","url":"classes/checkout.orders.html#paymentcard.__type-33.expirationmonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":277,"kind":32,"name":"expirationYear","url":"classes/checkout.orders.html#paymentcard.__type-33.expirationyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":278,"kind":32,"name":"holder","url":"classes/checkout.orders.html#paymentcard.__type-33.holder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":279,"kind":32,"name":"issueNumber","url":"classes/checkout.orders.html#paymentcard.__type-33.issuenumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":280,"kind":32,"name":"maskedNumber","url":"classes/checkout.orders.html#paymentcard.__type-33.maskednumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":281,"kind":32,"name":"numberLastDigits","url":"classes/checkout.orders.html#paymentcard.__type-33.numberlastdigits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":282,"kind":32,"name":"validFromMonth","url":"classes/checkout.orders.html#paymentcard.__type-33.validfrommonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":283,"kind":32,"name":"validFromYear","url":"classes/checkout.orders.html#paymentcard.__type-33.validfromyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":284,"kind":4194304,"name":"ShippingItem","url":"classes/checkout.orders.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":285,"kind":4194304,"name":"Discount","url":"classes/checkout.orders.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":286,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#discount.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.Discount"},{"id":287,"kind":32,"name":"amount","url":"classes/checkout.orders.html#discount.__type-12.amount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":288,"kind":32,"name":"percentage","url":"classes/checkout.orders.html#discount.__type-12.percentage","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":289,"kind":32,"name":"priceBookId","url":"classes/checkout.orders.html#discount.__type-12.pricebookid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":290,"kind":32,"name":"type","url":"classes/checkout.orders.html#discount.__type-12.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":291,"kind":4194304,"name":"OrderConfirmationStatusUpdateRequest","url":"classes/checkout.orders.html#orderconfirmationstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":292,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderconfirmationstatusupdaterequest.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderConfirmationStatusUpdateRequest"},{"id":293,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderconfirmationstatusupdaterequest.__type-23.status","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderConfirmationStatusUpdateRequest.__type"},{"id":294,"kind":4194304,"name":"Address","url":"classes/checkout.orders.html#address","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":295,"kind":4194304,"name":"CouponItem","url":"classes/checkout.orders.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":296,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#couponitem.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CouponItem"},{"id":297,"kind":32,"name":"code","url":"classes/checkout.orders.html#couponitem.__type-6.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":298,"kind":32,"name":"couponItemId","url":"classes/checkout.orders.html#couponitem.__type-6.couponitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":299,"kind":32,"name":"statusCode","url":"classes/checkout.orders.html#couponitem.__type-6.statuscode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":300,"kind":32,"name":"valid","url":"classes/checkout.orders.html#couponitem.__type-6.valid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":301,"kind":4194304,"name":"OrdersResponse","url":"classes/checkout.orders.html#ordersresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":302,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordersresponse.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrdersResponse"},{"id":303,"kind":32,"name":"data","url":"classes/checkout.orders.html#ordersresponse.__type-32.data","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrdersResponse.__type"},{"id":304,"kind":4194304,"name":"ShippingMethodReference","url":"classes/checkout.orders.html#shippingmethodreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":305,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#shippingmethodreference.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ShippingMethodReference"},{"id":306,"kind":32,"name":"id","url":"classes/checkout.orders.html#shippingmethodreference.__type-49.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ShippingMethodReference.__type"},{"id":307,"kind":4194304,"name":"ProductItem","url":"classes/checkout.orders.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":308,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/checkout.orders.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":309,"kind":4194304,"name":"ShippingAddressUpdateRequest","url":"classes/checkout.orders.html#shippingaddressupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":310,"kind":4194304,"name":"Shipment","url":"classes/checkout.orders.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":311,"kind":4194304,"name":"CustomerInfo","url":"classes/checkout.orders.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":312,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#customerinfo.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CustomerInfo"},{"id":313,"kind":32,"name":"customerId","url":"classes/checkout.orders.html#customerinfo.__type-8.customerid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":314,"kind":32,"name":"customerName","url":"classes/checkout.orders.html#customerinfo.__type-8.customername","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":315,"kind":32,"name":"customerNo","url":"classes/checkout.orders.html#customerinfo.__type-8.customerno","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":316,"kind":32,"name":"email","url":"classes/checkout.orders.html#customerinfo.__type-8.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":317,"kind":32,"name":"guest","url":"classes/checkout.orders.html#customerinfo.__type-8.guest","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":318,"kind":4194304,"name":"PriceAdjustment","url":"classes/checkout.orders.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":319,"kind":4194304,"name":"OrderExternalStatusUpdateRequest","url":"classes/checkout.orders.html#orderexternalstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":320,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderexternalstatusupdaterequest.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderExternalStatusUpdateRequest"},{"id":321,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderexternalstatusupdaterequest.__type-26.status-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderExternalStatusUpdateRequest.__type"},{"id":322,"kind":4194304,"name":"OptionItem","url":"classes/checkout.orders.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":323,"kind":4194304,"name":"CreateOrderPaymentInstrument","url":"classes/checkout.orders.html#createorderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":324,"kind":4194304,"name":"OrderShippingStatusUpdateRequest","url":"classes/checkout.orders.html#ordershippingstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":325,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordershippingstatusupdaterequest.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderShippingStatusUpdateRequest"},{"id":326,"kind":32,"name":"status","url":"classes/checkout.orders.html#ordershippingstatusupdaterequest.__type-30.status-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderShippingStatusUpdateRequest.__type"},{"id":327,"kind":4194304,"name":"OrderUpdateRequest","url":"classes/checkout.orders.html#orderupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":328,"kind":4194304,"name":"ABTestSegment","url":"classes/checkout.orders.html#abtestsegment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":329,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#abtestsegment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ABTestSegment"},{"id":330,"kind":32,"name":"testId","url":"classes/checkout.orders.html#abtestsegment.__type.testid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ABTestSegment.__type"},{"id":331,"kind":32,"name":"segmentId","url":"classes/checkout.orders.html#abtestsegment.__type.segmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ABTestSegment.__type"},{"id":332,"kind":4194304,"name":"CreateOrderPriceAdjustment","url":"classes/checkout.orders.html#createorderpriceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":333,"kind":4194304,"name":"OrderNote","url":"classes/checkout.orders.html#ordernote","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":334,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordernote.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderNote"},{"id":335,"kind":32,"name":"createdBy","url":"classes/checkout.orders.html#ordernote.__type-28.createdby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":336,"kind":32,"name":"creationDate","url":"classes/checkout.orders.html#ordernote.__type-28.creationdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":337,"kind":32,"name":"subject","url":"classes/checkout.orders.html#ordernote.__type-28.subject","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":338,"kind":32,"name":"text","url":"classes/checkout.orders.html#ordernote.__type-28.text","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":339,"kind":4194304,"name":"PaymentInstrument","url":"classes/checkout.orders.html#paymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":340,"kind":4194304,"name":"OrderExportStatusUpdateRequest","url":"classes/checkout.orders.html#orderexportstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":341,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderexportstatusupdaterequest.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderExportStatusUpdateRequest"},{"id":342,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderexportstatusupdaterequest.__type-25.status-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderExportStatusUpdateRequest.__type"},{"id":343,"kind":4194304,"name":"OrderStatusUpdateRequest","url":"classes/checkout.orders.html#orderstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":344,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderstatusupdaterequest.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderStatusUpdateRequest"},{"id":345,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderstatusupdaterequest.__type-31.status-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderStatusUpdateRequest.__type"},{"id":346,"kind":4194304,"name":"CreateOrderPaymentTransaction","url":"classes/checkout.orders.html#createorderpaymenttransaction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":347,"kind":4194304,"name":"CreateOrderProductItems","url":"classes/checkout.orders.html#createorderproductitems","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":348,"kind":4194304,"name":"ProductReference","url":"classes/checkout.orders.html#productreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":349,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#productreference.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ProductReference"},{"id":350,"kind":32,"name":"productId","url":"classes/checkout.orders.html#productreference.__type-38.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductReference.__type"},{"id":351,"kind":32,"name":"productName","url":"classes/checkout.orders.html#productreference.__type-38.productname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductReference.__type"},{"id":352,"kind":4194304,"name":"CreateOrderShipment","url":"classes/checkout.orders.html#createordershipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":353,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#createordershipment.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CreateOrderShipment"},{"id":354,"kind":32,"name":"shipmentId","url":"classes/checkout.orders.html#createordershipment.__type-7.shipmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":355,"kind":32,"name":"shippingMethod","url":"classes/checkout.orders.html#createordershipment.__type-7.shippingmethod","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":356,"kind":32,"name":"shippingAddress","url":"classes/checkout.orders.html#createordershipment.__type-7.shippingaddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":357,"kind":32,"name":"shippingTotal","url":"classes/checkout.orders.html#createordershipment.__type-7.shippingtotal","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":358,"kind":32,"name":"taxTotal","url":"classes/checkout.orders.html#createordershipment.__type-7.taxtotal","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":359,"kind":4194304,"name":"GiftCertificateItem","url":"classes/checkout.orders.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":360,"kind":4194304,"name":"PaymentTransaction","url":"classes/checkout.orders.html#paymenttransaction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":361,"kind":4194304,"name":"Order","url":"classes/checkout.orders.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":362,"kind":4194304,"name":"CreateOrderRequest","url":"classes/checkout.orders.html#createorderrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":363,"kind":4194304,"name":"ProductListReference","url":"classes/checkout.orders.html#productlistreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":364,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#productlistreference.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ProductListReference"},{"id":365,"kind":32,"name":"description","url":"classes/checkout.orders.html#productlistreference.__type-37.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":366,"kind":32,"name":"name","url":"classes/checkout.orders.html#productlistreference.__type-37.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":367,"kind":32,"name":"public","url":"classes/checkout.orders.html#productlistreference.__type-37.public-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":368,"kind":32,"name":"type","url":"classes/checkout.orders.html#productlistreference.__type-37.type-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":369,"kind":4194304,"name":"CreateOrderOptionItem","url":"classes/checkout.orders.html#createorderoptionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":370,"kind":4194304,"name":"Status","url":"classes/checkout.orders.html#status-6","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":371,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#status-6.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.Status"},{"id":372,"kind":32,"name":"code","url":"classes/checkout.orders.html#status-6.__type-52.code-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Status.__type"},{"id":373,"kind":32,"name":"message","url":"classes/checkout.orders.html#status-6.__type-52.message","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Status.__type"},{"id":374,"kind":32,"name":"status","url":"classes/checkout.orders.html#status-6.__type-52.status-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Status.__type"},{"id":375,"kind":4194304,"name":"ProductListItemReference","url":"classes/checkout.orders.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":376,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#productlistitemreference.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ProductListItemReference"},{"id":377,"kind":32,"name":"id","url":"classes/checkout.orders.html#productlistitemreference.__type-36.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":378,"kind":32,"name":"priority","url":"classes/checkout.orders.html#productlistitemreference.__type-36.priority","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":379,"kind":32,"name":"product","url":"classes/checkout.orders.html#productlistitemreference.__type-36.product","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":380,"kind":32,"name":"productList","url":"classes/checkout.orders.html#productlistitemreference.__type-36.productlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":381,"kind":32,"name":"public","url":"classes/checkout.orders.html#productlistitemreference.__type-36.public","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":382,"kind":32,"name":"purchasedQuantity","url":"classes/checkout.orders.html#productlistitemreference.__type-36.purchasedquantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":383,"kind":32,"name":"quantity","url":"classes/checkout.orders.html#productlistitemreference.__type-36.quantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":384,"kind":32,"name":"type","url":"classes/checkout.orders.html#productlistitemreference.__type-36.type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":385,"kind":4194304,"name":"Money","url":"classes/checkout.orders.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":386,"kind":4194304,"name":"SimpleSearchResult","url":"classes/checkout.orders.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":387,"kind":4194304,"name":"SearchRequest","url":"classes/checkout.orders.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":388,"kind":4194304,"name":"PropertyDefinition","url":"classes/checkout.orders.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":389,"kind":4194304,"name":"LocalizedString","url":"classes/checkout.orders.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":390,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/checkout.orders.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":391,"kind":4194304,"name":"ClosedObject","url":"classes/checkout.orders.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":392,"kind":4194304,"name":"OpenObject","url":"classes/checkout.orders.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":393,"kind":4194304,"name":"QueryParamsLimit","url":"classes/checkout.orders.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":394,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#queryparamslimit.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.QueryParamsLimit"},{"id":395,"kind":4194304,"name":"QueryParamsOffset","url":"classes/checkout.orders.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":396,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#queryparamsoffset.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.QueryParamsOffset"},{"id":397,"kind":4194304,"name":"SiteSpecific","url":"classes/checkout.orders.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":398,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#sitespecific-1.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.SiteSpecific"},{"id":399,"kind":4194304,"name":"Selectable","url":"classes/checkout.orders.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":400,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#selectable.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.Selectable"},{"id":401,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/checkout.orders.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":402,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#nopropertiesallowed.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.NoPropertiesAllowed"},{"id":403,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/checkout.orders.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":404,"kind":4194304,"name":"BoolFilter","url":"classes/checkout.orders.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":405,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/checkout.orders.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":406,"kind":4194304,"name":"MatchAllQuery","url":"classes/checkout.orders.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":407,"kind":4194304,"name":"FilteredQuery","url":"classes/checkout.orders.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":408,"kind":4194304,"name":"QueryFilter","url":"classes/checkout.orders.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":409,"kind":4194304,"name":"Query","url":"classes/checkout.orders.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":410,"kind":4194304,"name":"TermQuery","url":"classes/checkout.orders.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":411,"kind":4194304,"name":"TermFilter","url":"classes/checkout.orders.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":412,"kind":4194304,"name":"TextQuery","url":"classes/checkout.orders.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":413,"kind":4194304,"name":"Range2Filter","url":"classes/checkout.orders.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":414,"kind":4194304,"name":"BoolQuery","url":"classes/checkout.orders.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":415,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/checkout.orders.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":416,"kind":4194304,"name":"NestedQuery","url":"classes/checkout.orders.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":417,"kind":4194304,"name":"Filter","url":"classes/checkout.orders.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":418,"kind":4194304,"name":"Sort","url":"classes/checkout.orders.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":419,"kind":4194304,"name":"RangeFilter","url":"classes/checkout.orders.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":420,"kind":4194304,"name":"SearchRequestBase","url":"classes/checkout.orders.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":421,"kind":4194304,"name":"MoneyMnemonic","url":"classes/checkout.orders.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":422,"kind":4194304,"name":"L10nString","url":"classes/checkout.orders.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":423,"kind":4194304,"name":"AttributeDefinition","url":"classes/checkout.orders.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":424,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#attributedefinition.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.AttributeDefinition"},{"id":425,"kind":32,"name":"defaultValue","url":"classes/checkout.orders.html#attributedefinition.__type-2.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":426,"kind":32,"name":"id","url":"classes/checkout.orders.html#attributedefinition.__type-2.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":427,"kind":32,"name":"name","url":"classes/checkout.orders.html#attributedefinition.__type-2.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":428,"kind":32,"name":"description","url":"classes/checkout.orders.html#attributedefinition.__type-2.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":429,"kind":32,"name":"key","url":"classes/checkout.orders.html#attributedefinition.__type-2.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":430,"kind":32,"name":"localizable","url":"classes/checkout.orders.html#attributedefinition.__type-2.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":431,"kind":32,"name":"mandatory","url":"classes/checkout.orders.html#attributedefinition.__type-2.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":432,"kind":32,"name":"max","url":"classes/checkout.orders.html#attributedefinition.__type-2.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":433,"kind":32,"name":"minLength","url":"classes/checkout.orders.html#attributedefinition.__type-2.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":434,"kind":32,"name":"min","url":"classes/checkout.orders.html#attributedefinition.__type-2.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":435,"kind":32,"name":"multiValueType","url":"classes/checkout.orders.html#attributedefinition.__type-2.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":436,"kind":32,"name":"regularExpression","url":"classes/checkout.orders.html#attributedefinition.__type-2.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":437,"kind":32,"name":"scale","url":"classes/checkout.orders.html#attributedefinition.__type-2.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":438,"kind":32,"name":"searchable","url":"classes/checkout.orders.html#attributedefinition.__type-2.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":439,"kind":32,"name":"siteSpecific","url":"classes/checkout.orders.html#attributedefinition.__type-2.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":440,"kind":32,"name":"system","url":"classes/checkout.orders.html#attributedefinition.__type-2.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":441,"kind":32,"name":"unit","url":"classes/checkout.orders.html#attributedefinition.__type-2.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":442,"kind":32,"name":"possibleValues","url":"classes/checkout.orders.html#attributedefinition.__type-2.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":443,"kind":32,"name":"type","url":"classes/checkout.orders.html#attributedefinition.__type-2.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":444,"kind":32,"name":"visible","url":"classes/checkout.orders.html#attributedefinition.__type-2.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":445,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/checkout.orders.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":446,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PropertyValueDefinition"},{"id":447,"kind":32,"name":"description","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.description-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":448,"kind":32,"name":"displayValue","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":449,"kind":32,"name":"id","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":450,"kind":32,"name":"position","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":451,"kind":32,"name":"value","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":452,"kind":4194304,"name":"ChangeControlled","url":"classes/checkout.orders.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":453,"kind":4194304,"name":"DateRangeFilter","url":"classes/checkout.orders.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":454,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#daterangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.DateRangeFilter"},{"id":455,"kind":4194304,"name":"EtagResponse","url":"classes/checkout.orders.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":456,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#etagresponse.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.EtagResponse"},{"id":457,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/checkout.orders.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":458,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#integerrangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.IntegerRangeFilter"},{"id":459,"kind":4194304,"name":"RateLimited3","url":"classes/checkout.orders.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":460,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited3.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited3"},{"id":461,"kind":4194304,"name":"SyncCreated","url":"classes/checkout.orders.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":462,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#synccreated.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.SyncCreated"},{"id":463,"kind":4194304,"name":"DateConditionalRequest","url":"classes/checkout.orders.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":464,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#dateconditionalrequest.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.DateConditionalRequest"},{"id":465,"kind":4194304,"name":"RateLimited5","url":"classes/checkout.orders.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":466,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited5.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited5"},{"id":467,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/checkout.orders.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":468,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#etagconditionalrequest.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.EtagConditionalRequest"},{"id":469,"kind":4194304,"name":"AsyncCreated","url":"classes/checkout.orders.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":470,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#asynccreated.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.AsyncCreated"},{"id":471,"kind":4194304,"name":"RateLimited","url":"classes/checkout.orders.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":472,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited"},{"id":473,"kind":4194304,"name":"RateLimited2","url":"classes/checkout.orders.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":474,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited2"},{"id":475,"kind":4194304,"name":"OffsetPaginated","url":"classes/checkout.orders.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":476,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#offsetpaginated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OffsetPaginated"},{"id":477,"kind":4194304,"name":"RateLimited4","url":"classes/checkout.orders.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":478,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited4.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited4"},{"id":479,"kind":4194304,"name":"NumericRangeFilter","url":"classes/checkout.orders.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":480,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#numericrangefilter.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.NumericRangeFilter"},{"id":481,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/checkout.orders.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":482,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#datetimerangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.DatetimeRangeFilter"},{"id":483,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/checkout.orders.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":484,"kind":4194304,"name":"Error","url":"classes/checkout.orders.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":485,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/checkout.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":486,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/checkout.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":487,"kind":128,"name":"ShopperBaskets","url":"classes/checkout.shopperbaskets.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"checkout"},{"id":488,"kind":512,"name":"constructor","url":"classes/checkout.shopperbaskets.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"checkout.ShopperBaskets"},{"id":489,"kind":2048,"name":"createBasket","url":"classes/checkout.shopperbaskets.html#createbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":490,"kind":2048,"name":"transferBasket","url":"classes/checkout.shopperbaskets.html#transferbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":491,"kind":2048,"name":"mergeBasket","url":"classes/checkout.shopperbaskets.html#mergebasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":492,"kind":2048,"name":"deleteBasket","url":"classes/checkout.shopperbaskets.html#deletebasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":493,"kind":2048,"name":"getBasket","url":"classes/checkout.shopperbaskets.html#getbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":494,"kind":2048,"name":"updateBasket","url":"classes/checkout.shopperbaskets.html#updatebasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":495,"kind":2048,"name":"updateAsAgentBasket","url":"classes/checkout.shopperbaskets.html#updateasagentbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":496,"kind":2048,"name":"updateBillingAddressForBasket","url":"classes/checkout.shopperbaskets.html#updatebillingaddressforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":497,"kind":2048,"name":"addCouponToBasket","url":"classes/checkout.shopperbaskets.html#addcoupontobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":498,"kind":2048,"name":"removeCouponFromBasket","url":"classes/checkout.shopperbaskets.html#removecouponfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":499,"kind":2048,"name":"updateCustomerForBasket","url":"classes/checkout.shopperbaskets.html#updatecustomerforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":500,"kind":2048,"name":"addGiftCertificateItemToBasket","url":"classes/checkout.shopperbaskets.html#addgiftcertificateitemtobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":501,"kind":2048,"name":"removeGiftCertificateItemFromBasket","url":"classes/checkout.shopperbaskets.html#removegiftcertificateitemfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":502,"kind":2048,"name":"updateGiftCertificateItemInBasket","url":"classes/checkout.shopperbaskets.html#updategiftcertificateiteminbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":503,"kind":2048,"name":"addItemToBasket","url":"classes/checkout.shopperbaskets.html#additemtobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":504,"kind":2048,"name":"updateItemsInBasket","url":"classes/checkout.shopperbaskets.html#updateitemsinbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":505,"kind":2048,"name":"removeItemFromBasket","url":"classes/checkout.shopperbaskets.html#removeitemfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":506,"kind":2048,"name":"updateItemInBasket","url":"classes/checkout.shopperbaskets.html#updateiteminbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":507,"kind":2048,"name":"addTaxesForBasketItem","url":"classes/checkout.shopperbaskets.html#addtaxesforbasketitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":508,"kind":2048,"name":"addPaymentInstrumentToBasket","url":"classes/checkout.shopperbaskets.html#addpaymentinstrumenttobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":509,"kind":2048,"name":"removePaymentInstrumentFromBasket","url":"classes/checkout.shopperbaskets.html#removepaymentinstrumentfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":510,"kind":2048,"name":"updatePaymentInstrumentInBasket","url":"classes/checkout.shopperbaskets.html#updatepaymentinstrumentinbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":511,"kind":2048,"name":"getPaymentMethodsForBasket","url":"classes/checkout.shopperbaskets.html#getpaymentmethodsforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":512,"kind":2048,"name":"addPriceAdjustmentToBasket","url":"classes/checkout.shopperbaskets.html#addpriceadjustmenttobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":513,"kind":2048,"name":"removePriceAdjustmentFromBasket","url":"classes/checkout.shopperbaskets.html#removepriceadjustmentfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":514,"kind":2048,"name":"updatePriceAdjustmentInBasket","url":"classes/checkout.shopperbaskets.html#updatepriceadjustmentinbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":515,"kind":2048,"name":"getPriceBooksForBasket","url":"classes/checkout.shopperbaskets.html#getpricebooksforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":516,"kind":2048,"name":"addPriceBooksToBasket","url":"classes/checkout.shopperbaskets.html#addpricebookstobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":517,"kind":2048,"name":"createShipmentForBasket","url":"classes/checkout.shopperbaskets.html#createshipmentforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":518,"kind":2048,"name":"removeShipmentFromBasket","url":"classes/checkout.shopperbaskets.html#removeshipmentfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":519,"kind":2048,"name":"updateShipmentForBasket","url":"classes/checkout.shopperbaskets.html#updateshipmentforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":520,"kind":2048,"name":"updateShippingAddressForShipment","url":"classes/checkout.shopperbaskets.html#updateshippingaddressforshipment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":521,"kind":2048,"name":"updateShippingMethodForShipment","url":"classes/checkout.shopperbaskets.html#updateshippingmethodforshipment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":522,"kind":2048,"name":"getShippingMethodsForShipment","url":"classes/checkout.shopperbaskets.html#getshippingmethodsforshipment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":523,"kind":2048,"name":"updateAsStorefrontBasket","url":"classes/checkout.shopperbaskets.html#updateasstorefrontbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":524,"kind":2048,"name":"getTaxesFromBasket","url":"classes/checkout.shopperbaskets.html#gettaxesfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":525,"kind":2048,"name":"addTaxesForBasket","url":"classes/checkout.shopperbaskets.html#addtaxesforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":526,"kind":1024,"name":"clientConfig","url":"classes/checkout.shopperbaskets.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"checkout.ShopperBaskets"},{"id":527,"kind":4194304,"name":"ErrorResponse","url":"classes/checkout.shopperbaskets.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":528,"kind":4194304,"name":"LocaleSpecific","url":"classes/checkout.shopperbaskets.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":529,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#localespecific.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.LocaleSpecific"},{"id":530,"kind":4194304,"name":"Money","url":"classes/checkout.shopperbaskets.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":531,"kind":4194304,"name":"SimpleSearchResult","url":"classes/checkout.shopperbaskets.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":532,"kind":4194304,"name":"SearchRequest","url":"classes/checkout.shopperbaskets.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":533,"kind":4194304,"name":"PropertyDefinition","url":"classes/checkout.shopperbaskets.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":534,"kind":4194304,"name":"LocalizedString","url":"classes/checkout.shopperbaskets.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":535,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/checkout.shopperbaskets.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":536,"kind":4194304,"name":"ClosedObject","url":"classes/checkout.shopperbaskets.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":537,"kind":4194304,"name":"OpenObject","url":"classes/checkout.shopperbaskets.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":538,"kind":4194304,"name":"QueryParamsLimit","url":"classes/checkout.shopperbaskets.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":539,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#queryparamslimit.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.QueryParamsLimit"},{"id":540,"kind":4194304,"name":"QueryParamsOffset","url":"classes/checkout.shopperbaskets.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":541,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#queryparamsoffset.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.QueryParamsOffset"},{"id":542,"kind":4194304,"name":"SiteSpecific","url":"classes/checkout.shopperbaskets.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":543,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#sitespecific-1.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.SiteSpecific"},{"id":544,"kind":4194304,"name":"Selectable","url":"classes/checkout.shopperbaskets.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":545,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#selectable.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Selectable"},{"id":546,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/checkout.shopperbaskets.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":547,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.NoPropertiesAllowed"},{"id":548,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/checkout.shopperbaskets.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":549,"kind":4194304,"name":"BoolFilter","url":"classes/checkout.shopperbaskets.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":550,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/checkout.shopperbaskets.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":551,"kind":4194304,"name":"MatchAllQuery","url":"classes/checkout.shopperbaskets.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":552,"kind":4194304,"name":"FilteredQuery","url":"classes/checkout.shopperbaskets.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":553,"kind":4194304,"name":"QueryFilter","url":"classes/checkout.shopperbaskets.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":554,"kind":4194304,"name":"Query","url":"classes/checkout.shopperbaskets.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":555,"kind":4194304,"name":"TermQuery","url":"classes/checkout.shopperbaskets.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":556,"kind":4194304,"name":"TermFilter","url":"classes/checkout.shopperbaskets.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":557,"kind":4194304,"name":"TextQuery","url":"classes/checkout.shopperbaskets.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":558,"kind":4194304,"name":"Range2Filter","url":"classes/checkout.shopperbaskets.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":559,"kind":4194304,"name":"BoolQuery","url":"classes/checkout.shopperbaskets.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":560,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/checkout.shopperbaskets.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":561,"kind":4194304,"name":"NestedQuery","url":"classes/checkout.shopperbaskets.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":562,"kind":4194304,"name":"Filter","url":"classes/checkout.shopperbaskets.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":563,"kind":4194304,"name":"Sort","url":"classes/checkout.shopperbaskets.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":564,"kind":4194304,"name":"RangeFilter","url":"classes/checkout.shopperbaskets.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":565,"kind":4194304,"name":"SearchRequestBase","url":"classes/checkout.shopperbaskets.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":566,"kind":4194304,"name":"MoneyMnemonic","url":"classes/checkout.shopperbaskets.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":567,"kind":4194304,"name":"L10nString","url":"classes/checkout.shopperbaskets.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":568,"kind":4194304,"name":"AttributeDefinition","url":"classes/checkout.shopperbaskets.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":569,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.AttributeDefinition"},{"id":570,"kind":32,"name":"defaultValue","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":571,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":572,"kind":32,"name":"name","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":573,"kind":32,"name":"description","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":574,"kind":32,"name":"key","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":575,"kind":32,"name":"localizable","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":576,"kind":32,"name":"mandatory","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":577,"kind":32,"name":"max","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":578,"kind":32,"name":"minLength","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":579,"kind":32,"name":"min","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":580,"kind":32,"name":"multiValueType","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":581,"kind":32,"name":"regularExpression","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":582,"kind":32,"name":"scale","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":583,"kind":32,"name":"searchable","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":584,"kind":32,"name":"siteSpecific","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":585,"kind":32,"name":"system","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":586,"kind":32,"name":"unit","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":587,"kind":32,"name":"possibleValues","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":588,"kind":32,"name":"type","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":589,"kind":32,"name":"visible","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":590,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":591,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.PropertyValueDefinition"},{"id":592,"kind":32,"name":"description","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":593,"kind":32,"name":"displayValue","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":594,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":595,"kind":32,"name":"position","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":596,"kind":32,"name":"value","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.value-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":597,"kind":4194304,"name":"TaxItems","url":"classes/checkout.shopperbaskets.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":598,"kind":4194304,"name":"PaymentCardSpec","url":"classes/checkout.shopperbaskets.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":599,"kind":4194304,"name":"OrderAddress","url":"classes/checkout.shopperbaskets.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":600,"kind":4194304,"name":"PriceAdjustmentRequest","url":"classes/checkout.shopperbaskets.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":601,"kind":4194304,"name":"PaymentCard","url":"classes/checkout.shopperbaskets.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":602,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.PaymentCard"},{"id":603,"kind":32,"name":"cardType","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.cardtype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":604,"kind":32,"name":"creditCardExpired","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.creditcardexpired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":605,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.creditcardtoken-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":606,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.expirationmonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":607,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.expirationyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":608,"kind":32,"name":"holder","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.holder-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":609,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.issuenumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":610,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.maskednumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":611,"kind":32,"name":"numberLastDigits","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.numberlastdigits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":612,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.validfrommonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":613,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.validfromyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":614,"kind":4194304,"name":"NotesResult","url":"classes/checkout.shopperbaskets.html#notesresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":615,"kind":4194304,"name":"ShippingItem","url":"classes/checkout.shopperbaskets.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":616,"kind":4194304,"name":"Discount","url":"classes/checkout.shopperbaskets.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":617,"kind":4194304,"name":"Note","url":"classes/checkout.shopperbaskets.html#note","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":618,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#note.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Note"},{"id":619,"kind":32,"name":"createdBy","url":"classes/checkout.shopperbaskets.html#note.__type-12.createdby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":620,"kind":32,"name":"creationDate","url":"classes/checkout.shopperbaskets.html#note.__type-12.creationdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":621,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#note.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":622,"kind":32,"name":"subject","url":"classes/checkout.shopperbaskets.html#note.__type-12.subject","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":623,"kind":32,"name":"text","url":"classes/checkout.shopperbaskets.html#note.__type-12.text","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":624,"kind":4194304,"name":"CouponItem","url":"classes/checkout.shopperbaskets.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":625,"kind":4194304,"name":"PromotionLink","url":"classes/checkout.shopperbaskets.html#promotionlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":626,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.PromotionLink"},{"id":627,"kind":32,"name":"calloutMsg","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.calloutmsg","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":628,"kind":32,"name":"name","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":629,"kind":32,"name":"promotionId","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.promotionid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":630,"kind":32,"name":"title","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.title-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":631,"kind":4194304,"name":"PriceBookIds","url":"classes/checkout.shopperbaskets.html#pricebookids","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":632,"kind":4194304,"name":"ShippingPromotion","url":"classes/checkout.shopperbaskets.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":633,"kind":4194304,"name":"ProductItem","url":"classes/checkout.shopperbaskets.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":634,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"classes/checkout.shopperbaskets.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":635,"kind":4194304,"name":"Taxes","url":"classes/checkout.shopperbaskets.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":636,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#taxes.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Taxes"},{"id":637,"kind":32,"name":"taxes","url":"classes/checkout.shopperbaskets.html#taxes.__type-35.taxes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Taxes.__type"},{"id":638,"kind":4194304,"name":"OrderPaymentInstrument","url":"classes/checkout.shopperbaskets.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":639,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/checkout.shopperbaskets.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":640,"kind":4194304,"name":"PaymentMethodResult","url":"classes/checkout.shopperbaskets.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":641,"kind":4194304,"name":"Shipment","url":"classes/checkout.shopperbaskets.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":642,"kind":4194304,"name":"CustomerInfo","url":"classes/checkout.shopperbaskets.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":643,"kind":4194304,"name":"SimpleLink","url":"classes/checkout.shopperbaskets.html#simplelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":644,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#simplelink.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.SimpleLink"},{"id":645,"kind":4194304,"name":"PriceAdjustment","url":"classes/checkout.shopperbaskets.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":646,"kind":4194304,"name":"ShippingMethodResult","url":"classes/checkout.shopperbaskets.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":647,"kind":4194304,"name":"ProductDetailsLink","url":"classes/checkout.shopperbaskets.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":648,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.ProductDetailsLink"},{"id":649,"kind":32,"name":"productDescription","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.productdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":650,"kind":32,"name":"productId","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":651,"kind":32,"name":"productName","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.productname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":652,"kind":32,"name":"title","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.title","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":653,"kind":4194304,"name":"OptionItem","url":"classes/checkout.shopperbaskets.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":654,"kind":4194304,"name":"ShippingMethod","url":"classes/checkout.shopperbaskets.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":655,"kind":4194304,"name":"DiscountRequest","url":"classes/checkout.shopperbaskets.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":656,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#discountrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DiscountRequest"},{"id":657,"kind":32,"name":"type","url":"classes/checkout.shopperbaskets.html#discountrequest.__type-5.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.DiscountRequest.__type"},{"id":658,"kind":32,"name":"value","url":"classes/checkout.shopperbaskets.html#discountrequest.__type-5.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.DiscountRequest.__type"},{"id":659,"kind":4194304,"name":"Basket","url":"classes/checkout.shopperbaskets.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":660,"kind":4194304,"name":"OrderLookupRequest","url":"classes/checkout.shopperbaskets.html#orderlookuprequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":661,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#orderlookuprequest.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.OrderLookupRequest"},{"id":662,"kind":32,"name":"email","url":"classes/checkout.shopperbaskets.html#orderlookuprequest.__type-15.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderLookupRequest.__type"},{"id":663,"kind":32,"name":"orderViewCode","url":"classes/checkout.shopperbaskets.html#orderlookuprequest.__type-15.orderviewcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderLookupRequest.__type"},{"id":664,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"classes/checkout.shopperbaskets.html#orderpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":665,"kind":4194304,"name":"GiftCertificateItem","url":"classes/checkout.shopperbaskets.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":666,"kind":4194304,"name":"ProductListLink","url":"classes/checkout.shopperbaskets.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":667,"kind":4194304,"name":"GroupedTaxItem","url":"classes/checkout.shopperbaskets.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":668,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#groupedtaxitem.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.GroupedTaxItem"},{"id":669,"kind":32,"name":"taxRate","url":"classes/checkout.shopperbaskets.html#groupedtaxitem.__type-8.taxrate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.GroupedTaxItem.__type"},{"id":670,"kind":32,"name":"taxValue","url":"classes/checkout.shopperbaskets.html#groupedtaxitem.__type-8.taxvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.GroupedTaxItem.__type"},{"id":671,"kind":4194304,"name":"Order","url":"classes/checkout.shopperbaskets.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":672,"kind":4194304,"name":"OrderPaymentCardRequest","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":673,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest"},{"id":674,"kind":32,"name":"cardType","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.cardtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":675,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.creditcardtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":676,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.expirationmonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":677,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.expirationyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":678,"kind":32,"name":"holder","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.holder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":679,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.issuenumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":680,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.maskednumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":681,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.validfrommonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":682,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.validfromyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":683,"kind":4194304,"name":"PaymentMethod","url":"classes/checkout.shopperbaskets.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":684,"kind":4194304,"name":"TaxItem","url":"classes/checkout.shopperbaskets.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":685,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.TaxItem"},{"id":686,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34.id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.TaxItem.__type"},{"id":687,"kind":32,"name":"rate","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34.rate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.TaxItem.__type"},{"id":688,"kind":32,"name":"value","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34.value-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.TaxItem.__type"},{"id":689,"kind":4194304,"name":"Status","url":"classes/checkout.shopperbaskets.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":690,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#status.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Status"},{"id":691,"kind":32,"name":"code","url":"classes/checkout.shopperbaskets.html#status.__type-32.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Status.__type"},{"id":692,"kind":32,"name":"message","url":"classes/checkout.shopperbaskets.html#status.__type-32.message","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Status.__type"},{"id":693,"kind":32,"name":"status","url":"classes/checkout.shopperbaskets.html#status.__type-32.status-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Status.__type"},{"id":694,"kind":4194304,"name":"ProductListItemReference","url":"classes/checkout.shopperbaskets.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":695,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.ProductListItemReference"},{"id":696,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":697,"kind":32,"name":"priority","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.priority","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":698,"kind":32,"name":"productDetailsLink","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.productdetailslink-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":699,"kind":32,"name":"productList","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.productlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":700,"kind":32,"name":"public","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.public","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":701,"kind":32,"name":"purchasedQuantity","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.purchasedquantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":702,"kind":32,"name":"quantity","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.quantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":703,"kind":32,"name":"type","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":704,"kind":4194304,"name":"ChangeControlled","url":"classes/checkout.shopperbaskets.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":705,"kind":4194304,"name":"DateRangeFilter","url":"classes/checkout.shopperbaskets.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":706,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DateRangeFilter"},{"id":707,"kind":4194304,"name":"EtagResponse","url":"classes/checkout.shopperbaskets.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":708,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.EtagResponse"},{"id":709,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/checkout.shopperbaskets.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":710,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#integerrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.IntegerRangeFilter"},{"id":711,"kind":4194304,"name":"RateLimited3","url":"classes/checkout.shopperbaskets.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":712,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited3.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited3"},{"id":713,"kind":4194304,"name":"SyncCreated","url":"classes/checkout.shopperbaskets.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":714,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#synccreated.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.SyncCreated"},{"id":715,"kind":4194304,"name":"DateConditionalRequest","url":"classes/checkout.shopperbaskets.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":716,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DateConditionalRequest"},{"id":717,"kind":4194304,"name":"RateLimited5","url":"classes/checkout.shopperbaskets.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":718,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited5.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited5"},{"id":719,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/checkout.shopperbaskets.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":720,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.EtagConditionalRequest"},{"id":721,"kind":4194304,"name":"AsyncCreated","url":"classes/checkout.shopperbaskets.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":722,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.AsyncCreated"},{"id":723,"kind":4194304,"name":"RateLimited","url":"classes/checkout.shopperbaskets.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":724,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited"},{"id":725,"kind":4194304,"name":"RateLimited2","url":"classes/checkout.shopperbaskets.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":726,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited2"},{"id":727,"kind":4194304,"name":"OffsetPaginated","url":"classes/checkout.shopperbaskets.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":728,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.OffsetPaginated"},{"id":729,"kind":4194304,"name":"RateLimited4","url":"classes/checkout.shopperbaskets.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":730,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited4.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited4"},{"id":731,"kind":4194304,"name":"NumericRangeFilter","url":"classes/checkout.shopperbaskets.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":732,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.NumericRangeFilter"},{"id":733,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/checkout.shopperbaskets.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":734,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DatetimeRangeFilter"},{"id":735,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/checkout.shopperbaskets.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":736,"kind":4194304,"name":"Error","url":"classes/checkout.shopperbaskets.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":737,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/checkout.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":738,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/checkout.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":739,"kind":128,"name":"ShopperOrders","url":"classes/checkout.shopperorders.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"checkout"},{"id":740,"kind":512,"name":"constructor","url":"classes/checkout.shopperorders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"checkout.ShopperOrders"},{"id":741,"kind":2048,"name":"createOrder","url":"classes/checkout.shopperorders.html#createorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":742,"kind":2048,"name":"getOrder","url":"classes/checkout.shopperorders.html#getorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":743,"kind":2048,"name":"guestOrderLookup","url":"classes/checkout.shopperorders.html#guestorderlookup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":744,"kind":2048,"name":"createPaymentInstrumentForOrder","url":"classes/checkout.shopperorders.html#createpaymentinstrumentfororder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":745,"kind":2048,"name":"removePaymentInstrumentFromOrder","url":"classes/checkout.shopperorders.html#removepaymentinstrumentfromorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":746,"kind":2048,"name":"updatePaymentInstrumentForOrder","url":"classes/checkout.shopperorders.html#updatepaymentinstrumentfororder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":747,"kind":2048,"name":"getPaymentMethodsForOrder","url":"classes/checkout.shopperorders.html#getpaymentmethodsfororder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":748,"kind":2048,"name":"getTaxesFromOrder","url":"classes/checkout.shopperorders.html#gettaxesfromorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":749,"kind":1024,"name":"clientConfig","url":"classes/checkout.shopperorders.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"checkout.ShopperOrders"},{"id":750,"kind":4194304,"name":"ErrorResponse","url":"classes/checkout.shopperorders.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":751,"kind":4194304,"name":"LocaleSpecific","url":"classes/checkout.shopperorders.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":752,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#localespecific.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.LocaleSpecific"},{"id":753,"kind":4194304,"name":"Money","url":"classes/checkout.shopperorders.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":754,"kind":4194304,"name":"SimpleSearchResult","url":"classes/checkout.shopperorders.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":755,"kind":4194304,"name":"SearchRequest","url":"classes/checkout.shopperorders.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":756,"kind":4194304,"name":"PropertyDefinition","url":"classes/checkout.shopperorders.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":757,"kind":4194304,"name":"LocalizedString","url":"classes/checkout.shopperorders.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":758,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/checkout.shopperorders.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":759,"kind":4194304,"name":"ClosedObject","url":"classes/checkout.shopperorders.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":760,"kind":4194304,"name":"OpenObject","url":"classes/checkout.shopperorders.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":761,"kind":4194304,"name":"QueryParamsLimit","url":"classes/checkout.shopperorders.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":762,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#queryparamslimit.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.QueryParamsLimit"},{"id":763,"kind":4194304,"name":"QueryParamsOffset","url":"classes/checkout.shopperorders.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":764,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#queryparamsoffset.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.QueryParamsOffset"},{"id":765,"kind":4194304,"name":"SiteSpecific","url":"classes/checkout.shopperorders.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":766,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#sitespecific-1.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.SiteSpecific"},{"id":767,"kind":4194304,"name":"Selectable","url":"classes/checkout.shopperorders.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":768,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#selectable.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Selectable"},{"id":769,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/checkout.shopperorders.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":770,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.NoPropertiesAllowed"},{"id":771,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/checkout.shopperorders.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":772,"kind":4194304,"name":"BoolFilter","url":"classes/checkout.shopperorders.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":773,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/checkout.shopperorders.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":774,"kind":4194304,"name":"MatchAllQuery","url":"classes/checkout.shopperorders.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":775,"kind":4194304,"name":"FilteredQuery","url":"classes/checkout.shopperorders.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":776,"kind":4194304,"name":"QueryFilter","url":"classes/checkout.shopperorders.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":777,"kind":4194304,"name":"Query","url":"classes/checkout.shopperorders.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":778,"kind":4194304,"name":"TermQuery","url":"classes/checkout.shopperorders.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":779,"kind":4194304,"name":"TermFilter","url":"classes/checkout.shopperorders.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":780,"kind":4194304,"name":"TextQuery","url":"classes/checkout.shopperorders.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":781,"kind":4194304,"name":"Range2Filter","url":"classes/checkout.shopperorders.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":782,"kind":4194304,"name":"BoolQuery","url":"classes/checkout.shopperorders.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":783,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/checkout.shopperorders.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":784,"kind":4194304,"name":"NestedQuery","url":"classes/checkout.shopperorders.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":785,"kind":4194304,"name":"Filter","url":"classes/checkout.shopperorders.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":786,"kind":4194304,"name":"Sort","url":"classes/checkout.shopperorders.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":787,"kind":4194304,"name":"RangeFilter","url":"classes/checkout.shopperorders.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":788,"kind":4194304,"name":"SearchRequestBase","url":"classes/checkout.shopperorders.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":789,"kind":4194304,"name":"MoneyMnemonic","url":"classes/checkout.shopperorders.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":790,"kind":4194304,"name":"L10nString","url":"classes/checkout.shopperorders.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":791,"kind":4194304,"name":"AttributeDefinition","url":"classes/checkout.shopperorders.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":792,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.AttributeDefinition"},{"id":793,"kind":32,"name":"defaultValue","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":794,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":795,"kind":32,"name":"name","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":796,"kind":32,"name":"description","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":797,"kind":32,"name":"key","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":798,"kind":32,"name":"localizable","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":799,"kind":32,"name":"mandatory","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":800,"kind":32,"name":"max","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":801,"kind":32,"name":"minLength","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":802,"kind":32,"name":"min","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":803,"kind":32,"name":"multiValueType","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":804,"kind":32,"name":"regularExpression","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":805,"kind":32,"name":"scale","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":806,"kind":32,"name":"searchable","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":807,"kind":32,"name":"siteSpecific","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":808,"kind":32,"name":"system","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":809,"kind":32,"name":"unit","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":810,"kind":32,"name":"possibleValues","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":811,"kind":32,"name":"type","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":812,"kind":32,"name":"visible","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":813,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/checkout.shopperorders.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":814,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.PropertyValueDefinition"},{"id":815,"kind":32,"name":"description","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":816,"kind":32,"name":"displayValue","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":817,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":818,"kind":32,"name":"position","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":819,"kind":32,"name":"value","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.value-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":820,"kind":4194304,"name":"TaxItems","url":"classes/checkout.shopperorders.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":821,"kind":4194304,"name":"PaymentCardSpec","url":"classes/checkout.shopperorders.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":822,"kind":4194304,"name":"OrderAddress","url":"classes/checkout.shopperorders.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":823,"kind":4194304,"name":"PriceAdjustmentRequest","url":"classes/checkout.shopperorders.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":824,"kind":4194304,"name":"PaymentCard","url":"classes/checkout.shopperorders.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":825,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#paymentcard.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.PaymentCard"},{"id":826,"kind":32,"name":"cardType","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.cardtype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":827,"kind":32,"name":"creditCardExpired","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.creditcardexpired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":828,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.creditcardtoken-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":829,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.expirationmonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":830,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.expirationyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":831,"kind":32,"name":"holder","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.holder-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":832,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.issuenumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":833,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.maskednumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":834,"kind":32,"name":"numberLastDigits","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.numberlastdigits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":835,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.validfrommonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":836,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.validfromyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":837,"kind":4194304,"name":"NotesResult","url":"classes/checkout.shopperorders.html#notesresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":838,"kind":4194304,"name":"ShippingItem","url":"classes/checkout.shopperorders.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":839,"kind":4194304,"name":"Discount","url":"classes/checkout.shopperorders.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":840,"kind":4194304,"name":"Note","url":"classes/checkout.shopperorders.html#note","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":841,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#note.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Note"},{"id":842,"kind":32,"name":"createdBy","url":"classes/checkout.shopperorders.html#note.__type-12.createdby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":843,"kind":32,"name":"creationDate","url":"classes/checkout.shopperorders.html#note.__type-12.creationdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":844,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#note.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":845,"kind":32,"name":"subject","url":"classes/checkout.shopperorders.html#note.__type-12.subject","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":846,"kind":32,"name":"text","url":"classes/checkout.shopperorders.html#note.__type-12.text","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":847,"kind":4194304,"name":"CouponItem","url":"classes/checkout.shopperorders.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":848,"kind":4194304,"name":"PromotionLink","url":"classes/checkout.shopperorders.html#promotionlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":849,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#promotionlink.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.PromotionLink"},{"id":850,"kind":32,"name":"calloutMsg","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.calloutmsg","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":851,"kind":32,"name":"name","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":852,"kind":32,"name":"promotionId","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.promotionid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":853,"kind":32,"name":"title","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.title-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":854,"kind":4194304,"name":"PriceBookIds","url":"classes/checkout.shopperorders.html#pricebookids","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":855,"kind":4194304,"name":"ShippingPromotion","url":"classes/checkout.shopperorders.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":856,"kind":4194304,"name":"ProductItem","url":"classes/checkout.shopperorders.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":857,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"classes/checkout.shopperorders.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":858,"kind":4194304,"name":"Taxes","url":"classes/checkout.shopperorders.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":859,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#taxes.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Taxes"},{"id":860,"kind":32,"name":"taxes","url":"classes/checkout.shopperorders.html#taxes.__type-35.taxes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Taxes.__type"},{"id":861,"kind":4194304,"name":"OrderPaymentInstrument","url":"classes/checkout.shopperorders.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":862,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/checkout.shopperorders.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":863,"kind":4194304,"name":"PaymentMethodResult","url":"classes/checkout.shopperorders.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":864,"kind":4194304,"name":"Shipment","url":"classes/checkout.shopperorders.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":865,"kind":4194304,"name":"CustomerInfo","url":"classes/checkout.shopperorders.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":866,"kind":4194304,"name":"SimpleLink","url":"classes/checkout.shopperorders.html#simplelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":867,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#simplelink.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.SimpleLink"},{"id":868,"kind":4194304,"name":"PriceAdjustment","url":"classes/checkout.shopperorders.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":869,"kind":4194304,"name":"ShippingMethodResult","url":"classes/checkout.shopperorders.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":870,"kind":4194304,"name":"ProductDetailsLink","url":"classes/checkout.shopperorders.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":871,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.ProductDetailsLink"},{"id":872,"kind":32,"name":"productDescription","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.productdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":873,"kind":32,"name":"productId","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":874,"kind":32,"name":"productName","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.productname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":875,"kind":32,"name":"title","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.title","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":876,"kind":4194304,"name":"OptionItem","url":"classes/checkout.shopperorders.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":877,"kind":4194304,"name":"ShippingMethod","url":"classes/checkout.shopperorders.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":878,"kind":4194304,"name":"DiscountRequest","url":"classes/checkout.shopperorders.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":879,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#discountrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DiscountRequest"},{"id":880,"kind":32,"name":"type","url":"classes/checkout.shopperorders.html#discountrequest.__type-5.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.DiscountRequest.__type"},{"id":881,"kind":32,"name":"value","url":"classes/checkout.shopperorders.html#discountrequest.__type-5.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.DiscountRequest.__type"},{"id":882,"kind":4194304,"name":"Basket","url":"classes/checkout.shopperorders.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":883,"kind":4194304,"name":"OrderLookupRequest","url":"classes/checkout.shopperorders.html#orderlookuprequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":884,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#orderlookuprequest.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.OrderLookupRequest"},{"id":885,"kind":32,"name":"email","url":"classes/checkout.shopperorders.html#orderlookuprequest.__type-15.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderLookupRequest.__type"},{"id":886,"kind":32,"name":"orderViewCode","url":"classes/checkout.shopperorders.html#orderlookuprequest.__type-15.orderviewcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderLookupRequest.__type"},{"id":887,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"classes/checkout.shopperorders.html#orderpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":888,"kind":4194304,"name":"GiftCertificateItem","url":"classes/checkout.shopperorders.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":889,"kind":4194304,"name":"ProductListLink","url":"classes/checkout.shopperorders.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":890,"kind":4194304,"name":"GroupedTaxItem","url":"classes/checkout.shopperorders.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":891,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#groupedtaxitem.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.GroupedTaxItem"},{"id":892,"kind":32,"name":"taxRate","url":"classes/checkout.shopperorders.html#groupedtaxitem.__type-8.taxrate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.GroupedTaxItem.__type"},{"id":893,"kind":32,"name":"taxValue","url":"classes/checkout.shopperorders.html#groupedtaxitem.__type-8.taxvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.GroupedTaxItem.__type"},{"id":894,"kind":4194304,"name":"Order","url":"classes/checkout.shopperorders.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":895,"kind":4194304,"name":"OrderPaymentCardRequest","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":896,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.OrderPaymentCardRequest"},{"id":897,"kind":32,"name":"cardType","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.cardtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":898,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.creditcardtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":899,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.expirationmonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":900,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.expirationyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":901,"kind":32,"name":"holder","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.holder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":902,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.issuenumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":903,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.maskednumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":904,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.validfrommonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":905,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.validfromyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":906,"kind":4194304,"name":"PaymentMethod","url":"classes/checkout.shopperorders.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":907,"kind":4194304,"name":"TaxItem","url":"classes/checkout.shopperorders.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":908,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#taxitem.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.TaxItem"},{"id":909,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#taxitem.__type-34.id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.TaxItem.__type"},{"id":910,"kind":32,"name":"rate","url":"classes/checkout.shopperorders.html#taxitem.__type-34.rate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.TaxItem.__type"},{"id":911,"kind":32,"name":"value","url":"classes/checkout.shopperorders.html#taxitem.__type-34.value-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.TaxItem.__type"},{"id":912,"kind":4194304,"name":"Status","url":"classes/checkout.shopperorders.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":913,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#status.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Status"},{"id":914,"kind":32,"name":"code","url":"classes/checkout.shopperorders.html#status.__type-32.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Status.__type"},{"id":915,"kind":32,"name":"message","url":"classes/checkout.shopperorders.html#status.__type-32.message","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Status.__type"},{"id":916,"kind":32,"name":"status","url":"classes/checkout.shopperorders.html#status.__type-32.status-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Status.__type"},{"id":917,"kind":4194304,"name":"ProductListItemReference","url":"classes/checkout.shopperorders.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":918,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.ProductListItemReference"},{"id":919,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":920,"kind":32,"name":"priority","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.priority","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":921,"kind":32,"name":"productDetailsLink","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.productdetailslink-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":922,"kind":32,"name":"productList","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.productlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":923,"kind":32,"name":"public","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.public","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":924,"kind":32,"name":"purchasedQuantity","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.purchasedquantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":925,"kind":32,"name":"quantity","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.quantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":926,"kind":32,"name":"type","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":927,"kind":4194304,"name":"ChangeControlled","url":"classes/checkout.shopperorders.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":928,"kind":4194304,"name":"DateRangeFilter","url":"classes/checkout.shopperorders.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":929,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DateRangeFilter"},{"id":930,"kind":4194304,"name":"EtagResponse","url":"classes/checkout.shopperorders.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":931,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.EtagResponse"},{"id":932,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/checkout.shopperorders.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":933,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#integerrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.IntegerRangeFilter"},{"id":934,"kind":4194304,"name":"RateLimited3","url":"classes/checkout.shopperorders.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":935,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited3.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited3"},{"id":936,"kind":4194304,"name":"SyncCreated","url":"classes/checkout.shopperorders.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":937,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#synccreated.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.SyncCreated"},{"id":938,"kind":4194304,"name":"DateConditionalRequest","url":"classes/checkout.shopperorders.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":939,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DateConditionalRequest"},{"id":940,"kind":4194304,"name":"RateLimited5","url":"classes/checkout.shopperorders.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":941,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited5.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited5"},{"id":942,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/checkout.shopperorders.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":943,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.EtagConditionalRequest"},{"id":944,"kind":4194304,"name":"AsyncCreated","url":"classes/checkout.shopperorders.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":945,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.AsyncCreated"},{"id":946,"kind":4194304,"name":"RateLimited","url":"classes/checkout.shopperorders.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":947,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited"},{"id":948,"kind":4194304,"name":"RateLimited2","url":"classes/checkout.shopperorders.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":949,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited2"},{"id":950,"kind":4194304,"name":"OffsetPaginated","url":"classes/checkout.shopperorders.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":951,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.OffsetPaginated"},{"id":952,"kind":4194304,"name":"RateLimited4","url":"classes/checkout.shopperorders.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":953,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited4.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited4"},{"id":954,"kind":4194304,"name":"NumericRangeFilter","url":"classes/checkout.shopperorders.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":955,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.NumericRangeFilter"},{"id":956,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/checkout.shopperorders.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":957,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DatetimeRangeFilter"},{"id":958,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/checkout.shopperorders.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":959,"kind":4194304,"name":"Error","url":"classes/checkout.shopperorders.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":960,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/checkout.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":961,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/checkout.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":962,"kind":1,"name":"customer","url":"modules/customer.html","classes":"tsd-kind-module"},{"id":963,"kind":128,"name":"Customers","url":"classes/customer.customers.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":964,"kind":512,"name":"constructor","url":"classes/customer.customers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.Customers"},{"id":965,"kind":2048,"name":"searchCustomerInCustomerList","url":"classes/customer.customers.html#searchcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":966,"kind":2048,"name":"createCustomerList","url":"classes/customer.customers.html#createcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":967,"kind":2048,"name":"deleteCustomerFromCustomerList","url":"classes/customer.customers.html#deletecustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":968,"kind":2048,"name":"getCustomerFromCustomerList","url":"classes/customer.customers.html#getcustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":969,"kind":2048,"name":"updateCustomerInCustomerList","url":"classes/customer.customers.html#updatecustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":970,"kind":2048,"name":"createCustomerInCustomerList","url":"classes/customer.customers.html#createcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":971,"kind":2048,"name":"getAddressesForCustomerFromCustomerList","url":"classes/customer.customers.html#getaddressesforcustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":972,"kind":2048,"name":"createAddressForCustomerInCustomerList","url":"classes/customer.customers.html#createaddressforcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":973,"kind":2048,"name":"getAddressForCustomerFromCustomerList","url":"classes/customer.customers.html#getaddressforcustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":974,"kind":2048,"name":"removeAddressForCustomerInCustomerList","url":"classes/customer.customers.html#removeaddressforcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":975,"kind":2048,"name":"updateAddressForCustomerInCustomerList","url":"classes/customer.customers.html#updateaddressforcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":976,"kind":2048,"name":"searchCustomerGroup","url":"classes/customer.customers.html#searchcustomergroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":977,"kind":1024,"name":"clientConfig","url":"classes/customer.customers.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.Customers"},{"id":978,"kind":4194304,"name":"CustomerAddress","url":"classes/customer.customers.html#customeraddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":979,"kind":4194304,"name":"CustomerGroupSearchResult","url":"classes/customer.customers.html#customergroupsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":980,"kind":4194304,"name":"CustomerList","url":"classes/customer.customers.html#customerlist","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":981,"kind":4194304,"name":"CustomerSearchHit","url":"classes/customer.customers.html#customersearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":982,"kind":4194304,"name":"CustomerGroup","url":"classes/customer.customers.html#customergroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":983,"kind":4194304,"name":"CustomerAddressResult","url":"classes/customer.customers.html#customeraddressresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":984,"kind":4194304,"name":"Customer","url":"classes/customer.customers.html#customer","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":985,"kind":4194304,"name":"CustomerGroupRule","url":"classes/customer.customers.html#customergrouprule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":986,"kind":4194304,"name":"Credentials","url":"classes/customer.customers.html#credentials","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":987,"kind":4194304,"name":"CustomerSearchResult","url":"classes/customer.customers.html#customersearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":988,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.customers.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":989,"kind":4194304,"name":"NotFound","url":"classes/customer.customers.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":990,"kind":65536,"name":"__type","url":"classes/customer.customers.html#notfound.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.NotFound"},{"id":991,"kind":4194304,"name":"Forbidden","url":"classes/customer.customers.html#forbidden","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":992,"kind":65536,"name":"__type","url":"classes/customer.customers.html#forbidden.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.Forbidden"},{"id":993,"kind":4194304,"name":"BadRequest","url":"classes/customer.customers.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":994,"kind":65536,"name":"__type","url":"classes/customer.customers.html#badrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.BadRequest"},{"id":995,"kind":4194304,"name":"CustomerGroupSearchBadRequest","url":"classes/customer.customers.html#customergroupsearchbadrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":996,"kind":65536,"name":"__type","url":"classes/customer.customers.html#customergroupsearchbadrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.CustomerGroupSearchBadRequest"},{"id":997,"kind":4194304,"name":"AlreadyExists","url":"classes/customer.customers.html#alreadyexists","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":998,"kind":65536,"name":"__type","url":"classes/customer.customers.html#alreadyexists.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.AlreadyExists"},{"id":999,"kind":4194304,"name":"Unauthorized","url":"classes/customer.customers.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1000,"kind":65536,"name":"__type","url":"classes/customer.customers.html#unauthorized.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.Unauthorized"},{"id":1001,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.customers.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1002,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.customers.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1003,"kind":65536,"name":"__type","url":"classes/customer.customers.html#daterangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.DateRangeFilter"},{"id":1004,"kind":4194304,"name":"EtagResponse","url":"classes/customer.customers.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1005,"kind":65536,"name":"__type","url":"classes/customer.customers.html#etagresponse.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.EtagResponse"},{"id":1006,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.customers.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1007,"kind":65536,"name":"__type","url":"classes/customer.customers.html#integerrangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.IntegerRangeFilter"},{"id":1008,"kind":4194304,"name":"RateLimited3","url":"classes/customer.customers.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1009,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited3.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited3"},{"id":1010,"kind":4194304,"name":"SyncCreated","url":"classes/customer.customers.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1011,"kind":65536,"name":"__type","url":"classes/customer.customers.html#synccreated.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.SyncCreated"},{"id":1012,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.customers.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1013,"kind":65536,"name":"__type","url":"classes/customer.customers.html#dateconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.DateConditionalRequest"},{"id":1014,"kind":4194304,"name":"RateLimited5","url":"classes/customer.customers.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1015,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited5.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited5"},{"id":1016,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.customers.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1017,"kind":65536,"name":"__type","url":"classes/customer.customers.html#etagconditionalrequest.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.EtagConditionalRequest"},{"id":1018,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.customers.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1019,"kind":65536,"name":"__type","url":"classes/customer.customers.html#asynccreated.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.AsyncCreated"},{"id":1020,"kind":4194304,"name":"RateLimited","url":"classes/customer.customers.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1021,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited"},{"id":1022,"kind":4194304,"name":"RateLimited2","url":"classes/customer.customers.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1023,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited2"},{"id":1024,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.customers.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1025,"kind":65536,"name":"__type","url":"classes/customer.customers.html#offsetpaginated.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.OffsetPaginated"},{"id":1026,"kind":4194304,"name":"RangeFilter","url":"classes/customer.customers.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1027,"kind":65536,"name":"__type","url":"classes/customer.customers.html#rangefilter.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RangeFilter"},{"id":1028,"kind":4194304,"name":"RateLimited4","url":"classes/customer.customers.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1029,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited4.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited4"},{"id":1030,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.customers.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1031,"kind":65536,"name":"__type","url":"classes/customer.customers.html#numericrangefilter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.NumericRangeFilter"},{"id":1032,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.customers.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1033,"kind":65536,"name":"__type","url":"classes/customer.customers.html#datetimerangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.DatetimeRangeFilter"},{"id":1034,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.customers.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1035,"kind":4194304,"name":"Error","url":"classes/customer.customers.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1036,"kind":4194304,"name":"Money","url":"classes/customer.customers.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1037,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.customers.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1038,"kind":4194304,"name":"SearchRequest","url":"classes/customer.customers.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1039,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.customers.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1040,"kind":4194304,"name":"LocalizedString","url":"classes/customer.customers.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1041,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.customers.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1042,"kind":4194304,"name":"ClosedObject","url":"classes/customer.customers.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1043,"kind":4194304,"name":"OpenObject","url":"classes/customer.customers.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1044,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.customers.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1045,"kind":65536,"name":"__type","url":"classes/customer.customers.html#queryparamslimit.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.QueryParamsLimit"},{"id":1046,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.customers.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1047,"kind":65536,"name":"__type","url":"classes/customer.customers.html#queryparamsoffset.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.QueryParamsOffset"},{"id":1048,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.customers.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1049,"kind":65536,"name":"__type","url":"classes/customer.customers.html#sitespecific-1.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.SiteSpecific"},{"id":1050,"kind":4194304,"name":"Selectable","url":"classes/customer.customers.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1051,"kind":65536,"name":"__type","url":"classes/customer.customers.html#selectable.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.Selectable"},{"id":1052,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.customers.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1053,"kind":65536,"name":"__type","url":"classes/customer.customers.html#nopropertiesallowed.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.NoPropertiesAllowed"},{"id":1054,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.customers.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1055,"kind":4194304,"name":"BoolFilter","url":"classes/customer.customers.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1056,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.customers.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1057,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.customers.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1058,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.customers.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1059,"kind":4194304,"name":"QueryFilter","url":"classes/customer.customers.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1060,"kind":4194304,"name":"Query","url":"classes/customer.customers.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1061,"kind":4194304,"name":"TermQuery","url":"classes/customer.customers.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1062,"kind":4194304,"name":"TermFilter","url":"classes/customer.customers.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1063,"kind":4194304,"name":"TextQuery","url":"classes/customer.customers.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1064,"kind":4194304,"name":"Range2Filter","url":"classes/customer.customers.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1065,"kind":4194304,"name":"BoolQuery","url":"classes/customer.customers.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1066,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.customers.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1067,"kind":4194304,"name":"NestedQuery","url":"classes/customer.customers.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1068,"kind":4194304,"name":"Filter","url":"classes/customer.customers.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1069,"kind":4194304,"name":"Sort","url":"classes/customer.customers.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1070,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.customers.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1071,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.customers.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1072,"kind":4194304,"name":"L10nString","url":"classes/customer.customers.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1073,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.customers.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1074,"kind":65536,"name":"__type","url":"classes/customer.customers.html#attributedefinition.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.AttributeDefinition"},{"id":1075,"kind":32,"name":"defaultValue","url":"classes/customer.customers.html#attributedefinition.__type-2.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1076,"kind":32,"name":"id","url":"classes/customer.customers.html#attributedefinition.__type-2.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1077,"kind":32,"name":"name","url":"classes/customer.customers.html#attributedefinition.__type-2.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1078,"kind":32,"name":"description","url":"classes/customer.customers.html#attributedefinition.__type-2.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1079,"kind":32,"name":"key","url":"classes/customer.customers.html#attributedefinition.__type-2.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1080,"kind":32,"name":"localizable","url":"classes/customer.customers.html#attributedefinition.__type-2.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1081,"kind":32,"name":"mandatory","url":"classes/customer.customers.html#attributedefinition.__type-2.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1082,"kind":32,"name":"max","url":"classes/customer.customers.html#attributedefinition.__type-2.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1083,"kind":32,"name":"minLength","url":"classes/customer.customers.html#attributedefinition.__type-2.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1084,"kind":32,"name":"min","url":"classes/customer.customers.html#attributedefinition.__type-2.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1085,"kind":32,"name":"multiValueType","url":"classes/customer.customers.html#attributedefinition.__type-2.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1086,"kind":32,"name":"regularExpression","url":"classes/customer.customers.html#attributedefinition.__type-2.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1087,"kind":32,"name":"scale","url":"classes/customer.customers.html#attributedefinition.__type-2.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1088,"kind":32,"name":"searchable","url":"classes/customer.customers.html#attributedefinition.__type-2.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1089,"kind":32,"name":"siteSpecific","url":"classes/customer.customers.html#attributedefinition.__type-2.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1090,"kind":32,"name":"system","url":"classes/customer.customers.html#attributedefinition.__type-2.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1091,"kind":32,"name":"unit","url":"classes/customer.customers.html#attributedefinition.__type-2.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1092,"kind":32,"name":"possibleValues","url":"classes/customer.customers.html#attributedefinition.__type-2.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1093,"kind":32,"name":"type","url":"classes/customer.customers.html#attributedefinition.__type-2.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1094,"kind":32,"name":"visible","url":"classes/customer.customers.html#attributedefinition.__type-2.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1095,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.customers.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1096,"kind":65536,"name":"__type","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.PropertyValueDefinition"},{"id":1097,"kind":32,"name":"description","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1098,"kind":32,"name":"displayValue","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1099,"kind":32,"name":"id","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1100,"kind":32,"name":"position","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1101,"kind":32,"name":"value","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1102,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1103,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1104,"kind":128,"name":"ShopperContext","url":"classes/customer.shoppercontext.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1105,"kind":512,"name":"constructor","url":"classes/customer.shoppercontext.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperContext"},{"id":1106,"kind":2048,"name":"getShopperContext","url":"classes/customer.shoppercontext.html#getshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1107,"kind":2048,"name":"createShopperContext","url":"classes/customer.shoppercontext.html#createshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1108,"kind":2048,"name":"deleteShopperContext","url":"classes/customer.shoppercontext.html#deleteshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1109,"kind":2048,"name":"updateShopperContext","url":"classes/customer.shoppercontext.html#updateshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1110,"kind":1024,"name":"clientConfig","url":"classes/customer.shoppercontext.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperContext"},{"id":1111,"kind":4194304,"name":"ShopperContext","url":"classes/customer.shoppercontext.html#shoppercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1112,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shoppercontext.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1113,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shoppercontext.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1114,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shoppercontext.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1115,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.DateRangeFilter"},{"id":1116,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shoppercontext.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1117,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.EtagResponse"},{"id":1118,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shoppercontext.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1119,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.IntegerRangeFilter"},{"id":1120,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shoppercontext.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1121,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited3.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited3"},{"id":1122,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shoppercontext.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1123,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#synccreated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.SyncCreated"},{"id":1124,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shoppercontext.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1125,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.DateConditionalRequest"},{"id":1126,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shoppercontext.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1127,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited5.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited5"},{"id":1128,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shoppercontext.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1129,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.EtagConditionalRequest"},{"id":1130,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shoppercontext.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1131,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.AsyncCreated"},{"id":1132,"kind":4194304,"name":"RateLimited","url":"classes/customer.shoppercontext.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1133,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited"},{"id":1134,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shoppercontext.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1135,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited2"},{"id":1136,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shoppercontext.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1137,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.OffsetPaginated"},{"id":1138,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shoppercontext.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1139,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#rangefilter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RangeFilter"},{"id":1140,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shoppercontext.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1141,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited4.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited4"},{"id":1142,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shoppercontext.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1143,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.NumericRangeFilter"},{"id":1144,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shoppercontext.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1145,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.DatetimeRangeFilter"},{"id":1146,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shoppercontext.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1147,"kind":4194304,"name":"Error","url":"classes/customer.shoppercontext.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1148,"kind":4194304,"name":"Money","url":"classes/customer.shoppercontext.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1149,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shoppercontext.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1150,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shoppercontext.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1151,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shoppercontext.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1152,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shoppercontext.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1153,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shoppercontext.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1154,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shoppercontext.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1155,"kind":4194304,"name":"OpenObject","url":"classes/customer.shoppercontext.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1156,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shoppercontext.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1157,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#queryparamslimit.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.QueryParamsLimit"},{"id":1158,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shoppercontext.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1159,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#queryparamsoffset.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.QueryParamsOffset"},{"id":1160,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shoppercontext.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1161,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#sitespecific-1.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.SiteSpecific"},{"id":1162,"kind":4194304,"name":"Selectable","url":"classes/customer.shoppercontext.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1163,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#selectable.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.Selectable"},{"id":1164,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shoppercontext.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1165,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.NoPropertiesAllowed"},{"id":1166,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shoppercontext.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1167,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shoppercontext.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1168,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shoppercontext.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1169,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shoppercontext.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1170,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shoppercontext.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1171,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shoppercontext.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1172,"kind":4194304,"name":"Query","url":"classes/customer.shoppercontext.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1173,"kind":4194304,"name":"TermQuery","url":"classes/customer.shoppercontext.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1174,"kind":4194304,"name":"TermFilter","url":"classes/customer.shoppercontext.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1175,"kind":4194304,"name":"TextQuery","url":"classes/customer.shoppercontext.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1176,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shoppercontext.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1177,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shoppercontext.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1178,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shoppercontext.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1179,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shoppercontext.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1180,"kind":4194304,"name":"Filter","url":"classes/customer.shoppercontext.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1181,"kind":4194304,"name":"Sort","url":"classes/customer.shoppercontext.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1182,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shoppercontext.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1183,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shoppercontext.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1184,"kind":4194304,"name":"L10nString","url":"classes/customer.shoppercontext.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1185,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shoppercontext.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1186,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.AttributeDefinition"},{"id":1187,"kind":32,"name":"defaultValue","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1188,"kind":32,"name":"id","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1189,"kind":32,"name":"name","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1190,"kind":32,"name":"description","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1191,"kind":32,"name":"key","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1192,"kind":32,"name":"localizable","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1193,"kind":32,"name":"mandatory","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1194,"kind":32,"name":"max","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1195,"kind":32,"name":"minLength","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1196,"kind":32,"name":"min","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1197,"kind":32,"name":"multiValueType","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1198,"kind":32,"name":"regularExpression","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1199,"kind":32,"name":"scale","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1200,"kind":32,"name":"searchable","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1201,"kind":32,"name":"siteSpecific","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1202,"kind":32,"name":"system","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1203,"kind":32,"name":"unit","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1204,"kind":32,"name":"possibleValues","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1205,"kind":32,"name":"type","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1206,"kind":32,"name":"visible","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1207,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shoppercontext.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1208,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.PropertyValueDefinition"},{"id":1209,"kind":32,"name":"description","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1210,"kind":32,"name":"displayValue","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1211,"kind":32,"name":"id","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1212,"kind":32,"name":"position","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1213,"kind":32,"name":"value","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1214,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1215,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1216,"kind":128,"name":"ShopperCustomers","url":"classes/customer.shoppercustomers.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1217,"kind":512,"name":"constructor","url":"classes/customer.shoppercustomers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperCustomers"},{"id":1218,"kind":2048,"name":"registerCustomer","url":"classes/customer.shoppercustomers.html#registercustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1219,"kind":2048,"name":"resetPassword","url":"classes/customer.shoppercustomers.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1220,"kind":2048,"name":"getResetPasswordToken","url":"classes/customer.shoppercustomers.html#getresetpasswordtoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1221,"kind":2048,"name":"registerExternalProfile","url":"classes/customer.shoppercustomers.html#registerexternalprofile","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1222,"kind":2048,"name":"getExternalProfile","url":"classes/customer.shoppercustomers.html#getexternalprofile","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1223,"kind":2048,"name":"getCustomer","url":"classes/customer.shoppercustomers.html#getcustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1224,"kind":2048,"name":"updateCustomer","url":"classes/customer.shoppercustomers.html#updatecustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1225,"kind":2048,"name":"createCustomerAddress","url":"classes/customer.shoppercustomers.html#createcustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1226,"kind":2048,"name":"getCustomerAddress","url":"classes/customer.shoppercustomers.html#getcustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1227,"kind":2048,"name":"removeCustomerAddress","url":"classes/customer.shoppercustomers.html#removecustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1228,"kind":2048,"name":"updateCustomerAddress","url":"classes/customer.shoppercustomers.html#updatecustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1229,"kind":2048,"name":"getCustomerBaskets","url":"classes/customer.shoppercustomers.html#getcustomerbaskets","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1230,"kind":2048,"name":"getCustomerOrders","url":"classes/customer.shoppercustomers.html#getcustomerorders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1231,"kind":2048,"name":"updateCustomerPassword","url":"classes/customer.shoppercustomers.html#updatecustomerpassword","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1232,"kind":2048,"name":"createCustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#createcustomerpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1233,"kind":2048,"name":"deleteCustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#deletecustomerpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1234,"kind":2048,"name":"getCustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#getcustomerpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1235,"kind":2048,"name":"getCustomerProductLists","url":"classes/customer.shoppercustomers.html#getcustomerproductlists","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1236,"kind":2048,"name":"createCustomerProductList","url":"classes/customer.shoppercustomers.html#createcustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1237,"kind":2048,"name":"deleteCustomerProductList","url":"classes/customer.shoppercustomers.html#deletecustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1238,"kind":2048,"name":"getCustomerProductList","url":"classes/customer.shoppercustomers.html#getcustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1239,"kind":2048,"name":"updateCustomerProductList","url":"classes/customer.shoppercustomers.html#updatecustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1240,"kind":2048,"name":"createCustomerProductListItem","url":"classes/customer.shoppercustomers.html#createcustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1241,"kind":2048,"name":"deleteCustomerProductListItem","url":"classes/customer.shoppercustomers.html#deletecustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1242,"kind":2048,"name":"getCustomerProductListItem","url":"classes/customer.shoppercustomers.html#getcustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1243,"kind":2048,"name":"updateCustomerProductListItem","url":"classes/customer.shoppercustomers.html#updatecustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1244,"kind":2048,"name":"getPublicProductListsBySearchTerm","url":"classes/customer.shoppercustomers.html#getpublicproductlistsbysearchterm","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1245,"kind":2048,"name":"getPublicProductList","url":"classes/customer.shoppercustomers.html#getpublicproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1246,"kind":2048,"name":"getProductListItem","url":"classes/customer.shoppercustomers.html#getproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1247,"kind":1024,"name":"clientConfig","url":"classes/customer.shoppercustomers.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperCustomers"},{"id":1248,"kind":4194304,"name":"CustomerAddress","url":"classes/customer.shoppercustomers.html#customeraddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1249,"kind":4194304,"name":"CustomerProductListResult","url":"classes/customer.shoppercustomers.html#customerproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1250,"kind":4194304,"name":"CustomerProductListItemPurchase","url":"classes/customer.shoppercustomers.html#customerproductlistitempurchase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1251,"kind":4194304,"name":"OptionValue","url":"classes/customer.shoppercustomers.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1252,"kind":4194304,"name":"Master","url":"classes/customer.shoppercustomers.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1253,"kind":4194304,"name":"OrderAddress","url":"classes/customer.shoppercustomers.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1254,"kind":4194304,"name":"PublicProductListResult","url":"classes/customer.shoppercustomers.html#publicproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1255,"kind":4194304,"name":"BasketsResult","url":"classes/customer.shoppercustomers.html#basketsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1256,"kind":4194304,"name":"TrustedSystemAuthRequest","url":"classes/customer.shoppercustomers.html#trustedsystemauthrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1257,"kind":4194304,"name":"ResetPasswordRequest","url":"classes/customer.shoppercustomers.html#resetpasswordrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1258,"kind":4194304,"name":"PaymentCard","url":"classes/customer.shoppercustomers.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1259,"kind":4194304,"name":"ShippingItem","url":"classes/customer.shoppercustomers.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1260,"kind":4194304,"name":"Discount","url":"classes/customer.shoppercustomers.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1261,"kind":4194304,"name":"ResetPasswordToken","url":"classes/customer.shoppercustomers.html#resetpasswordtoken","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1262,"kind":4194304,"name":"CouponItem","url":"classes/customer.shoppercustomers.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1263,"kind":4194304,"name":"ShippingPromotion","url":"classes/customer.shoppercustomers.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1264,"kind":4194304,"name":"VariationAttribute","url":"classes/customer.shoppercustomers.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1265,"kind":4194304,"name":"ProductListShippingAddress","url":"classes/customer.shoppercustomers.html#productlistshippingaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1266,"kind":4194304,"name":"ProductItem","url":"classes/customer.shoppercustomers.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1267,"kind":4194304,"name":"CustomerProductListRegistrant","url":"classes/customer.shoppercustomers.html#customerproductlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1268,"kind":4194304,"name":"PublicProductListInfo","url":"classes/customer.shoppercustomers.html#publicproductlistinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1269,"kind":4194304,"name":"CustomerPaymentCardRequest","url":"classes/customer.shoppercustomers.html#customerpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1270,"kind":4194304,"name":"RecommendationType","url":"classes/customer.shoppercustomers.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1271,"kind":4194304,"name":"OrderPaymentInstrument","url":"classes/customer.shoppercustomers.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1272,"kind":4194304,"name":"ProductType","url":"classes/customer.shoppercustomers.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1273,"kind":4194304,"name":"PaymentBankAccount","url":"classes/customer.shoppercustomers.html#paymentbankaccount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1274,"kind":4194304,"name":"Recommendation","url":"classes/customer.shoppercustomers.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1275,"kind":4194304,"name":"Variant","url":"classes/customer.shoppercustomers.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1276,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/customer.shoppercustomers.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1277,"kind":4194304,"name":"CustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#customerpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1278,"kind":4194304,"name":"Shipment","url":"classes/customer.shoppercustomers.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1279,"kind":4194304,"name":"CustomerInfo","url":"classes/customer.shoppercustomers.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1280,"kind":4194304,"name":"VariationGroup","url":"classes/customer.shoppercustomers.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1281,"kind":4194304,"name":"SimpleLink","url":"classes/customer.shoppercustomers.html#simplelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1282,"kind":4194304,"name":"PaymentBankAccountRequest","url":"classes/customer.shoppercustomers.html#paymentbankaccountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1283,"kind":4194304,"name":"PriceAdjustment","url":"classes/customer.shoppercustomers.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1284,"kind":4194304,"name":"PublicProductListItem","url":"classes/customer.shoppercustomers.html#publicproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1285,"kind":4194304,"name":"ProductDetailsLink","url":"classes/customer.shoppercustomers.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1286,"kind":4194304,"name":"ProductLink","url":"classes/customer.shoppercustomers.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1287,"kind":4194304,"name":"OptionItem","url":"classes/customer.shoppercustomers.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1288,"kind":4194304,"name":"ShippingMethod","url":"classes/customer.shoppercustomers.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1289,"kind":4194304,"name":"ProductListEvent","url":"classes/customer.shoppercustomers.html#productlistevent","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1290,"kind":4194304,"name":"PasswordChangeRequest","url":"classes/customer.shoppercustomers.html#passwordchangerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1291,"kind":4194304,"name":"AuthRequest","url":"classes/customer.shoppercustomers.html#authrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1292,"kind":4194304,"name":"Inventory","url":"classes/customer.shoppercustomers.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1293,"kind":4194304,"name":"CustomerProductList","url":"classes/customer.shoppercustomers.html#customerproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1294,"kind":4194304,"name":"Basket","url":"classes/customer.shoppercustomers.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1295,"kind":4194304,"name":"CustomerPaymentInstrumentRequest","url":"classes/customer.shoppercustomers.html#customerpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1296,"kind":4194304,"name":"ImageGroup","url":"classes/customer.shoppercustomers.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1297,"kind":4194304,"name":"CustomerRegistration","url":"classes/customer.shoppercustomers.html#customerregistration","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1298,"kind":4194304,"name":"Customer","url":"classes/customer.shoppercustomers.html#customer","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1299,"kind":4194304,"name":"PublicProductList","url":"classes/customer.shoppercustomers.html#publicproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1300,"kind":4194304,"name":"Option","url":"classes/customer.shoppercustomers.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1301,"kind":4194304,"name":"CustomerOrderResult","url":"classes/customer.shoppercustomers.html#customerorderresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1302,"kind":4194304,"name":"CustomerExtProfileRequest","url":"classes/customer.shoppercustomers.html#customerextprofilerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1303,"kind":4194304,"name":"GiftCertificateItem","url":"classes/customer.shoppercustomers.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1304,"kind":4194304,"name":"CustomerExternalProfile","url":"classes/customer.shoppercustomers.html#customerexternalprofile","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1305,"kind":4194304,"name":"CustomerAddressInfo","url":"classes/customer.shoppercustomers.html#customeraddressinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1306,"kind":4194304,"name":"ResetPasswordTokenRequest","url":"classes/customer.shoppercustomers.html#resetpasswordtokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1307,"kind":4194304,"name":"ProductListLink","url":"classes/customer.shoppercustomers.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1308,"kind":4194304,"name":"GroupedTaxItem","url":"classes/customer.shoppercustomers.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1309,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#groupedtaxitem.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.GroupedTaxItem"},{"id":1310,"kind":32,"name":"taxRate","url":"classes/customer.shoppercustomers.html#groupedtaxitem.__type-11.taxrate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.GroupedTaxItem.__type"},{"id":1311,"kind":32,"name":"taxValue","url":"classes/customer.shoppercustomers.html#groupedtaxitem.__type-11.taxvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.GroupedTaxItem.__type"},{"id":1312,"kind":4194304,"name":"ProductListRegistrant","url":"classes/customer.shoppercustomers.html#productlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1313,"kind":4194304,"name":"Order","url":"classes/customer.shoppercustomers.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1314,"kind":4194304,"name":"Product","url":"classes/customer.shoppercustomers.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1315,"kind":4194304,"name":"Image","url":"classes/customer.shoppercustomers.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1316,"kind":4194304,"name":"VariationAttributeValue","url":"classes/customer.shoppercustomers.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1317,"kind":4194304,"name":"ProductPromotion","url":"classes/customer.shoppercustomers.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1318,"kind":4194304,"name":"BundledProduct","url":"classes/customer.shoppercustomers.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1319,"kind":4194304,"name":"Status","url":"classes/customer.shoppercustomers.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1320,"kind":4194304,"name":"CustomerProductListItem","url":"classes/customer.shoppercustomers.html#customerproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1321,"kind":4194304,"name":"ProductListItemReference","url":"classes/customer.shoppercustomers.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1322,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shoppercustomers.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1323,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shoppercustomers.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1324,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shoppercustomers.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1325,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#daterangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.DateRangeFilter"},{"id":1326,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shoppercustomers.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1327,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#etagresponse.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.EtagResponse"},{"id":1328,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shoppercustomers.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1329,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#integerrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.IntegerRangeFilter"},{"id":1330,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shoppercustomers.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1331,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited3.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited3"},{"id":1332,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shoppercustomers.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1333,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#synccreated.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.SyncCreated"},{"id":1334,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shoppercustomers.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1335,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#dateconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.DateConditionalRequest"},{"id":1336,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shoppercustomers.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1337,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited5.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited5"},{"id":1338,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shoppercustomers.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1339,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#etagconditionalrequest.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.EtagConditionalRequest"},{"id":1340,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shoppercustomers.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1341,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.AsyncCreated"},{"id":1342,"kind":4194304,"name":"RateLimited","url":"classes/customer.shoppercustomers.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1343,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited"},{"id":1344,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shoppercustomers.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1345,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited2"},{"id":1346,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shoppercustomers.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1347,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#offsetpaginated.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.OffsetPaginated"},{"id":1348,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shoppercustomers.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1349,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#rangefilter.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RangeFilter"},{"id":1350,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shoppercustomers.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1351,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited4.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited4"},{"id":1352,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shoppercustomers.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1353,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#numericrangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.NumericRangeFilter"},{"id":1354,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shoppercustomers.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1355,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#datetimerangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.DatetimeRangeFilter"},{"id":1356,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shoppercustomers.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1357,"kind":4194304,"name":"Error","url":"classes/customer.shoppercustomers.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1358,"kind":4194304,"name":"CustomerAuthenticationFailed","url":"classes/customer.shoppercustomers.html#customerauthenticationfailed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1359,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#customerauthenticationfailed.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.CustomerAuthenticationFailed"},{"id":1360,"kind":4194304,"name":"NotFound","url":"classes/customer.shoppercustomers.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1361,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#notfound.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.NotFound"},{"id":1362,"kind":4194304,"name":"BadRequest","url":"classes/customer.shoppercustomers.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1363,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.BadRequest"},{"id":1364,"kind":4194304,"name":"CustomerExtProfileNotFound","url":"classes/customer.shoppercustomers.html#customerextprofilenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1365,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#customerextprofilenotfound.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.CustomerExtProfileNotFound"},{"id":1366,"kind":4194304,"name":"Unauthorized","url":"classes/customer.shoppercustomers.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1367,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#unauthorized.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.Unauthorized"},{"id":1368,"kind":4194304,"name":"CustomerExtProfileBadRequest","url":"classes/customer.shoppercustomers.html#customerextprofilebadrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1369,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#customerextprofilebadrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.CustomerExtProfileBadRequest"},{"id":1370,"kind":4194304,"name":"Money","url":"classes/customer.shoppercustomers.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1371,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shoppercustomers.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1372,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shoppercustomers.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1373,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shoppercustomers.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1374,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shoppercustomers.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1375,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shoppercustomers.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1376,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shoppercustomers.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1377,"kind":4194304,"name":"OpenObject","url":"classes/customer.shoppercustomers.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1378,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shoppercustomers.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1379,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#queryparamslimit.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.QueryParamsLimit"},{"id":1380,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shoppercustomers.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1381,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#queryparamsoffset.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.QueryParamsOffset"},{"id":1382,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shoppercustomers.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1383,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#sitespecific-1.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.SiteSpecific"},{"id":1384,"kind":4194304,"name":"Selectable","url":"classes/customer.shoppercustomers.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1385,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#selectable.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.Selectable"},{"id":1386,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shoppercustomers.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1387,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#nopropertiesallowed.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.NoPropertiesAllowed"},{"id":1388,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shoppercustomers.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1389,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shoppercustomers.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1390,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shoppercustomers.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1391,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shoppercustomers.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1392,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shoppercustomers.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1393,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shoppercustomers.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1394,"kind":4194304,"name":"Query","url":"classes/customer.shoppercustomers.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1395,"kind":4194304,"name":"TermQuery","url":"classes/customer.shoppercustomers.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1396,"kind":4194304,"name":"TermFilter","url":"classes/customer.shoppercustomers.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1397,"kind":4194304,"name":"TextQuery","url":"classes/customer.shoppercustomers.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1398,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shoppercustomers.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1399,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shoppercustomers.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1400,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shoppercustomers.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1401,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shoppercustomers.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1402,"kind":4194304,"name":"Filter","url":"classes/customer.shoppercustomers.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1403,"kind":4194304,"name":"Sort","url":"classes/customer.shoppercustomers.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1404,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shoppercustomers.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1405,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shoppercustomers.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1406,"kind":4194304,"name":"L10nString","url":"classes/customer.shoppercustomers.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1407,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shoppercustomers.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1408,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.AttributeDefinition"},{"id":1409,"kind":32,"name":"defaultValue","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1410,"kind":32,"name":"id","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1411,"kind":32,"name":"name","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1412,"kind":32,"name":"description","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1413,"kind":32,"name":"key","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1414,"kind":32,"name":"localizable","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1415,"kind":32,"name":"mandatory","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1416,"kind":32,"name":"max","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1417,"kind":32,"name":"minLength","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1418,"kind":32,"name":"min","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1419,"kind":32,"name":"multiValueType","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1420,"kind":32,"name":"regularExpression","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1421,"kind":32,"name":"scale","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1422,"kind":32,"name":"searchable","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1423,"kind":32,"name":"siteSpecific","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1424,"kind":32,"name":"system","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1425,"kind":32,"name":"unit","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1426,"kind":32,"name":"possibleValues","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1427,"kind":32,"name":"type","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1428,"kind":32,"name":"visible","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1429,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1430,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.PropertyValueDefinition"},{"id":1431,"kind":32,"name":"description","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1432,"kind":32,"name":"displayValue","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1433,"kind":32,"name":"id","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1434,"kind":32,"name":"position","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1435,"kind":32,"name":"value","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1436,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1437,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1438,"kind":128,"name":"ShopperLogin","url":"classes/customer.shopperlogin.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1439,"kind":512,"name":"constructor","url":"classes/customer.shopperlogin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperLogin"},{"id":1440,"kind":2048,"name":"authenticateCustomer","url":"classes/customer.shopperlogin.html#authenticatecustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1441,"kind":2048,"name":"authorizePasswordlessCustomer","url":"classes/customer.shopperlogin.html#authorizepasswordlesscustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1442,"kind":2048,"name":"logoutCustomer","url":"classes/customer.shopperlogin.html#logoutcustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1443,"kind":2048,"name":"authorizeCustomer","url":"classes/customer.shopperlogin.html#authorizecustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1444,"kind":2048,"name":"getAccessToken","url":"classes/customer.shopperlogin.html#getaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1445,"kind":2048,"name":"getSessionBridgeAccessToken","url":"classes/customer.shopperlogin.html#getsessionbridgeaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1446,"kind":2048,"name":"getTrustedSystemAccessToken","url":"classes/customer.shopperlogin.html#gettrustedsystemaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1447,"kind":2048,"name":"getTrustedAgentAuthorizationToken","url":"classes/customer.shopperlogin.html#gettrustedagentauthorizationtoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1448,"kind":2048,"name":"getTrustedAgentAccessToken","url":"classes/customer.shopperlogin.html#gettrustedagentaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1449,"kind":2048,"name":"getPasswordResetToken","url":"classes/customer.shopperlogin.html#getpasswordresettoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1450,"kind":2048,"name":"resetPassword","url":"classes/customer.shopperlogin.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1451,"kind":2048,"name":"getPasswordLessAccessToken","url":"classes/customer.shopperlogin.html#getpasswordlessaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1452,"kind":2048,"name":"revokeToken","url":"classes/customer.shopperlogin.html#revoketoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1453,"kind":2048,"name":"introspectToken","url":"classes/customer.shopperlogin.html#introspecttoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1454,"kind":2048,"name":"getUserInfo","url":"classes/customer.shopperlogin.html#getuserinfo","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1455,"kind":2048,"name":"getWellknownOpenidConfiguration","url":"classes/customer.shopperlogin.html#getwellknownopenidconfiguration","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1456,"kind":2048,"name":"getJwksUri","url":"classes/customer.shopperlogin.html#getjwksuri","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1457,"kind":1024,"name":"clientConfig","url":"classes/customer.shopperlogin.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperLogin"},{"id":1458,"kind":4194304,"name":"LoginRequest","url":"classes/customer.shopperlogin.html#loginrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1459,"kind":4194304,"name":"TrustedAgentTokenRequest","url":"classes/customer.shopperlogin.html#trustedagenttokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1460,"kind":4194304,"name":"IntrospectResponse","url":"classes/customer.shopperlogin.html#introspectresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1461,"kind":4194304,"name":"PasswordlessLoginRequest","url":"classes/customer.shopperlogin.html#passwordlessloginrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1462,"kind":4194304,"name":"PasswordLessLoginTokenRequest","url":"classes/customer.shopperlogin.html#passwordlesslogintokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1463,"kind":4194304,"name":"Oauth2ErrorResponse","url":"classes/customer.shopperlogin.html#oauth2errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1464,"kind":4194304,"name":"PasswordActionVerifyRequest","url":"classes/customer.shopperlogin.html#passwordactionverifyrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1465,"kind":4194304,"name":"TrustedSystemTokenRequest","url":"classes/customer.shopperlogin.html#trustedsystemtokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1466,"kind":4194304,"name":"PasswordActionRequest","url":"classes/customer.shopperlogin.html#passwordactionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1467,"kind":4194304,"name":"TokenResponse","url":"classes/customer.shopperlogin.html#tokenresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1468,"kind":4194304,"name":"TokenRequest","url":"classes/customer.shopperlogin.html#tokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1469,"kind":4194304,"name":"TokenActionRequest","url":"classes/customer.shopperlogin.html#tokenactionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1470,"kind":4194304,"name":"SessionBridgeTokenRequest","url":"classes/customer.shopperlogin.html#sessionbridgetokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1471,"kind":4194304,"name":"SlasRateLimit","url":"classes/customer.shopperlogin.html#slasratelimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1472,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#slasratelimit.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.SlasRateLimit"},{"id":1473,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shopperlogin.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1474,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shopperlogin.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1475,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shopperlogin.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1476,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.DateRangeFilter"},{"id":1477,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shopperlogin.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1478,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.EtagResponse"},{"id":1479,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shopperlogin.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1480,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.IntegerRangeFilter"},{"id":1481,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shopperlogin.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1482,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited3.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited3"},{"id":1483,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shopperlogin.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1484,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#synccreated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.SyncCreated"},{"id":1485,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shopperlogin.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1486,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.DateConditionalRequest"},{"id":1487,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shopperlogin.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1488,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited5.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited5"},{"id":1489,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shopperlogin.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1490,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.EtagConditionalRequest"},{"id":1491,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shopperlogin.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1492,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.AsyncCreated"},{"id":1493,"kind":4194304,"name":"RateLimited","url":"classes/customer.shopperlogin.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1494,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited"},{"id":1495,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shopperlogin.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1496,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited2"},{"id":1497,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shopperlogin.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1498,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.OffsetPaginated"},{"id":1499,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shopperlogin.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1500,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#rangefilter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RangeFilter"},{"id":1501,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shopperlogin.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1502,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited4.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited4"},{"id":1503,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shopperlogin.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1504,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.NumericRangeFilter"},{"id":1505,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shopperlogin.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1506,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.DatetimeRangeFilter"},{"id":1507,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shopperlogin.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1508,"kind":4194304,"name":"Error","url":"classes/customer.shopperlogin.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1509,"kind":4194304,"name":"Money","url":"classes/customer.shopperlogin.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1510,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shopperlogin.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1511,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shopperlogin.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1512,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shopperlogin.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1513,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shopperlogin.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1514,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shopperlogin.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1515,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shopperlogin.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1516,"kind":4194304,"name":"OpenObject","url":"classes/customer.shopperlogin.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1517,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shopperlogin.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1518,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#queryparamslimit.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.QueryParamsLimit"},{"id":1519,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shopperlogin.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1520,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#queryparamsoffset.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.QueryParamsOffset"},{"id":1521,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shopperlogin.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1522,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#sitespecific-1.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.SiteSpecific"},{"id":1523,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shopperlogin.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1524,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.NoPropertiesAllowed"},{"id":1525,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shopperlogin.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1526,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shopperlogin.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1527,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shopperlogin.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1528,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shopperlogin.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1529,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shopperlogin.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1530,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shopperlogin.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1531,"kind":4194304,"name":"Query","url":"classes/customer.shopperlogin.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1532,"kind":4194304,"name":"TermQuery","url":"classes/customer.shopperlogin.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1533,"kind":4194304,"name":"TermFilter","url":"classes/customer.shopperlogin.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1534,"kind":4194304,"name":"TextQuery","url":"classes/customer.shopperlogin.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1535,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shopperlogin.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1536,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shopperlogin.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1537,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shopperlogin.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1538,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shopperlogin.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1539,"kind":4194304,"name":"Filter","url":"classes/customer.shopperlogin.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1540,"kind":4194304,"name":"Sort","url":"classes/customer.shopperlogin.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1541,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shopperlogin.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1542,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shopperlogin.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1543,"kind":4194304,"name":"L10nString","url":"classes/customer.shopperlogin.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1544,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shopperlogin.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1545,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.AttributeDefinition"},{"id":1546,"kind":32,"name":"defaultValue","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1547,"kind":32,"name":"id","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1548,"kind":32,"name":"name","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1549,"kind":32,"name":"description","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1550,"kind":32,"name":"key","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1551,"kind":32,"name":"localizable","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1552,"kind":32,"name":"mandatory","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1553,"kind":32,"name":"max","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1554,"kind":32,"name":"minLength","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1555,"kind":32,"name":"min","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1556,"kind":32,"name":"multiValueType","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1557,"kind":32,"name":"regularExpression","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1558,"kind":32,"name":"scale","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1559,"kind":32,"name":"searchable","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1560,"kind":32,"name":"siteSpecific","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1561,"kind":32,"name":"system","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1562,"kind":32,"name":"unit","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1563,"kind":32,"name":"possibleValues","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1564,"kind":32,"name":"type","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1565,"kind":32,"name":"visible","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1566,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shopperlogin.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1567,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.PropertyValueDefinition"},{"id":1568,"kind":32,"name":"description","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1569,"kind":32,"name":"displayValue","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1570,"kind":32,"name":"id","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1571,"kind":32,"name":"position","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1572,"kind":32,"name":"value","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1573,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1574,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1575,"kind":128,"name":"ShopperSeo","url":"classes/customer.shopperseo.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1576,"kind":512,"name":"constructor","url":"classes/customer.shopperseo.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperSeo"},{"id":1577,"kind":2048,"name":"getUrlMapping","url":"classes/customer.shopperseo.html#geturlmapping","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperSeo"},{"id":1578,"kind":1024,"name":"clientConfig","url":"classes/customer.shopperseo.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperSeo"},{"id":1579,"kind":4194304,"name":"LocaleSpecific","url":"classes/customer.shopperseo.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1580,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#localespecific.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.LocaleSpecific"},{"id":1581,"kind":4194304,"name":"Money","url":"classes/customer.shopperseo.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1582,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shopperseo.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1583,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shopperseo.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1584,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shopperseo.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1585,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shopperseo.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1586,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shopperseo.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1587,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shopperseo.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1588,"kind":4194304,"name":"OpenObject","url":"classes/customer.shopperseo.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1589,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shopperseo.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1590,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#queryparamslimit.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.QueryParamsLimit"},{"id":1591,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shopperseo.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1592,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#queryparamsoffset.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.QueryParamsOffset"},{"id":1593,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shopperseo.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1594,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.SiteSpecific"},{"id":1595,"kind":4194304,"name":"Selectable","url":"classes/customer.shopperseo.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1596,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.Selectable"},{"id":1597,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shopperseo.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1598,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.NoPropertiesAllowed"},{"id":1599,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shopperseo.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1600,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shopperseo.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1601,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shopperseo.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1602,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shopperseo.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1603,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shopperseo.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1604,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shopperseo.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1605,"kind":4194304,"name":"Query","url":"classes/customer.shopperseo.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1606,"kind":4194304,"name":"TermQuery","url":"classes/customer.shopperseo.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1607,"kind":4194304,"name":"TermFilter","url":"classes/customer.shopperseo.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1608,"kind":4194304,"name":"TextQuery","url":"classes/customer.shopperseo.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1609,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shopperseo.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1610,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shopperseo.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1611,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shopperseo.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1612,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shopperseo.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1613,"kind":4194304,"name":"Filter","url":"classes/customer.shopperseo.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1614,"kind":4194304,"name":"Sort","url":"classes/customer.shopperseo.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1615,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shopperseo.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1616,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shopperseo.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1617,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shopperseo.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1618,"kind":4194304,"name":"L10nString","url":"classes/customer.shopperseo.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1619,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shopperseo.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1620,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.AttributeDefinition"},{"id":1621,"kind":32,"name":"defaultValue","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1622,"kind":32,"name":"id","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1623,"kind":32,"name":"name","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1624,"kind":32,"name":"description","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1625,"kind":32,"name":"key","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1626,"kind":32,"name":"localizable","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1627,"kind":32,"name":"mandatory","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1628,"kind":32,"name":"max","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1629,"kind":32,"name":"minLength","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1630,"kind":32,"name":"min","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1631,"kind":32,"name":"multiValueType","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1632,"kind":32,"name":"regularExpression","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1633,"kind":32,"name":"scale","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1634,"kind":32,"name":"searchable","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1635,"kind":32,"name":"siteSpecific","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1636,"kind":32,"name":"system","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1637,"kind":32,"name":"unit","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1638,"kind":32,"name":"possibleValues","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1639,"kind":32,"name":"type","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1640,"kind":32,"name":"visible","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1641,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shopperseo.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1642,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.PropertyValueDefinition"},{"id":1643,"kind":32,"name":"description","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1644,"kind":32,"name":"displayValue","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1645,"kind":32,"name":"id","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1646,"kind":32,"name":"position","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1647,"kind":32,"name":"value","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1648,"kind":4194304,"name":"UrlMapping","url":"classes/customer.shopperseo.html#urlmapping","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1649,"kind":4194304,"name":"BadRequest","url":"classes/customer.shopperseo.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1650,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.BadRequest"},{"id":1651,"kind":4194304,"name":"Unauthorized","url":"classes/customer.shopperseo.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1652,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#unauthorized.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.Unauthorized"},{"id":1653,"kind":4194304,"name":"NotFound","url":"classes/customer.shopperseo.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1654,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#notfound.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.NotFound"},{"id":1655,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shopperseo.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1656,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shopperseo.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1657,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shopperseo.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1658,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.DateRangeFilter"},{"id":1659,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shopperseo.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1660,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.EtagResponse"},{"id":1661,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shopperseo.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1662,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.IntegerRangeFilter"},{"id":1663,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shopperseo.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1664,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited3"},{"id":1665,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shopperseo.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1666,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#synccreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.SyncCreated"},{"id":1667,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shopperseo.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1668,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.DateConditionalRequest"},{"id":1669,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shopperseo.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1670,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited5"},{"id":1671,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shopperseo.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1672,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.EtagConditionalRequest"},{"id":1673,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shopperseo.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1674,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.AsyncCreated"},{"id":1675,"kind":4194304,"name":"RateLimited","url":"classes/customer.shopperseo.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1676,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited"},{"id":1677,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shopperseo.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1678,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited2"},{"id":1679,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shopperseo.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1680,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#offsetpaginated.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.OffsetPaginated"},{"id":1681,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shopperseo.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1682,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited4"},{"id":1683,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shopperseo.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1684,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#numericrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.NumericRangeFilter"},{"id":1685,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shopperseo.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1686,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.DatetimeRangeFilter"},{"id":1687,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shopperseo.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1688,"kind":4194304,"name":"Error","url":"classes/customer.shopperseo.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1689,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1690,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1691,"kind":128,"name":"SlasAdmin","url":"classes/customer.slasadmin.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1692,"kind":512,"name":"constructor","url":"classes/customer.slasadmin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.SlasAdmin"},{"id":1693,"kind":2048,"name":"retrieveTenant","url":"classes/customer.slasadmin.html#retrievetenant","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1694,"kind":2048,"name":"registerTenant","url":"classes/customer.slasadmin.html#registertenant","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1695,"kind":2048,"name":"retrieveClients","url":"classes/customer.slasadmin.html#retrieveclients","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1696,"kind":2048,"name":"retrieveClient","url":"classes/customer.slasadmin.html#retrieveclient","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1697,"kind":2048,"name":"registerClient","url":"classes/customer.slasadmin.html#registerclient","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1698,"kind":2048,"name":"deleteClient","url":"classes/customer.slasadmin.html#deleteclient","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1699,"kind":2048,"name":"retrievePwdlessTemplate","url":"classes/customer.slasadmin.html#retrievepwdlesstemplate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1700,"kind":2048,"name":"registerPwdlessTemplate","url":"classes/customer.slasadmin.html#registerpwdlesstemplate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1701,"kind":2048,"name":"deletePwdlessTemplate","url":"classes/customer.slasadmin.html#deletepwdlesstemplate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1702,"kind":2048,"name":"retrieveIdentityProviders","url":"classes/customer.slasadmin.html#retrieveidentityproviders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1703,"kind":2048,"name":"retrieveIdentityProvider","url":"classes/customer.slasadmin.html#retrieveidentityprovider","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1704,"kind":2048,"name":"registerIdentityProvider","url":"classes/customer.slasadmin.html#registeridentityprovider","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1705,"kind":2048,"name":"deleteIdentityProvider","url":"classes/customer.slasadmin.html#deleteidentityprovider","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1706,"kind":2048,"name":"deleteShopper","url":"classes/customer.slasadmin.html#deleteshopper","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1707,"kind":1024,"name":"clientConfig","url":"classes/customer.slasadmin.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.SlasAdmin"},{"id":1708,"kind":4194304,"name":"IdentityProviderResponse","url":"classes/customer.slasadmin.html#identityproviderresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1709,"kind":4194304,"name":"IdentityProviderListResponse","url":"classes/customer.slasadmin.html#identityproviderlistresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1710,"kind":4194304,"name":"PasswordActionTemplate","url":"classes/customer.slasadmin.html#passwordactiontemplate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1711,"kind":4194304,"name":"TenantListResponse","url":"classes/customer.slasadmin.html#tenantlistresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1712,"kind":4194304,"name":"Tenant","url":"classes/customer.slasadmin.html#tenant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1713,"kind":4194304,"name":"TenantDto","url":"classes/customer.slasadmin.html#tenantdto","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1714,"kind":4194304,"name":"ClientRequest","url":"classes/customer.slasadmin.html#clientrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1715,"kind":4194304,"name":"ClientListResponse","url":"classes/customer.slasadmin.html#clientlistresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1716,"kind":4194304,"name":"IdentityProvider","url":"classes/customer.slasadmin.html#identityprovider","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1717,"kind":4194304,"name":"Client","url":"classes/customer.slasadmin.html#client","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1718,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.slasadmin.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1719,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.slasadmin.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1720,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.slasadmin.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1721,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#daterangefilter.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.DateRangeFilter"},{"id":1722,"kind":4194304,"name":"EtagResponse","url":"classes/customer.slasadmin.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1723,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#etagresponse.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.EtagResponse"},{"id":1724,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.slasadmin.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1725,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#integerrangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.IntegerRangeFilter"},{"id":1726,"kind":4194304,"name":"RateLimited3","url":"classes/customer.slasadmin.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1727,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited3.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited3"},{"id":1728,"kind":4194304,"name":"SyncCreated","url":"classes/customer.slasadmin.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1729,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#synccreated.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.SyncCreated"},{"id":1730,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.slasadmin.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1731,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#dateconditionalrequest.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.DateConditionalRequest"},{"id":1732,"kind":4194304,"name":"RateLimited5","url":"classes/customer.slasadmin.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1733,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited5.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited5"},{"id":1734,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.slasadmin.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1735,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#etagconditionalrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.EtagConditionalRequest"},{"id":1736,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.slasadmin.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1737,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.AsyncCreated"},{"id":1738,"kind":4194304,"name":"RateLimited","url":"classes/customer.slasadmin.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1739,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited"},{"id":1740,"kind":4194304,"name":"RateLimited2","url":"classes/customer.slasadmin.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1741,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited2"},{"id":1742,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.slasadmin.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1743,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#offsetpaginated.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.OffsetPaginated"},{"id":1744,"kind":4194304,"name":"RangeFilter","url":"classes/customer.slasadmin.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1745,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#rangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RangeFilter"},{"id":1746,"kind":4194304,"name":"RateLimited4","url":"classes/customer.slasadmin.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1747,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited4.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited4"},{"id":1748,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.slasadmin.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1749,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#numericrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.NumericRangeFilter"},{"id":1750,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.slasadmin.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1751,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#datetimerangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.DatetimeRangeFilter"},{"id":1752,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.slasadmin.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1753,"kind":4194304,"name":"Error","url":"classes/customer.slasadmin.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1754,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1755,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1756,"kind":1,"name":"discovery","url":"modules/discovery.html","classes":"tsd-kind-module"},{"id":1757,"kind":128,"name":"ShopperDiscoverySearch","url":"classes/discovery.shopperdiscoverysearch.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"discovery"},{"id":1758,"kind":512,"name":"constructor","url":"classes/discovery.shopperdiscoverysearch.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"discovery.ShopperDiscoverySearch"},{"id":1759,"kind":2048,"name":"retrieveResults","url":"classes/discovery.shopperdiscoverysearch.html#retrieveresults","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperDiscoverySearch"},{"id":1760,"kind":2048,"name":"getSuggestions","url":"classes/discovery.shopperdiscoverysearch.html#getsuggestions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperDiscoverySearch"},{"id":1761,"kind":1024,"name":"clientConfig","url":"classes/discovery.shopperdiscoverysearch.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"discovery.ShopperDiscoverySearch"},{"id":1762,"kind":4194304,"name":"ErrorResponse","url":"classes/discovery.shopperdiscoverysearch.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1763,"kind":4194304,"name":"EtagResponse","url":"classes/discovery.shopperdiscoverysearch.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1764,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#etagresponse.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.EtagResponse"},{"id":1765,"kind":4194304,"name":"RateLimited3","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1766,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited3.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited3"},{"id":1767,"kind":4194304,"name":"SyncCreated","url":"classes/discovery.shopperdiscoverysearch.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1768,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#synccreated.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.SyncCreated"},{"id":1769,"kind":4194304,"name":"DateConditionalRequest","url":"classes/discovery.shopperdiscoverysearch.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1770,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#dateconditionalrequest.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.DateConditionalRequest"},{"id":1771,"kind":4194304,"name":"RateLimited5","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1772,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited5.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited5"},{"id":1773,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/discovery.shopperdiscoverysearch.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1774,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#etagconditionalrequest.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.EtagConditionalRequest"},{"id":1775,"kind":4194304,"name":"AsyncCreated","url":"classes/discovery.shopperdiscoverysearch.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1776,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AsyncCreated"},{"id":1777,"kind":4194304,"name":"RateLimited","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1778,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited"},{"id":1779,"kind":4194304,"name":"RateLimited2","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1780,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited2"},{"id":1781,"kind":4194304,"name":"OffsetPaginated","url":"classes/discovery.shopperdiscoverysearch.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1782,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#offsetpaginated.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.OffsetPaginated"},{"id":1783,"kind":4194304,"name":"RateLimited4","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1784,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited4.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited4"},{"id":1785,"kind":4194304,"name":"Money","url":"classes/discovery.shopperdiscoverysearch.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1786,"kind":4194304,"name":"SimpleSearchResult","url":"classes/discovery.shopperdiscoverysearch.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1787,"kind":4194304,"name":"SearchRequest","url":"classes/discovery.shopperdiscoverysearch.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1788,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/discovery.shopperdiscoverysearch.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1789,"kind":4194304,"name":"ClosedObject","url":"classes/discovery.shopperdiscoverysearch.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1790,"kind":4194304,"name":"OpenObject","url":"classes/discovery.shopperdiscoverysearch.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1791,"kind":4194304,"name":"QueryParamsLimit","url":"classes/discovery.shopperdiscoverysearch.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1792,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryparamslimit.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryParamsLimit"},{"id":1793,"kind":4194304,"name":"QueryParamsOffset","url":"classes/discovery.shopperdiscoverysearch.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1794,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryparamsoffset.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryParamsOffset"},{"id":1795,"kind":4194304,"name":"SiteSpecific","url":"classes/discovery.shopperdiscoverysearch.html#sitespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1796,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#sitespecific.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.SiteSpecific"},{"id":1797,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/discovery.shopperdiscoverysearch.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1798,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#nopropertiesallowed.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.NoPropertiesAllowed"},{"id":1799,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/discovery.shopperdiscoverysearch.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1800,"kind":4194304,"name":"BoolFilter","url":"classes/discovery.shopperdiscoverysearch.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1801,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/discovery.shopperdiscoverysearch.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1802,"kind":4194304,"name":"MatchAllQuery","url":"classes/discovery.shopperdiscoverysearch.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1803,"kind":4194304,"name":"FilteredQuery","url":"classes/discovery.shopperdiscoverysearch.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1804,"kind":4194304,"name":"QueryFilter","url":"classes/discovery.shopperdiscoverysearch.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1805,"kind":4194304,"name":"Query","url":"classes/discovery.shopperdiscoverysearch.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1806,"kind":4194304,"name":"TermQuery","url":"classes/discovery.shopperdiscoverysearch.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1807,"kind":4194304,"name":"TermFilter","url":"classes/discovery.shopperdiscoverysearch.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1808,"kind":4194304,"name":"TextQuery","url":"classes/discovery.shopperdiscoverysearch.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1809,"kind":4194304,"name":"Range2Filter","url":"classes/discovery.shopperdiscoverysearch.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1810,"kind":4194304,"name":"BoolQuery","url":"classes/discovery.shopperdiscoverysearch.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1811,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/discovery.shopperdiscoverysearch.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1812,"kind":4194304,"name":"NestedQuery","url":"classes/discovery.shopperdiscoverysearch.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1813,"kind":4194304,"name":"Filter","url":"classes/discovery.shopperdiscoverysearch.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1814,"kind":4194304,"name":"Sort","url":"classes/discovery.shopperdiscoverysearch.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1815,"kind":4194304,"name":"RangeFilter","url":"classes/discovery.shopperdiscoverysearch.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1816,"kind":4194304,"name":"SearchRequestBase","url":"classes/discovery.shopperdiscoverysearch.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1817,"kind":4194304,"name":"MoneyMnemonic","url":"classes/discovery.shopperdiscoverysearch.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1818,"kind":4194304,"name":"ExpansionAttribute","url":"classes/discovery.shopperdiscoverysearch.html#expansionattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1819,"kind":4194304,"name":"PaginationLinks","url":"classes/discovery.shopperdiscoverysearch.html#paginationlinks","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1820,"kind":4194304,"name":"ResourceLink","url":"classes/discovery.shopperdiscoverysearch.html#resourcelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1821,"kind":4194304,"name":"Traceable","url":"classes/discovery.shopperdiscoverysearch.html#traceable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1822,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#traceable.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Traceable"},{"id":1823,"kind":4194304,"name":"Filterable","url":"classes/discovery.shopperdiscoverysearch.html#filterable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1824,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#filterable.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Filterable"},{"id":1825,"kind":4194304,"name":"CommonErrors","url":"classes/discovery.shopperdiscoverysearch.html#commonerrors","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1826,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#commonerrors.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.CommonErrors"},{"id":1827,"kind":4194304,"name":"ResourceCommonErrors","url":"classes/discovery.shopperdiscoverysearch.html#resourcecommonerrors","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1828,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourcecommonerrors.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceCommonErrors"},{"id":1829,"kind":4194304,"name":"Self","url":"classes/discovery.shopperdiscoverysearch.html#self-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1830,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#self-1.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Self"},{"id":1831,"kind":32,"name":"href","url":"classes/discovery.shopperdiscoverysearch.html#self-1.__type-40.href","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Self.__type"},{"id":1832,"kind":4194304,"name":"SelfResourceLink","url":"classes/discovery.shopperdiscoverysearch.html#selfresourcelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1833,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#selfresourcelink.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.SelfResourceLink"},{"id":1834,"kind":32,"name":"self","url":"classes/discovery.shopperdiscoverysearch.html#selfresourcelink.__type-41.self-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.SelfResourceLink.__type"},{"id":1835,"kind":4194304,"name":"Pagination","url":"classes/discovery.shopperdiscoverysearch.html#pagination","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1836,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Pagination"},{"id":1837,"kind":32,"name":"prev","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19.prev","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Pagination.__type"},{"id":1838,"kind":32,"name":"self","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19.self","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Pagination.__type"},{"id":1839,"kind":32,"name":"next","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19.next","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Pagination.__type"},{"id":1840,"kind":4194304,"name":"ResourceBadRequest","url":"classes/discovery.shopperdiscoverysearch.html#resourcebadrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1841,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourcebadrequest.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceBadRequest"},{"id":1842,"kind":4194304,"name":"ResourceNonReadableHttpMessage","url":"classes/discovery.shopperdiscoverysearch.html#resourcenonreadablehttpmessage","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1843,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourcenonreadablehttpmessage.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceNonReadableHttpMessage"},{"id":1844,"kind":4194304,"name":"ResourceInvalidRequest","url":"classes/discovery.shopperdiscoverysearch.html#resourceinvalidrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1845,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourceinvalidrequest.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceInvalidRequest"},{"id":1846,"kind":4194304,"name":"AuthenticationFailure","url":"classes/discovery.shopperdiscoverysearch.html#authenticationfailure","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1847,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#authenticationfailure.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AuthenticationFailure"},{"id":1848,"kind":4194304,"name":"BaseError","url":"classes/discovery.shopperdiscoverysearch.html#baseerror","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1849,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.BaseError"},{"id":1850,"kind":32,"name":"type","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1851,"kind":32,"name":"title","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.title","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1852,"kind":32,"name":"detail","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.detail","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1853,"kind":32,"name":"instance","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.instance","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1854,"kind":4194304,"name":"NotFound","url":"classes/discovery.shopperdiscoverysearch.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1855,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#notfound.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.NotFound"},{"id":1856,"kind":4194304,"name":"InvalidRequest","url":"classes/discovery.shopperdiscoverysearch.html#invalidrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1857,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#invalidrequest.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.InvalidRequest"},{"id":1858,"kind":4194304,"name":"AuthorizationFailure","url":"classes/discovery.shopperdiscoverysearch.html#authorizationfailure","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1859,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#authorizationfailure.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AuthorizationFailure"},{"id":1860,"kind":4194304,"name":"BadRequest","url":"classes/discovery.shopperdiscoverysearch.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1861,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#badrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.BadRequest"},{"id":1862,"kind":4194304,"name":"ServiceUnavailable","url":"classes/discovery.shopperdiscoverysearch.html#serviceunavailable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1863,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#serviceunavailable.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ServiceUnavailable"},{"id":1864,"kind":4194304,"name":"InternalServerError","url":"classes/discovery.shopperdiscoverysearch.html#internalservererror","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1865,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#internalservererror.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.InternalServerError"},{"id":1866,"kind":4194304,"name":"RateLimitExceeded","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1867,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded"},{"id":1868,"kind":32,"name":"requestLimit","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.requestlimit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1869,"kind":32,"name":"type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1870,"kind":32,"name":"title","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.title-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1871,"kind":32,"name":"detail","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.detail-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1872,"kind":32,"name":"instance","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.instance-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1873,"kind":4194304,"name":"NonReadableHttpMessage","url":"classes/discovery.shopperdiscoverysearch.html#nonreadablehttpmessage","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1874,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#nonreadablehttpmessage.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.NonReadableHttpMessage"},{"id":1875,"kind":4194304,"name":"AttributesQuery","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1876,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AttributesQuery"},{"id":1877,"kind":32,"name":"value","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1878,"kind":32,"name":"queryType","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.querytype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1879,"kind":32,"name":"correctableAttributes","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.correctableattributes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1880,"kind":32,"name":"highlighting","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.highlighting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1881,"kind":4194304,"name":"Highlighting","url":"classes/discovery.shopperdiscoverysearch.html#highlighting-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1882,"kind":4194304,"name":"PhraseQuery","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1883,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.PhraseQuery"},{"id":1884,"kind":32,"name":"value","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.value-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1885,"kind":32,"name":"queryType","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.querytype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1886,"kind":32,"name":"correctableAttributes","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.correctableattributes-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1887,"kind":32,"name":"highlighting","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.highlighting-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1888,"kind":4194304,"name":"QueryOutput","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1889,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryOutput"},{"id":1890,"kind":32,"name":"hits","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.hits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1891,"kind":32,"name":"facets","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.facets-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1892,"kind":32,"name":"links","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.links","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1893,"kind":32,"name":"limit","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1894,"kind":32,"name":"offset","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1895,"kind":32,"name":"total","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.total","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1896,"kind":4194304,"name":"QueryInput","url":"classes/discovery.shopperdiscoverysearch.html#queryinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1897,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryInput"},{"id":1898,"kind":32,"name":"query","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.query-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1899,"kind":32,"name":"refinements","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.refinements","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1900,"kind":32,"name":"returnedAttributes","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.returnedattributes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1901,"kind":32,"name":"grouping","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.grouping-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1902,"kind":32,"name":"facets","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.facets","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1903,"kind":32,"name":"facetRequest","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.facetrequest-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1904,"kind":32,"name":"sorting","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.sorting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1905,"kind":4194304,"name":"CorrectableAttributes","url":"classes/discovery.shopperdiscoverysearch.html#correctableattributes-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1906,"kind":4194304,"name":"Refinement","url":"classes/discovery.shopperdiscoverysearch.html#refinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1907,"kind":4194304,"name":"ValueRefinement","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1908,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ValueRefinement"},{"id":1909,"kind":32,"name":"values","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50.values-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueRefinement.__type"},{"id":1910,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50.attributeid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueRefinement.__type"},{"id":1911,"kind":32,"name":"refinementType","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50.refinementtype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueRefinement.__type"},{"id":1912,"kind":4194304,"name":"RangeRefinement","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1913,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RangeRefinement"},{"id":1914,"kind":32,"name":"min","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.min-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1915,"kind":32,"name":"max","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.max-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1916,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.attributeid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1917,"kind":32,"name":"refinementType","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.refinementtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1918,"kind":4194304,"name":"ValueFacetOutput","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1919,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput"},{"id":1920,"kind":32,"name":"values","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49.values","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput.__type"},{"id":1921,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49.attributeid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput.__type"},{"id":1922,"kind":32,"name":"facetType","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49.facettype-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput.__type"},{"id":1923,"kind":4194304,"name":"FacetInput","url":"classes/discovery.shopperdiscoverysearch.html#facetinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1924,"kind":4194304,"name":"RangeFacetInput","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1925,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetinput.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RangeFacetInput"},{"id":1926,"kind":4194304,"name":"RangeFacetOutput","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1927,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput"},{"id":1928,"kind":32,"name":"min","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1929,"kind":32,"name":"max","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1930,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.attributeid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1931,"kind":32,"name":"facetType","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.facettype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1932,"kind":4194304,"name":"ValueFacetInput","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1933,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput"},{"id":1934,"kind":32,"name":"mask","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48.mask","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput.__type"},{"id":1935,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48.attributeid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput.__type"},{"id":1936,"kind":32,"name":"facetType","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48.facettype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput.__type"},{"id":1937,"kind":4194304,"name":"FacetRequest","url":"classes/discovery.shopperdiscoverysearch.html#facetrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1938,"kind":4194304,"name":"ValueFacetOutputEntity","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutputentity","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1939,"kind":4194304,"name":"FacetOutput","url":"classes/discovery.shopperdiscoverysearch.html#facetoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1940,"kind":4194304,"name":"Sorting","url":"classes/discovery.shopperdiscoverysearch.html#sorting-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1941,"kind":4194304,"name":"AttributeSorting","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1942,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AttributeSorting"},{"id":1943,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2.attributeid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeSorting.__type"},{"id":1944,"kind":32,"name":"direction","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2.direction","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeSorting.__type"},{"id":1945,"kind":32,"name":"sortType","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2.sorttype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeSorting.__type"},{"id":1946,"kind":4194304,"name":"RelevanceSorting","url":"classes/discovery.shopperdiscoverysearch.html#relevancesorting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1947,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#relevancesorting.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RelevanceSorting"},{"id":1948,"kind":4194304,"name":"Grouping","url":"classes/discovery.shopperdiscoverysearch.html#grouping","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1949,"kind":4194304,"name":"AttributeGrouping","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1950,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping"},{"id":1951,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1.attributeid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping.__type"},{"id":1952,"kind":32,"name":"returnedAttributes","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1.returnedattributes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping.__type"},{"id":1953,"kind":32,"name":"groupType","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1.grouptype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping.__type"},{"id":1954,"kind":4194304,"name":"ItemReference","url":"classes/discovery.shopperdiscoverysearch.html#itemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1955,"kind":4194304,"name":"Highlight","url":"classes/discovery.shopperdiscoverysearch.html#highlight","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1956,"kind":4194304,"name":"Result","url":"classes/discovery.shopperdiscoverysearch.html#result","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1957,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Result"},{"id":1958,"kind":32,"name":"matchedItem","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.matcheditem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1959,"kind":32,"name":"highlights","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.highlights","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1960,"kind":32,"name":"groupId","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.groupid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1961,"kind":32,"name":"totalGroupedItems","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.totalgroupeditems","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1962,"kind":32,"name":"groupedItems","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.groupeditems","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1963,"kind":4194304,"name":"Suggestion","url":"classes/discovery.shopperdiscoverysearch.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1964,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#suggestion.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Suggestion"},{"id":1965,"kind":32,"name":"phrase","url":"classes/discovery.shopperdiscoverysearch.html#suggestion.__type-44.phrase","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestion.__type"},{"id":1966,"kind":4194304,"name":"Suggestions","url":"classes/discovery.shopperdiscoverysearch.html#suggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1967,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Suggestions"},{"id":1968,"kind":32,"name":"recentSearchPhrases","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45.recentsearchphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestions.__type"},{"id":1969,"kind":32,"name":"suggestedSearchPhrases","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45.suggestedsearchphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestions.__type"},{"id":1970,"kind":32,"name":"popularSearchPhrases","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45.popularsearchphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestions.__type"},{"id":1971,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/discovery.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":1972,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/discovery.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":1973,"kind":128,"name":"ShopperSearch","url":"classes/discovery.shoppersearch.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"discovery"},{"id":1974,"kind":512,"name":"constructor","url":"classes/discovery.shoppersearch.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"discovery.ShopperSearch"},{"id":1975,"kind":2048,"name":"productSearch","url":"classes/discovery.shoppersearch.html#productsearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperSearch"},{"id":1976,"kind":2048,"name":"getSearchSuggestions","url":"classes/discovery.shoppersearch.html#getsearchsuggestions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperSearch"},{"id":1977,"kind":1024,"name":"clientConfig","url":"classes/discovery.shoppersearch.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"discovery.ShopperSearch"},{"id":1978,"kind":4194304,"name":"Money","url":"classes/discovery.shoppersearch.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1979,"kind":4194304,"name":"SimpleSearchResult","url":"classes/discovery.shoppersearch.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1980,"kind":4194304,"name":"SearchRequest","url":"classes/discovery.shoppersearch.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1981,"kind":4194304,"name":"PropertyDefinition","url":"classes/discovery.shoppersearch.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1982,"kind":4194304,"name":"LocalizedString","url":"classes/discovery.shoppersearch.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1983,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/discovery.shoppersearch.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1984,"kind":4194304,"name":"ClosedObject","url":"classes/discovery.shoppersearch.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1985,"kind":4194304,"name":"OpenObject","url":"classes/discovery.shoppersearch.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1986,"kind":4194304,"name":"QueryParamsLimit","url":"classes/discovery.shoppersearch.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1987,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#queryparamslimit.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.QueryParamsLimit"},{"id":1988,"kind":4194304,"name":"QueryParamsOffset","url":"classes/discovery.shoppersearch.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1989,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#queryparamsoffset.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.QueryParamsOffset"},{"id":1990,"kind":4194304,"name":"SiteSpecific","url":"classes/discovery.shoppersearch.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1991,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#sitespecific-1.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.SiteSpecific"},{"id":1992,"kind":4194304,"name":"Selectable","url":"classes/discovery.shoppersearch.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1993,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#selectable.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.Selectable"},{"id":1994,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/discovery.shoppersearch.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1995,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#nopropertiesallowed.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.NoPropertiesAllowed"},{"id":1996,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/discovery.shoppersearch.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1997,"kind":4194304,"name":"BoolFilter","url":"classes/discovery.shoppersearch.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1998,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/discovery.shoppersearch.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1999,"kind":4194304,"name":"MatchAllQuery","url":"classes/discovery.shoppersearch.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2000,"kind":4194304,"name":"FilteredQuery","url":"classes/discovery.shoppersearch.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2001,"kind":4194304,"name":"QueryFilter","url":"classes/discovery.shoppersearch.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2002,"kind":4194304,"name":"Query","url":"classes/discovery.shoppersearch.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2003,"kind":4194304,"name":"TermQuery","url":"classes/discovery.shoppersearch.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2004,"kind":4194304,"name":"TermFilter","url":"classes/discovery.shoppersearch.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2005,"kind":4194304,"name":"TextQuery","url":"classes/discovery.shoppersearch.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2006,"kind":4194304,"name":"Range2Filter","url":"classes/discovery.shoppersearch.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2007,"kind":4194304,"name":"BoolQuery","url":"classes/discovery.shoppersearch.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2008,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/discovery.shoppersearch.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2009,"kind":4194304,"name":"NestedQuery","url":"classes/discovery.shoppersearch.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2010,"kind":4194304,"name":"Filter","url":"classes/discovery.shoppersearch.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2011,"kind":4194304,"name":"Sort","url":"classes/discovery.shoppersearch.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2012,"kind":4194304,"name":"RangeFilter","url":"classes/discovery.shoppersearch.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2013,"kind":4194304,"name":"SearchRequestBase","url":"classes/discovery.shoppersearch.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2014,"kind":4194304,"name":"MoneyMnemonic","url":"classes/discovery.shoppersearch.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2015,"kind":4194304,"name":"L10nString","url":"classes/discovery.shoppersearch.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2016,"kind":4194304,"name":"AttributeDefinition","url":"classes/discovery.shoppersearch.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2017,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.AttributeDefinition"},{"id":2018,"kind":32,"name":"defaultValue","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2019,"kind":32,"name":"id","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2020,"kind":32,"name":"name","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2021,"kind":32,"name":"description","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2022,"kind":32,"name":"key","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2023,"kind":32,"name":"localizable","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2024,"kind":32,"name":"mandatory","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2025,"kind":32,"name":"max","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2026,"kind":32,"name":"minLength","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2027,"kind":32,"name":"min","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2028,"kind":32,"name":"multiValueType","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2029,"kind":32,"name":"regularExpression","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2030,"kind":32,"name":"scale","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2031,"kind":32,"name":"searchable","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2032,"kind":32,"name":"siteSpecific","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2033,"kind":32,"name":"system","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2034,"kind":32,"name":"unit","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2035,"kind":32,"name":"possibleValues","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2036,"kind":32,"name":"type","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2037,"kind":32,"name":"visible","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2038,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2039,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.PropertyValueDefinition"},{"id":2040,"kind":32,"name":"description","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2041,"kind":32,"name":"displayValue","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2042,"kind":32,"name":"id","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2043,"kind":32,"name":"position","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2044,"kind":32,"name":"value","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2045,"kind":4194304,"name":"ErrorResponse","url":"classes/discovery.shoppersearch.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2046,"kind":4194304,"name":"ChangeControlled","url":"classes/discovery.shoppersearch.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2047,"kind":4194304,"name":"DateRangeFilter","url":"classes/discovery.shoppersearch.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2048,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.DateRangeFilter"},{"id":2049,"kind":4194304,"name":"EtagResponse","url":"classes/discovery.shoppersearch.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2050,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.EtagResponse"},{"id":2051,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/discovery.shoppersearch.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2052,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.IntegerRangeFilter"},{"id":2053,"kind":4194304,"name":"RateLimited3","url":"classes/discovery.shoppersearch.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2054,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited3.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited3"},{"id":2055,"kind":4194304,"name":"SyncCreated","url":"classes/discovery.shoppersearch.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2056,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#synccreated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.SyncCreated"},{"id":2057,"kind":4194304,"name":"DateConditionalRequest","url":"classes/discovery.shoppersearch.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2058,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.DateConditionalRequest"},{"id":2059,"kind":4194304,"name":"RateLimited5","url":"classes/discovery.shoppersearch.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2060,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited5.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited5"},{"id":2061,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/discovery.shoppersearch.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2062,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.EtagConditionalRequest"},{"id":2063,"kind":4194304,"name":"AsyncCreated","url":"classes/discovery.shoppersearch.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2064,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.AsyncCreated"},{"id":2065,"kind":4194304,"name":"RateLimited","url":"classes/discovery.shoppersearch.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2066,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited"},{"id":2067,"kind":4194304,"name":"RateLimited2","url":"classes/discovery.shoppersearch.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2068,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited2"},{"id":2069,"kind":4194304,"name":"OffsetPaginated","url":"classes/discovery.shoppersearch.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2070,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#offsetpaginated.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.OffsetPaginated"},{"id":2071,"kind":4194304,"name":"RateLimited4","url":"classes/discovery.shoppersearch.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2072,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited4.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited4"},{"id":2073,"kind":4194304,"name":"NumericRangeFilter","url":"classes/discovery.shoppersearch.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2074,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#numericrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.NumericRangeFilter"},{"id":2075,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/discovery.shoppersearch.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2076,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.DatetimeRangeFilter"},{"id":2077,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/discovery.shoppersearch.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2078,"kind":4194304,"name":"Error","url":"classes/discovery.shoppersearch.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2079,"kind":4194304,"name":"ProductPriceTable","url":"classes/discovery.shoppersearch.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2080,"kind":4194304,"name":"ProductRef","url":"classes/discovery.shoppersearch.html#productref","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2081,"kind":4194304,"name":"SuggestedTerms","url":"classes/discovery.shoppersearch.html#suggestedterms","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2082,"kind":4194304,"name":"PriceRange","url":"classes/discovery.shoppersearch.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2083,"kind":4194304,"name":"CategorySuggestions","url":"classes/discovery.shoppersearch.html#categorysuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2084,"kind":4194304,"name":"SuggestedProduct","url":"classes/discovery.shoppersearch.html#suggestedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2085,"kind":4194304,"name":"SuggestedPhrase","url":"classes/discovery.shoppersearch.html#suggestedphrase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2086,"kind":4194304,"name":"VariationAttribute","url":"classes/discovery.shoppersearch.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2087,"kind":4194304,"name":"ProductSuggestions","url":"classes/discovery.shoppersearch.html#productsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2088,"kind":4194304,"name":"SuggestedCategory","url":"classes/discovery.shoppersearch.html#suggestedcategory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2089,"kind":4194304,"name":"ProductType","url":"classes/discovery.shoppersearch.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2090,"kind":4194304,"name":"Variant","url":"classes/discovery.shoppersearch.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2091,"kind":4194304,"name":"VariationGroup","url":"classes/discovery.shoppersearch.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2092,"kind":4194304,"name":"BrandSuggestions","url":"classes/discovery.shoppersearch.html#brandsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2093,"kind":4194304,"name":"ProductSearchRefinementValue","url":"classes/discovery.shoppersearch.html#productsearchrefinementvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2094,"kind":4194304,"name":"ProductSearchSortingOption","url":"classes/discovery.shoppersearch.html#productsearchsortingoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2095,"kind":4194304,"name":"ImageGroup","url":"classes/discovery.shoppersearch.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2096,"kind":4194304,"name":"SuggestedTerm","url":"classes/discovery.shoppersearch.html#suggestedterm","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2097,"kind":4194304,"name":"ProductSearchRefinement","url":"classes/discovery.shoppersearch.html#productsearchrefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2098,"kind":4194304,"name":"CustomSuggestions","url":"classes/discovery.shoppersearch.html#customsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2099,"kind":4194304,"name":"ProductSearchHit","url":"classes/discovery.shoppersearch.html#productsearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2100,"kind":4194304,"name":"ProductSearchResult","url":"classes/discovery.shoppersearch.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2101,"kind":4194304,"name":"Image","url":"classes/discovery.shoppersearch.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2102,"kind":4194304,"name":"VariationAttributeValue","url":"classes/discovery.shoppersearch.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2103,"kind":4194304,"name":"ProductPromotion","url":"classes/discovery.shoppersearch.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2104,"kind":4194304,"name":"Suggestion","url":"classes/discovery.shoppersearch.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2105,"kind":4194304,"name":"SuggestionResult","url":"classes/discovery.shoppersearch.html#suggestionresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2106,"kind":4194304,"name":"Unauthorized","url":"classes/discovery.shoppersearch.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2107,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#unauthorized.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.Unauthorized"},{"id":2108,"kind":4194304,"name":"BadRequest","url":"classes/discovery.shoppersearch.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2109,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.BadRequest"},{"id":2110,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/discovery.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":2111,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/discovery.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":2112,"kind":1,"name":"experience","url":"modules/experience.html","classes":"tsd-kind-module"},{"id":2113,"kind":128,"name":"ShopperExperience","url":"classes/experience.shopperexperience.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"experience"},{"id":2114,"kind":512,"name":"constructor","url":"classes/experience.shopperexperience.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"experience.ShopperExperience"},{"id":2115,"kind":2048,"name":"getPages","url":"classes/experience.shopperexperience.html#getpages","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"experience.ShopperExperience"},{"id":2116,"kind":2048,"name":"getPage","url":"classes/experience.shopperexperience.html#getpage","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"experience.ShopperExperience"},{"id":2117,"kind":1024,"name":"clientConfig","url":"classes/experience.shopperexperience.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"experience.ShopperExperience"},{"id":2118,"kind":4194304,"name":"PageResult","url":"classes/experience.shopperexperience.html#pageresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2119,"kind":4194304,"name":"Page","url":"classes/experience.shopperexperience.html#page","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2120,"kind":4194304,"name":"Region","url":"classes/experience.shopperexperience.html#region","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2121,"kind":4194304,"name":"Component","url":"classes/experience.shopperexperience.html#component","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2122,"kind":4194304,"name":"ErrorResponse","url":"classes/experience.shopperexperience.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2123,"kind":4194304,"name":"ChangeControlled","url":"classes/experience.shopperexperience.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2124,"kind":4194304,"name":"DateRangeFilter","url":"classes/experience.shopperexperience.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2125,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#daterangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.DateRangeFilter"},{"id":2126,"kind":4194304,"name":"EtagResponse","url":"classes/experience.shopperexperience.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2127,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#etagresponse.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.EtagResponse"},{"id":2128,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/experience.shopperexperience.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2129,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#integerrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.IntegerRangeFilter"},{"id":2130,"kind":4194304,"name":"RateLimited3","url":"classes/experience.shopperexperience.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2131,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited3.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited3"},{"id":2132,"kind":4194304,"name":"SyncCreated","url":"classes/experience.shopperexperience.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2133,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#synccreated.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.SyncCreated"},{"id":2134,"kind":4194304,"name":"DateConditionalRequest","url":"classes/experience.shopperexperience.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2135,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#dateconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.DateConditionalRequest"},{"id":2136,"kind":4194304,"name":"RateLimited5","url":"classes/experience.shopperexperience.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2137,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited5.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited5"},{"id":2138,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/experience.shopperexperience.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2139,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#etagconditionalrequest.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.EtagConditionalRequest"},{"id":2140,"kind":4194304,"name":"AsyncCreated","url":"classes/experience.shopperexperience.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2141,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#asynccreated.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AsyncCreated"},{"id":2142,"kind":4194304,"name":"RateLimited","url":"classes/experience.shopperexperience.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2143,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited"},{"id":2144,"kind":4194304,"name":"RateLimited2","url":"classes/experience.shopperexperience.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2145,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited2"},{"id":2146,"kind":4194304,"name":"OffsetPaginated","url":"classes/experience.shopperexperience.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2147,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.OffsetPaginated"},{"id":2148,"kind":4194304,"name":"RangeFilter","url":"classes/experience.shopperexperience.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2149,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#rangefilter.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RangeFilter"},{"id":2150,"kind":4194304,"name":"RateLimited4","url":"classes/experience.shopperexperience.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2151,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited4.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited4"},{"id":2152,"kind":4194304,"name":"NumericRangeFilter","url":"classes/experience.shopperexperience.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2153,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.NumericRangeFilter"},{"id":2154,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/experience.shopperexperience.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2155,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#datetimerangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.DatetimeRangeFilter"},{"id":2156,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/experience.shopperexperience.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2157,"kind":4194304,"name":"Error","url":"classes/experience.shopperexperience.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2158,"kind":4194304,"name":"Money","url":"classes/experience.shopperexperience.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2159,"kind":4194304,"name":"SimpleSearchResult","url":"classes/experience.shopperexperience.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2160,"kind":4194304,"name":"SearchRequest","url":"classes/experience.shopperexperience.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2161,"kind":4194304,"name":"PropertyDefinition","url":"classes/experience.shopperexperience.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2162,"kind":4194304,"name":"LocalizedString","url":"classes/experience.shopperexperience.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2163,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/experience.shopperexperience.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2164,"kind":4194304,"name":"ClosedObject","url":"classes/experience.shopperexperience.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2165,"kind":4194304,"name":"OpenObject","url":"classes/experience.shopperexperience.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2166,"kind":4194304,"name":"QueryParamsLimit","url":"classes/experience.shopperexperience.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2167,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#queryparamslimit.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.QueryParamsLimit"},{"id":2168,"kind":4194304,"name":"QueryParamsOffset","url":"classes/experience.shopperexperience.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2169,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#queryparamsoffset.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.QueryParamsOffset"},{"id":2170,"kind":4194304,"name":"SiteSpecific","url":"classes/experience.shopperexperience.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2171,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#sitespecific-1.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.SiteSpecific"},{"id":2172,"kind":4194304,"name":"Selectable","url":"classes/experience.shopperexperience.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2173,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#selectable.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.Selectable"},{"id":2174,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/experience.shopperexperience.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2175,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#nopropertiesallowed.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.NoPropertiesAllowed"},{"id":2176,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/experience.shopperexperience.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2177,"kind":4194304,"name":"BoolFilter","url":"classes/experience.shopperexperience.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2178,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/experience.shopperexperience.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2179,"kind":4194304,"name":"MatchAllQuery","url":"classes/experience.shopperexperience.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2180,"kind":4194304,"name":"FilteredQuery","url":"classes/experience.shopperexperience.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2181,"kind":4194304,"name":"QueryFilter","url":"classes/experience.shopperexperience.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2182,"kind":4194304,"name":"Query","url":"classes/experience.shopperexperience.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2183,"kind":4194304,"name":"TermQuery","url":"classes/experience.shopperexperience.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2184,"kind":4194304,"name":"TermFilter","url":"classes/experience.shopperexperience.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2185,"kind":4194304,"name":"TextQuery","url":"classes/experience.shopperexperience.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2186,"kind":4194304,"name":"Range2Filter","url":"classes/experience.shopperexperience.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2187,"kind":4194304,"name":"BoolQuery","url":"classes/experience.shopperexperience.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2188,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/experience.shopperexperience.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2189,"kind":4194304,"name":"NestedQuery","url":"classes/experience.shopperexperience.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2190,"kind":4194304,"name":"Filter","url":"classes/experience.shopperexperience.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2191,"kind":4194304,"name":"Sort","url":"classes/experience.shopperexperience.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2192,"kind":4194304,"name":"SearchRequestBase","url":"classes/experience.shopperexperience.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2193,"kind":4194304,"name":"MoneyMnemonic","url":"classes/experience.shopperexperience.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2194,"kind":4194304,"name":"L10nString","url":"classes/experience.shopperexperience.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2195,"kind":4194304,"name":"AttributeDefinition","url":"classes/experience.shopperexperience.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2196,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AttributeDefinition"},{"id":2197,"kind":32,"name":"defaultValue","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2198,"kind":32,"name":"id","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2199,"kind":32,"name":"name","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2200,"kind":32,"name":"description","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2201,"kind":32,"name":"key","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2202,"kind":32,"name":"localizable","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2203,"kind":32,"name":"mandatory","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2204,"kind":32,"name":"max","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2205,"kind":32,"name":"minLength","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2206,"kind":32,"name":"min","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2207,"kind":32,"name":"multiValueType","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2208,"kind":32,"name":"regularExpression","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2209,"kind":32,"name":"scale","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2210,"kind":32,"name":"searchable","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2211,"kind":32,"name":"siteSpecific","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2212,"kind":32,"name":"system","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2213,"kind":32,"name":"unit","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2214,"kind":32,"name":"possibleValues","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2215,"kind":32,"name":"type","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2216,"kind":32,"name":"visible","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2217,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/experience.shopperexperience.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2218,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.PropertyValueDefinition"},{"id":2219,"kind":32,"name":"description","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2220,"kind":32,"name":"displayValue","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2221,"kind":32,"name":"id","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2222,"kind":32,"name":"position","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2223,"kind":32,"name":"value","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2224,"kind":4194304,"name":"BusinessObjectIdInvalid","url":"classes/experience.shopperexperience.html#businessobjectidinvalid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2225,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#businessobjectidinvalid.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.BusinessObjectIdInvalid"},{"id":2226,"kind":4194304,"name":"AspectTypeNotFound","url":"classes/experience.shopperexperience.html#aspecttypenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2227,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#aspecttypenotfound.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AspectTypeNotFound"},{"id":2228,"kind":4194304,"name":"PageNotFound","url":"classes/experience.shopperexperience.html#pagenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2229,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#pagenotfound.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.PageNotFound"},{"id":2230,"kind":4194304,"name":"AspectAttributeInvalid","url":"classes/experience.shopperexperience.html#aspectattributeinvalid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2231,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#aspectattributeinvalid.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AspectAttributeInvalid"},{"id":2232,"kind":4194304,"name":"LocaleSpecific","url":"classes/experience.shopperexperience.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2233,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#localespecific.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.LocaleSpecific"},{"id":2234,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/experience.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"experience"},{"id":2235,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/experience.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"experience"},{"id":2236,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":2237,"kind":32,"name":"CUSTOM_API_DEFAULT_BASE_URI","url":"modules/helpers.html#custom_api_default_base_uri","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":2238,"kind":64,"name":"contentTypeHeaderExists","url":"modules/helpers.html#contenttypeheaderexists","classes":"tsd-kind-function tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":2239,"kind":4194304,"name":"CustomApiParameters","url":"modules/helpers.html#customapiparameters","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":2240,"kind":65536,"name":"__type","url":"modules/helpers.html#customapiparameters.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.CustomApiParameters"},{"id":2241,"kind":32,"name":"organizationId","url":"modules/helpers.html#customapiparameters.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2242,"kind":32,"name":"shortCode","url":"modules/helpers.html#customapiparameters.__type.shortcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2243,"kind":32,"name":"endpointName","url":"modules/helpers.html#customapiparameters.__type.endpointname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2244,"kind":32,"name":"apiName","url":"modules/helpers.html#customapiparameters.__type.apiname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2245,"kind":32,"name":"apiVersion","url":"modules/helpers.html#customapiparameters.__type.apiversion","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2246,"kind":64,"name":"callCustomEndpoint","url":"modules/helpers.html#callcustomendpoint","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2247,"kind":256,"name":"ISlasClient","url":"interfaces/helpers.islasclient.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":2248,"kind":2048,"name":"authenticateCustomer","url":"interfaces/helpers.islasclient.html#authenticatecustomer","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2249,"kind":2048,"name":"authorizeCustomer","url":"interfaces/helpers.islasclient.html#authorizecustomer","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2250,"kind":2048,"name":"getAccessToken","url":"interfaces/helpers.islasclient.html#getaccesstoken","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2251,"kind":2048,"name":"logoutCustomer","url":"interfaces/helpers.islasclient.html#logoutcustomer","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2252,"kind":1024,"name":"clientConfig","url":"interfaces/helpers.islasclient.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2253,"kind":4194304,"name":"LoginRequest","url":"modules/helpers.html#loginrequest","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":2254,"kind":4194304,"name":"TokenRequest","url":"modules/helpers.html#tokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":2255,"kind":4194304,"name":"TokenResponse","url":"modules/helpers.html#tokenresponse","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":2256,"kind":64,"name":"stringToBase64","url":"modules/helpers.html#stringtobase64","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2257,"kind":64,"name":"getCodeAndUsidFromUrl","url":"modules/helpers.html#getcodeandusidfromurl","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2258,"kind":64,"name":"createCodeVerifier","url":"modules/helpers.html#createcodeverifier","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2259,"kind":64,"name":"generateCodeChallenge","url":"modules/helpers.html#generatecodechallenge","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2260,"kind":64,"name":"authorize","url":"modules/helpers.html#authorize","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2261,"kind":64,"name":"loginGuestUserPrivate","url":"modules/helpers.html#loginguestuserprivate","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2262,"kind":64,"name":"loginGuestUser","url":"modules/helpers.html#loginguestuser","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2263,"kind":64,"name":"loginRegisteredUserB2Cprivate","url":"modules/helpers.html#loginregistereduserb2cprivate","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2264,"kind":64,"name":"loginRegisteredUserB2C","url":"modules/helpers.html#loginregistereduserb2c","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2265,"kind":64,"name":"refreshAccessToken","url":"modules/helpers.html#refreshaccesstoken","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2266,"kind":64,"name":"refreshAccessTokenPrivate","url":"modules/helpers.html#refreshaccesstokenprivate","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2267,"kind":64,"name":"logout","url":"modules/helpers.html#logout","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2268,"kind":2097152,"name":"helpers","url":"modules/helpers.html#helpers-1","classes":"tsd-kind-object-literal tsd-parent-kind-module","parent":"helpers"},{"id":2269,"kind":32,"name":"callCustomEndpoint","url":"modules/helpers.html#helpers-1.callcustomendpoint-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"helpers.helpers"},{"id":2270,"kind":1,"name":"pricing","url":"modules/pricing.html","classes":"tsd-kind-module"},{"id":2271,"kind":128,"name":"Assignments","url":"classes/pricing.assignments.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2272,"kind":512,"name":"constructor","url":"classes/pricing.assignments.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Assignments"},{"id":2273,"kind":2048,"name":"assignmentsSearch","url":"classes/pricing.assignments.html#assignmentssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Assignments"},{"id":2274,"kind":1024,"name":"clientConfig","url":"classes/pricing.assignments.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Assignments"},{"id":2275,"kind":4194304,"name":"TimeOfDay","url":"classes/pricing.assignments.html#timeofday","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2276,"kind":4194304,"name":"Campaign","url":"classes/pricing.assignments.html#campaign","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2277,"kind":4194304,"name":"PromotionCampaignAssignment","url":"classes/pricing.assignments.html#promotioncampaignassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2278,"kind":4194304,"name":"Tag","url":"classes/pricing.assignments.html#tag","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2279,"kind":4194304,"name":"Promotion","url":"classes/pricing.assignments.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2280,"kind":4194304,"name":"PromotionAssignmentInformation","url":"classes/pricing.assignments.html#promotionassignmentinformation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2281,"kind":4194304,"name":"Schedule","url":"classes/pricing.assignments.html#schedule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2282,"kind":4194304,"name":"PromotionCampaignAssignmentSearchResult","url":"classes/pricing.assignments.html#promotioncampaignassignmentsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2283,"kind":4194304,"name":"Recurrence","url":"classes/pricing.assignments.html#recurrence","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2284,"kind":4194304,"name":"PromotionAbtestGroupAssignment","url":"classes/pricing.assignments.html#promotionabtestgroupassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2285,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.assignments.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2286,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.assignments.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2287,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.assignments.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2288,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.DateRangeFilter"},{"id":2289,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.assignments.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2290,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.EtagResponse"},{"id":2291,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.assignments.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2292,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.IntegerRangeFilter"},{"id":2293,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.assignments.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2294,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited3.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited3"},{"id":2295,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.assignments.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2296,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#synccreated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.SyncCreated"},{"id":2297,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.assignments.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2298,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.DateConditionalRequest"},{"id":2299,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.assignments.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2300,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited5.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited5"},{"id":2301,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.assignments.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2302,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.EtagConditionalRequest"},{"id":2303,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.assignments.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2304,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.AsyncCreated"},{"id":2305,"kind":4194304,"name":"RateLimited","url":"classes/pricing.assignments.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2306,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited"},{"id":2307,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.assignments.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2308,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited2"},{"id":2309,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.assignments.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2310,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.OffsetPaginated"},{"id":2311,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.assignments.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2312,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#rangefilter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RangeFilter"},{"id":2313,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.assignments.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2314,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited4.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited4"},{"id":2315,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.assignments.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2316,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.NumericRangeFilter"},{"id":2317,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.assignments.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2318,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.DatetimeRangeFilter"},{"id":2319,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.assignments.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2320,"kind":4194304,"name":"Error","url":"classes/pricing.assignments.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2321,"kind":4194304,"name":"Money","url":"classes/pricing.assignments.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2322,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.assignments.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2323,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.assignments.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2324,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.assignments.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2325,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.assignments.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2326,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.assignments.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2327,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.assignments.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2328,"kind":4194304,"name":"OpenObject","url":"classes/pricing.assignments.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2329,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.assignments.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2330,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#queryparamslimit.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.QueryParamsLimit"},{"id":2331,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.assignments.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2332,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#queryparamsoffset.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.QueryParamsOffset"},{"id":2333,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.assignments.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2334,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#sitespecific-1.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.SiteSpecific"},{"id":2335,"kind":4194304,"name":"Selectable","url":"classes/pricing.assignments.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2336,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#selectable.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.Selectable"},{"id":2337,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.assignments.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2338,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.NoPropertiesAllowed"},{"id":2339,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.assignments.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2340,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.assignments.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2341,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.assignments.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2342,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.assignments.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2343,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.assignments.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2344,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.assignments.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2345,"kind":4194304,"name":"Query","url":"classes/pricing.assignments.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2346,"kind":4194304,"name":"TermQuery","url":"classes/pricing.assignments.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2347,"kind":4194304,"name":"TermFilter","url":"classes/pricing.assignments.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2348,"kind":4194304,"name":"TextQuery","url":"classes/pricing.assignments.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2349,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.assignments.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2350,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.assignments.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2351,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.assignments.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2352,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.assignments.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2353,"kind":4194304,"name":"Filter","url":"classes/pricing.assignments.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2354,"kind":4194304,"name":"Sort","url":"classes/pricing.assignments.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2355,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.assignments.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2356,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.assignments.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2357,"kind":4194304,"name":"L10nString","url":"classes/pricing.assignments.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2358,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.assignments.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2359,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.AttributeDefinition"},{"id":2360,"kind":32,"name":"defaultValue","url":"classes/pricing.assignments.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2361,"kind":32,"name":"id","url":"classes/pricing.assignments.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2362,"kind":32,"name":"name","url":"classes/pricing.assignments.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2363,"kind":32,"name":"description","url":"classes/pricing.assignments.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2364,"kind":32,"name":"key","url":"classes/pricing.assignments.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2365,"kind":32,"name":"localizable","url":"classes/pricing.assignments.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2366,"kind":32,"name":"mandatory","url":"classes/pricing.assignments.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2367,"kind":32,"name":"max","url":"classes/pricing.assignments.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2368,"kind":32,"name":"minLength","url":"classes/pricing.assignments.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2369,"kind":32,"name":"min","url":"classes/pricing.assignments.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2370,"kind":32,"name":"multiValueType","url":"classes/pricing.assignments.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2371,"kind":32,"name":"regularExpression","url":"classes/pricing.assignments.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2372,"kind":32,"name":"scale","url":"classes/pricing.assignments.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2373,"kind":32,"name":"searchable","url":"classes/pricing.assignments.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2374,"kind":32,"name":"siteSpecific","url":"classes/pricing.assignments.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2375,"kind":32,"name":"system","url":"classes/pricing.assignments.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2376,"kind":32,"name":"unit","url":"classes/pricing.assignments.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2377,"kind":32,"name":"possibleValues","url":"classes/pricing.assignments.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2378,"kind":32,"name":"type","url":"classes/pricing.assignments.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2379,"kind":32,"name":"visible","url":"classes/pricing.assignments.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2380,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.assignments.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2381,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.PropertyValueDefinition"},{"id":2382,"kind":32,"name":"description","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-11.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2383,"kind":32,"name":"displayValue","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-11.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2384,"kind":32,"name":"id","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-11.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2385,"kind":32,"name":"position","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-11.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2386,"kind":32,"name":"value","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-11.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2387,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2388,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2389,"kind":128,"name":"Campaigns","url":"classes/pricing.campaigns.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2390,"kind":512,"name":"constructor","url":"classes/pricing.campaigns.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Campaigns"},{"id":2391,"kind":2048,"name":"campaignsSearch","url":"classes/pricing.campaigns.html#campaignssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2392,"kind":2048,"name":"deleteCampaign","url":"classes/pricing.campaigns.html#deletecampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2393,"kind":2048,"name":"getCampaign","url":"classes/pricing.campaigns.html#getcampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2394,"kind":2048,"name":"updateCampaign","url":"classes/pricing.campaigns.html#updatecampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2395,"kind":2048,"name":"createCampaign","url":"classes/pricing.campaigns.html#createcampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2396,"kind":1024,"name":"clientConfig","url":"classes/pricing.campaigns.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Campaigns"},{"id":2397,"kind":4194304,"name":"CampaignSearchResult","url":"classes/pricing.campaigns.html#campaignsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2398,"kind":4194304,"name":"Campaign","url":"classes/pricing.campaigns.html#campaign","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2399,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.campaigns.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2400,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.campaigns.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2401,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.campaigns.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2402,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#daterangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.DateRangeFilter"},{"id":2403,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.campaigns.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2404,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#etagresponse.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.EtagResponse"},{"id":2405,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.campaigns.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2406,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#integerrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.IntegerRangeFilter"},{"id":2407,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.campaigns.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2408,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited3.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited3"},{"id":2409,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.campaigns.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2410,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#synccreated.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.SyncCreated"},{"id":2411,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.campaigns.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2412,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#dateconditionalrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.DateConditionalRequest"},{"id":2413,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.campaigns.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2414,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited5.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited5"},{"id":2415,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.campaigns.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2416,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#etagconditionalrequest.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.EtagConditionalRequest"},{"id":2417,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.campaigns.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2418,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.AsyncCreated"},{"id":2419,"kind":4194304,"name":"RateLimited","url":"classes/pricing.campaigns.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2420,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited"},{"id":2421,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.campaigns.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2422,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited2"},{"id":2423,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.campaigns.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2424,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#offsetpaginated.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.OffsetPaginated"},{"id":2425,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.campaigns.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2426,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#rangefilter.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RangeFilter"},{"id":2427,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.campaigns.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2428,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited4.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited4"},{"id":2429,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.campaigns.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2430,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#numericrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.NumericRangeFilter"},{"id":2431,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.campaigns.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2432,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#datetimerangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.DatetimeRangeFilter"},{"id":2433,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.campaigns.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2434,"kind":4194304,"name":"Error","url":"classes/pricing.campaigns.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2435,"kind":4194304,"name":"Money","url":"classes/pricing.campaigns.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2436,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.campaigns.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2437,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.campaigns.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2438,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.campaigns.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2439,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.campaigns.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2440,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.campaigns.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2441,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.campaigns.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2442,"kind":4194304,"name":"OpenObject","url":"classes/pricing.campaigns.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2443,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.campaigns.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2444,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#queryparamslimit.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.QueryParamsLimit"},{"id":2445,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.campaigns.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2446,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#queryparamsoffset.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.QueryParamsOffset"},{"id":2447,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.campaigns.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2448,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#sitespecific-1.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.SiteSpecific"},{"id":2449,"kind":4194304,"name":"Selectable","url":"classes/pricing.campaigns.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2450,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#selectable.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.Selectable"},{"id":2451,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.campaigns.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2452,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.NoPropertiesAllowed"},{"id":2453,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.campaigns.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2454,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.campaigns.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2455,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.campaigns.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2456,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.campaigns.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2457,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.campaigns.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2458,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.campaigns.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2459,"kind":4194304,"name":"Query","url":"classes/pricing.campaigns.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2460,"kind":4194304,"name":"TermQuery","url":"classes/pricing.campaigns.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2461,"kind":4194304,"name":"TermFilter","url":"classes/pricing.campaigns.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2462,"kind":4194304,"name":"TextQuery","url":"classes/pricing.campaigns.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2463,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.campaigns.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2464,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.campaigns.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2465,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.campaigns.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2466,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.campaigns.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2467,"kind":4194304,"name":"Filter","url":"classes/pricing.campaigns.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2468,"kind":4194304,"name":"Sort","url":"classes/pricing.campaigns.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2469,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.campaigns.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2470,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.campaigns.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2471,"kind":4194304,"name":"L10nString","url":"classes/pricing.campaigns.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2472,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.campaigns.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2473,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.AttributeDefinition"},{"id":2474,"kind":32,"name":"defaultValue","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2475,"kind":32,"name":"id","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2476,"kind":32,"name":"name","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2477,"kind":32,"name":"description","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2478,"kind":32,"name":"key","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2479,"kind":32,"name":"localizable","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2480,"kind":32,"name":"mandatory","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2481,"kind":32,"name":"max","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2482,"kind":32,"name":"minLength","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2483,"kind":32,"name":"min","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2484,"kind":32,"name":"multiValueType","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2485,"kind":32,"name":"regularExpression","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2486,"kind":32,"name":"scale","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2487,"kind":32,"name":"searchable","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2488,"kind":32,"name":"siteSpecific","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2489,"kind":32,"name":"system","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2490,"kind":32,"name":"unit","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2491,"kind":32,"name":"possibleValues","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2492,"kind":32,"name":"type","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2493,"kind":32,"name":"visible","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2494,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.campaigns.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2495,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.PropertyValueDefinition"},{"id":2496,"kind":32,"name":"description","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2497,"kind":32,"name":"displayValue","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2498,"kind":32,"name":"id","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2499,"kind":32,"name":"position","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2500,"kind":32,"name":"value","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2501,"kind":4194304,"name":"CampaignDuplicate","url":"classes/pricing.campaigns.html#campaignduplicate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2502,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#campaignduplicate.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.CampaignDuplicate"},{"id":2503,"kind":4194304,"name":"CampaignNotFound","url":"classes/pricing.campaigns.html#campaignnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2504,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#campaignnotfound.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.CampaignNotFound"},{"id":2505,"kind":4194304,"name":"IdConflict","url":"classes/pricing.campaigns.html#idconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2506,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#idconflict.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.IdConflict"},{"id":2507,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2508,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2509,"kind":128,"name":"Coupons","url":"classes/pricing.coupons.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2510,"kind":512,"name":"constructor","url":"classes/pricing.coupons.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Coupons"},{"id":2511,"kind":2048,"name":"couponsSearch","url":"classes/pricing.coupons.html#couponssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2512,"kind":2048,"name":"couponRedemptionsSearch","url":"classes/pricing.coupons.html#couponredemptionssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2513,"kind":2048,"name":"redeemCoupon","url":"classes/pricing.coupons.html#redeemcoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2514,"kind":2048,"name":"deleteCoupon","url":"classes/pricing.coupons.html#deletecoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2515,"kind":2048,"name":"getCoupon","url":"classes/pricing.coupons.html#getcoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2516,"kind":2048,"name":"updateCoupon","url":"classes/pricing.coupons.html#updatecoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2517,"kind":2048,"name":"createCoupon","url":"classes/pricing.coupons.html#createcoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2518,"kind":2048,"name":"getCouponCodes","url":"classes/pricing.coupons.html#getcouponcodes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2519,"kind":2048,"name":"updateCouponCodes","url":"classes/pricing.coupons.html#updatecouponcodes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2520,"kind":1024,"name":"clientConfig","url":"classes/pricing.coupons.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Coupons"},{"id":2521,"kind":4194304,"name":"CouponRedemptionSearchResult","url":"classes/pricing.coupons.html#couponredemptionsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2522,"kind":4194304,"name":"CouponCodes","url":"classes/pricing.coupons.html#couponcodes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2523,"kind":4194304,"name":"RedemptionLimits","url":"classes/pricing.coupons.html#redemptionlimits","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2524,"kind":4194304,"name":"CouponRedemption","url":"classes/pricing.coupons.html#couponredemption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2525,"kind":4194304,"name":"RedemptionLimitPerPeriod","url":"classes/pricing.coupons.html#redemptionlimitperperiod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2526,"kind":4194304,"name":"CouponCode","url":"classes/pricing.coupons.html#couponcode","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2527,"kind":4194304,"name":"CouponSearchResult","url":"classes/pricing.coupons.html#couponsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2528,"kind":4194304,"name":"CouponCodeRedemptionRequest","url":"classes/pricing.coupons.html#couponcoderedemptionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2529,"kind":4194304,"name":"Coupon","url":"classes/pricing.coupons.html#coupon","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2530,"kind":4194304,"name":"CouponMultiCodesRequest","url":"classes/pricing.coupons.html#couponmulticodesrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2531,"kind":4194304,"name":"CouponSystemCodeConfig","url":"classes/pricing.coupons.html#couponsystemcodeconfig","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2532,"kind":4194304,"name":"CouponNotFound","url":"classes/pricing.coupons.html#couponnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2533,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponnotfound.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponNotFound"},{"id":2534,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.coupons.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2535,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.coupons.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2536,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.coupons.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2537,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.DateRangeFilter"},{"id":2538,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.coupons.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2539,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.EtagResponse"},{"id":2540,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.coupons.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2541,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.IntegerRangeFilter"},{"id":2542,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.coupons.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2543,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited3.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited3"},{"id":2544,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.coupons.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2545,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#synccreated.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.SyncCreated"},{"id":2546,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.coupons.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2547,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.DateConditionalRequest"},{"id":2548,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.coupons.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2549,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited5.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited5"},{"id":2550,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.coupons.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2551,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.EtagConditionalRequest"},{"id":2552,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.coupons.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2553,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.AsyncCreated"},{"id":2554,"kind":4194304,"name":"RateLimited","url":"classes/pricing.coupons.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2555,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited"},{"id":2556,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.coupons.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2557,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited2"},{"id":2558,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.coupons.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2559,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#offsetpaginated.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.OffsetPaginated"},{"id":2560,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.coupons.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2561,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#rangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RangeFilter"},{"id":2562,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.coupons.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2563,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited4.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited4"},{"id":2564,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.coupons.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2565,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#numericrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.NumericRangeFilter"},{"id":2566,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.coupons.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2567,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.DatetimeRangeFilter"},{"id":2568,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.coupons.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2569,"kind":4194304,"name":"Error","url":"classes/pricing.coupons.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2570,"kind":4194304,"name":"Money","url":"classes/pricing.coupons.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2571,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.coupons.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2572,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.coupons.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2573,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.coupons.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2574,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.coupons.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2575,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.coupons.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2576,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.coupons.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2577,"kind":4194304,"name":"OpenObject","url":"classes/pricing.coupons.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2578,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.coupons.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2579,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#queryparamslimit.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.QueryParamsLimit"},{"id":2580,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.coupons.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2581,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#queryparamsoffset.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.QueryParamsOffset"},{"id":2582,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.coupons.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2583,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#sitespecific-1.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.SiteSpecific"},{"id":2584,"kind":4194304,"name":"Selectable","url":"classes/pricing.coupons.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2585,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#selectable.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.Selectable"},{"id":2586,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.coupons.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2587,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#nopropertiesallowed.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.NoPropertiesAllowed"},{"id":2588,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.coupons.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2589,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.coupons.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2590,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.coupons.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2591,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.coupons.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2592,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.coupons.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2593,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.coupons.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2594,"kind":4194304,"name":"Query","url":"classes/pricing.coupons.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2595,"kind":4194304,"name":"TermQuery","url":"classes/pricing.coupons.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2596,"kind":4194304,"name":"TermFilter","url":"classes/pricing.coupons.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2597,"kind":4194304,"name":"TextQuery","url":"classes/pricing.coupons.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2598,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.coupons.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2599,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.coupons.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2600,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.coupons.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2601,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.coupons.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2602,"kind":4194304,"name":"Filter","url":"classes/pricing.coupons.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2603,"kind":4194304,"name":"Sort","url":"classes/pricing.coupons.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2604,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.coupons.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2605,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.coupons.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2606,"kind":4194304,"name":"L10nString","url":"classes/pricing.coupons.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2607,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.coupons.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2608,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.AttributeDefinition"},{"id":2609,"kind":32,"name":"defaultValue","url":"classes/pricing.coupons.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2610,"kind":32,"name":"id","url":"classes/pricing.coupons.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2611,"kind":32,"name":"name","url":"classes/pricing.coupons.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2612,"kind":32,"name":"description","url":"classes/pricing.coupons.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2613,"kind":32,"name":"key","url":"classes/pricing.coupons.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2614,"kind":32,"name":"localizable","url":"classes/pricing.coupons.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2615,"kind":32,"name":"mandatory","url":"classes/pricing.coupons.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2616,"kind":32,"name":"max","url":"classes/pricing.coupons.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2617,"kind":32,"name":"minLength","url":"classes/pricing.coupons.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2618,"kind":32,"name":"min","url":"classes/pricing.coupons.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2619,"kind":32,"name":"multiValueType","url":"classes/pricing.coupons.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2620,"kind":32,"name":"regularExpression","url":"classes/pricing.coupons.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2621,"kind":32,"name":"scale","url":"classes/pricing.coupons.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2622,"kind":32,"name":"searchable","url":"classes/pricing.coupons.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2623,"kind":32,"name":"siteSpecific","url":"classes/pricing.coupons.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2624,"kind":32,"name":"system","url":"classes/pricing.coupons.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2625,"kind":32,"name":"unit","url":"classes/pricing.coupons.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2626,"kind":32,"name":"possibleValues","url":"classes/pricing.coupons.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2627,"kind":32,"name":"type","url":"classes/pricing.coupons.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2628,"kind":32,"name":"visible","url":"classes/pricing.coupons.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2629,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.coupons.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2630,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.PropertyValueDefinition"},{"id":2631,"kind":32,"name":"description","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-12.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2632,"kind":32,"name":"displayValue","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-12.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2633,"kind":32,"name":"id","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2634,"kind":32,"name":"position","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-12.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2635,"kind":32,"name":"value","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-12.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2636,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2637,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2638,"kind":128,"name":"GiftCertificates","url":"classes/pricing.giftcertificates.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2639,"kind":512,"name":"constructor","url":"classes/pricing.giftcertificates.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.GiftCertificates"},{"id":2640,"kind":2048,"name":"createGiftCertificate","url":"classes/pricing.giftcertificates.html#creategiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2641,"kind":2048,"name":"giftCertificatesSearch","url":"classes/pricing.giftcertificates.html#giftcertificatessearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2642,"kind":2048,"name":"deleteGiftCertificate","url":"classes/pricing.giftcertificates.html#deletegiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2643,"kind":2048,"name":"getGiftCertificate","url":"classes/pricing.giftcertificates.html#getgiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2644,"kind":2048,"name":"updateGiftCertificate","url":"classes/pricing.giftcertificates.html#updategiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2645,"kind":1024,"name":"clientConfig","url":"classes/pricing.giftcertificates.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.GiftCertificates"},{"id":2646,"kind":4194304,"name":"Money","url":"classes/pricing.giftcertificates.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2647,"kind":4194304,"name":"GiftCertificate","url":"classes/pricing.giftcertificates.html#giftcertificate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2648,"kind":4194304,"name":"GiftCertificateSearchResult","url":"classes/pricing.giftcertificates.html#giftcertificatesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2649,"kind":4194304,"name":"AccountTransaction","url":"classes/pricing.giftcertificates.html#accounttransaction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2650,"kind":4194304,"name":"GiftCertificates","url":"classes/pricing.giftcertificates.html#giftcertificates","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2651,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.giftcertificates.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2652,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.giftcertificates.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2653,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.giftcertificates.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2654,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.DateRangeFilter"},{"id":2655,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.giftcertificates.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2656,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.EtagResponse"},{"id":2657,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.giftcertificates.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2658,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#integerrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.IntegerRangeFilter"},{"id":2659,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.giftcertificates.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2660,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited3.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited3"},{"id":2661,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.giftcertificates.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2662,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#synccreated.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.SyncCreated"},{"id":2663,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.giftcertificates.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2664,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.DateConditionalRequest"},{"id":2665,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.giftcertificates.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2666,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited5.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited5"},{"id":2667,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.giftcertificates.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2668,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.EtagConditionalRequest"},{"id":2669,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.giftcertificates.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2670,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.AsyncCreated"},{"id":2671,"kind":4194304,"name":"RateLimited","url":"classes/pricing.giftcertificates.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2672,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited"},{"id":2673,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.giftcertificates.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2674,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited2"},{"id":2675,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.giftcertificates.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2676,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#offsetpaginated.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.OffsetPaginated"},{"id":2677,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.giftcertificates.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2678,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#rangefilter.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RangeFilter"},{"id":2679,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.giftcertificates.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2680,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited4.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited4"},{"id":2681,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.giftcertificates.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2682,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#numericrangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.NumericRangeFilter"},{"id":2683,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.giftcertificates.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2684,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.DatetimeRangeFilter"},{"id":2685,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.giftcertificates.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2686,"kind":4194304,"name":"Error","url":"classes/pricing.giftcertificates.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2687,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.giftcertificates.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2688,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.giftcertificates.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2689,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.giftcertificates.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2690,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.giftcertificates.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2691,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.giftcertificates.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2692,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.giftcertificates.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2693,"kind":4194304,"name":"OpenObject","url":"classes/pricing.giftcertificates.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2694,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.giftcertificates.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2695,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#queryparamslimit.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.QueryParamsLimit"},{"id":2696,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.giftcertificates.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2697,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#queryparamsoffset.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.QueryParamsOffset"},{"id":2698,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.giftcertificates.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2699,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#sitespecific-1.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.SiteSpecific"},{"id":2700,"kind":4194304,"name":"Selectable","url":"classes/pricing.giftcertificates.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2701,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#selectable.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.Selectable"},{"id":2702,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.giftcertificates.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2703,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#nopropertiesallowed.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.NoPropertiesAllowed"},{"id":2704,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.giftcertificates.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2705,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.giftcertificates.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2706,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.giftcertificates.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2707,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.giftcertificates.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2708,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.giftcertificates.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2709,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.giftcertificates.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2710,"kind":4194304,"name":"Query","url":"classes/pricing.giftcertificates.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2711,"kind":4194304,"name":"TermQuery","url":"classes/pricing.giftcertificates.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2712,"kind":4194304,"name":"TermFilter","url":"classes/pricing.giftcertificates.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2713,"kind":4194304,"name":"TextQuery","url":"classes/pricing.giftcertificates.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2714,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.giftcertificates.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2715,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.giftcertificates.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2716,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.giftcertificates.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2717,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.giftcertificates.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2718,"kind":4194304,"name":"Filter","url":"classes/pricing.giftcertificates.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2719,"kind":4194304,"name":"Sort","url":"classes/pricing.giftcertificates.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2720,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.giftcertificates.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2721,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.giftcertificates.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2722,"kind":4194304,"name":"L10nString","url":"classes/pricing.giftcertificates.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2723,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.giftcertificates.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2724,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.AttributeDefinition"},{"id":2725,"kind":32,"name":"defaultValue","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2726,"kind":32,"name":"id","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2727,"kind":32,"name":"name","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2728,"kind":32,"name":"description","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2729,"kind":32,"name":"key","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2730,"kind":32,"name":"localizable","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2731,"kind":32,"name":"mandatory","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2732,"kind":32,"name":"max","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2733,"kind":32,"name":"minLength","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2734,"kind":32,"name":"min","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2735,"kind":32,"name":"multiValueType","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2736,"kind":32,"name":"regularExpression","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2737,"kind":32,"name":"scale","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2738,"kind":32,"name":"searchable","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2739,"kind":32,"name":"siteSpecific","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2740,"kind":32,"name":"system","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2741,"kind":32,"name":"unit","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2742,"kind":32,"name":"possibleValues","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2743,"kind":32,"name":"type","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2744,"kind":32,"name":"visible","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2745,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2746,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.PropertyValueDefinition"},{"id":2747,"kind":32,"name":"description","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-18.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2748,"kind":32,"name":"displayValue","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-18.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2749,"kind":32,"name":"id","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-18.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2750,"kind":32,"name":"position","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-18.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2751,"kind":32,"name":"value","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-18.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2752,"kind":4194304,"name":"GiftCertificateCreateMerchantIdNotUniqueException","url":"classes/pricing.giftcertificates.html#giftcertificatecreatemerchantidnotuniqueexception","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2753,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#giftcertificatecreatemerchantidnotuniqueexception.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.GiftCertificateCreateMerchantIdNotUniqueException"},{"id":2754,"kind":4194304,"name":"GiftCertificateNotFound","url":"classes/pricing.giftcertificates.html#giftcertificatenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2755,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#giftcertificatenotfound.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.GiftCertificateNotFound"},{"id":2756,"kind":4194304,"name":"MalformedQuery","url":"classes/pricing.giftcertificates.html#malformedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2757,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#malformedquery.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.MalformedQuery"},{"id":2758,"kind":4194304,"name":"GiftCertificateAmountOutOfRangeException","url":"classes/pricing.giftcertificates.html#giftcertificateamountoutofrangeexception","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2759,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#giftcertificateamountoutofrangeexception.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.GiftCertificateAmountOutOfRangeException"},{"id":2760,"kind":4194304,"name":"InvalidRecipientEmail","url":"classes/pricing.giftcertificates.html#invalidrecipientemail","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2761,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#invalidrecipientemail.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.InvalidRecipientEmail"},{"id":2762,"kind":4194304,"name":"UnqueryableField","url":"classes/pricing.giftcertificates.html#unqueryablefield","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2763,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#unqueryablefield.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.UnqueryableField"},{"id":2764,"kind":4194304,"name":"InvalidGiftCertificateStatus","url":"classes/pricing.giftcertificates.html#invalidgiftcertificatestatus","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2765,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#invalidgiftcertificatestatus.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.InvalidGiftCertificateStatus"},{"id":2766,"kind":4194304,"name":"InvalidGiftCertificateException","url":"classes/pricing.giftcertificates.html#invalidgiftcertificateexception","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2767,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#invalidgiftcertificateexception.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.InvalidGiftCertificateException"},{"id":2768,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2769,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2770,"kind":128,"name":"Promotions","url":"classes/pricing.promotions.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2771,"kind":512,"name":"constructor","url":"classes/pricing.promotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Promotions"},{"id":2772,"kind":2048,"name":"promotionsSearch","url":"classes/pricing.promotions.html#promotionssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2773,"kind":2048,"name":"deletePromotion","url":"classes/pricing.promotions.html#deletepromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2774,"kind":2048,"name":"getPromotion","url":"classes/pricing.promotions.html#getpromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2775,"kind":2048,"name":"updatePromotion","url":"classes/pricing.promotions.html#updatepromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2776,"kind":2048,"name":"createPromotion","url":"classes/pricing.promotions.html#createpromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2777,"kind":1024,"name":"clientConfig","url":"classes/pricing.promotions.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Promotions"},{"id":2778,"kind":4194304,"name":"PromotionSearchResult","url":"classes/pricing.promotions.html#promotionsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2779,"kind":4194304,"name":"TimeOfDay","url":"classes/pricing.promotions.html#timeofday","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2780,"kind":4194304,"name":"Campaign","url":"classes/pricing.promotions.html#campaign","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2781,"kind":4194304,"name":"PromotionCampaignAssignment","url":"classes/pricing.promotions.html#promotioncampaignassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2782,"kind":4194304,"name":"Tag","url":"classes/pricing.promotions.html#tag","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2783,"kind":4194304,"name":"Promotion","url":"classes/pricing.promotions.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2784,"kind":4194304,"name":"PromotionAssignmentInformation","url":"classes/pricing.promotions.html#promotionassignmentinformation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2785,"kind":4194304,"name":"Schedule","url":"classes/pricing.promotions.html#schedule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2786,"kind":4194304,"name":"Recurrence","url":"classes/pricing.promotions.html#recurrence","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2787,"kind":4194304,"name":"PromotionAbtestGroupAssignment","url":"classes/pricing.promotions.html#promotionabtestgroupassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2788,"kind":4194304,"name":"PromotionNotFound","url":"classes/pricing.promotions.html#promotionnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2789,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#promotionnotfound.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PromotionNotFound"},{"id":2790,"kind":4194304,"name":"PromotionIdConflict","url":"classes/pricing.promotions.html#promotionidconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2791,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#promotionidconflict.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PromotionIdConflict"},{"id":2792,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.promotions.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2793,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.promotions.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2794,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.promotions.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2795,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.DateRangeFilter"},{"id":2796,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.promotions.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2797,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.EtagResponse"},{"id":2798,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.promotions.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2799,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.IntegerRangeFilter"},{"id":2800,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.promotions.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2801,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited3"},{"id":2802,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.promotions.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2803,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#synccreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.SyncCreated"},{"id":2804,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.promotions.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2805,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.DateConditionalRequest"},{"id":2806,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.promotions.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2807,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited5"},{"id":2808,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.promotions.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2809,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.EtagConditionalRequest"},{"id":2810,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.promotions.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2811,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.AsyncCreated"},{"id":2812,"kind":4194304,"name":"RateLimited","url":"classes/pricing.promotions.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2813,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited"},{"id":2814,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.promotions.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2815,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited2"},{"id":2816,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.promotions.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2817,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.OffsetPaginated"},{"id":2818,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.promotions.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2819,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#rangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RangeFilter"},{"id":2820,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.promotions.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2821,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited4"},{"id":2822,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.promotions.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2823,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.NumericRangeFilter"},{"id":2824,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.promotions.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2825,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.DatetimeRangeFilter"},{"id":2826,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.promotions.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2827,"kind":4194304,"name":"Error","url":"classes/pricing.promotions.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2828,"kind":4194304,"name":"Money","url":"classes/pricing.promotions.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2829,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.promotions.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2830,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.promotions.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2831,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.promotions.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2832,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.promotions.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2833,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.promotions.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2834,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.promotions.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2835,"kind":4194304,"name":"OpenObject","url":"classes/pricing.promotions.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2836,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.promotions.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2837,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.QueryParamsLimit"},{"id":2838,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.promotions.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2839,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.QueryParamsOffset"},{"id":2840,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.promotions.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2841,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.SiteSpecific"},{"id":2842,"kind":4194304,"name":"Selectable","url":"classes/pricing.promotions.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2843,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.Selectable"},{"id":2844,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.promotions.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2845,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.NoPropertiesAllowed"},{"id":2846,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.promotions.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2847,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.promotions.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2848,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.promotions.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2849,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.promotions.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2850,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.promotions.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2851,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.promotions.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2852,"kind":4194304,"name":"Query","url":"classes/pricing.promotions.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2853,"kind":4194304,"name":"TermQuery","url":"classes/pricing.promotions.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2854,"kind":4194304,"name":"TermFilter","url":"classes/pricing.promotions.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2855,"kind":4194304,"name":"TextQuery","url":"classes/pricing.promotions.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2856,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.promotions.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2857,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.promotions.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2858,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.promotions.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2859,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.promotions.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2860,"kind":4194304,"name":"Filter","url":"classes/pricing.promotions.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2861,"kind":4194304,"name":"Sort","url":"classes/pricing.promotions.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2862,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.promotions.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2863,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.promotions.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2864,"kind":4194304,"name":"L10nString","url":"classes/pricing.promotions.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2865,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.promotions.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2866,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.AttributeDefinition"},{"id":2867,"kind":32,"name":"defaultValue","url":"classes/pricing.promotions.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2868,"kind":32,"name":"id","url":"classes/pricing.promotions.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2869,"kind":32,"name":"name","url":"classes/pricing.promotions.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2870,"kind":32,"name":"description","url":"classes/pricing.promotions.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2871,"kind":32,"name":"key","url":"classes/pricing.promotions.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2872,"kind":32,"name":"localizable","url":"classes/pricing.promotions.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2873,"kind":32,"name":"mandatory","url":"classes/pricing.promotions.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2874,"kind":32,"name":"max","url":"classes/pricing.promotions.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2875,"kind":32,"name":"minLength","url":"classes/pricing.promotions.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2876,"kind":32,"name":"min","url":"classes/pricing.promotions.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2877,"kind":32,"name":"multiValueType","url":"classes/pricing.promotions.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2878,"kind":32,"name":"regularExpression","url":"classes/pricing.promotions.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2879,"kind":32,"name":"scale","url":"classes/pricing.promotions.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2880,"kind":32,"name":"searchable","url":"classes/pricing.promotions.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2881,"kind":32,"name":"siteSpecific","url":"classes/pricing.promotions.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2882,"kind":32,"name":"system","url":"classes/pricing.promotions.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2883,"kind":32,"name":"unit","url":"classes/pricing.promotions.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2884,"kind":32,"name":"possibleValues","url":"classes/pricing.promotions.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2885,"kind":32,"name":"type","url":"classes/pricing.promotions.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2886,"kind":32,"name":"visible","url":"classes/pricing.promotions.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":2887,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.promotions.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2888,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PropertyValueDefinition"},{"id":2889,"kind":32,"name":"description","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":2890,"kind":32,"name":"displayValue","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":2891,"kind":32,"name":"id","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":2892,"kind":32,"name":"position","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":2893,"kind":32,"name":"value","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":2894,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2895,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2896,"kind":128,"name":"ShopperGiftCertificates","url":"classes/pricing.shoppergiftcertificates.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2897,"kind":512,"name":"constructor","url":"classes/pricing.shoppergiftcertificates.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.ShopperGiftCertificates"},{"id":2898,"kind":2048,"name":"getGiftCertificate","url":"classes/pricing.shoppergiftcertificates.html#getgiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.ShopperGiftCertificates"},{"id":2899,"kind":1024,"name":"clientConfig","url":"classes/pricing.shoppergiftcertificates.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.ShopperGiftCertificates"},{"id":2900,"kind":4194304,"name":"GiftCertificate","url":"classes/pricing.shoppergiftcertificates.html#giftcertificate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2901,"kind":4194304,"name":"GiftCertificateRequest","url":"classes/pricing.shoppergiftcertificates.html#giftcertificaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2902,"kind":4194304,"name":"NotFound","url":"classes/pricing.shoppergiftcertificates.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2903,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#notfound.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.NotFound"},{"id":2904,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.shoppergiftcertificates.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2905,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.shoppergiftcertificates.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2906,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2907,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.DateRangeFilter"},{"id":2908,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.shoppergiftcertificates.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2909,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.EtagResponse"},{"id":2910,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2911,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.IntegerRangeFilter"},{"id":2912,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.shoppergiftcertificates.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2913,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited3.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited3"},{"id":2914,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.shoppergiftcertificates.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2915,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#synccreated.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.SyncCreated"},{"id":2916,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.shoppergiftcertificates.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2917,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.DateConditionalRequest"},{"id":2918,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.shoppergiftcertificates.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2919,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited5.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited5"},{"id":2920,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.shoppergiftcertificates.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2921,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.EtagConditionalRequest"},{"id":2922,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.shoppergiftcertificates.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2923,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.AsyncCreated"},{"id":2924,"kind":4194304,"name":"RateLimited","url":"classes/pricing.shoppergiftcertificates.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2925,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited"},{"id":2926,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.shoppergiftcertificates.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2927,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited2"},{"id":2928,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.shoppergiftcertificates.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2929,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#offsetpaginated.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.OffsetPaginated"},{"id":2930,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.shoppergiftcertificates.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2931,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#rangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RangeFilter"},{"id":2932,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.shoppergiftcertificates.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2933,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited4.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited4"},{"id":2934,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2935,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#numericrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.NumericRangeFilter"},{"id":2936,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2937,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.DatetimeRangeFilter"},{"id":2938,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.shoppergiftcertificates.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2939,"kind":4194304,"name":"Error","url":"classes/pricing.shoppergiftcertificates.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2940,"kind":4194304,"name":"Money","url":"classes/pricing.shoppergiftcertificates.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2941,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.shoppergiftcertificates.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2942,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.shoppergiftcertificates.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2943,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.shoppergiftcertificates.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2944,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.shoppergiftcertificates.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2945,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.shoppergiftcertificates.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2946,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.shoppergiftcertificates.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2947,"kind":4194304,"name":"OpenObject","url":"classes/pricing.shoppergiftcertificates.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2948,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.shoppergiftcertificates.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2949,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#queryparamslimit.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.QueryParamsLimit"},{"id":2950,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.shoppergiftcertificates.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2951,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#queryparamsoffset.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.QueryParamsOffset"},{"id":2952,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.shoppergiftcertificates.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2953,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#sitespecific-1.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.SiteSpecific"},{"id":2954,"kind":4194304,"name":"Selectable","url":"classes/pricing.shoppergiftcertificates.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2955,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#selectable.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.Selectable"},{"id":2956,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.shoppergiftcertificates.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2957,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.NoPropertiesAllowed"},{"id":2958,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.shoppergiftcertificates.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2959,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.shoppergiftcertificates.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2960,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.shoppergiftcertificates.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2961,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.shoppergiftcertificates.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2962,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.shoppergiftcertificates.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2963,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.shoppergiftcertificates.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2964,"kind":4194304,"name":"Query","url":"classes/pricing.shoppergiftcertificates.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2965,"kind":4194304,"name":"TermQuery","url":"classes/pricing.shoppergiftcertificates.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2966,"kind":4194304,"name":"TermFilter","url":"classes/pricing.shoppergiftcertificates.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2967,"kind":4194304,"name":"TextQuery","url":"classes/pricing.shoppergiftcertificates.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2968,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.shoppergiftcertificates.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2969,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.shoppergiftcertificates.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2970,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.shoppergiftcertificates.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2971,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.shoppergiftcertificates.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2972,"kind":4194304,"name":"Filter","url":"classes/pricing.shoppergiftcertificates.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2973,"kind":4194304,"name":"Sort","url":"classes/pricing.shoppergiftcertificates.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2974,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.shoppergiftcertificates.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2975,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.shoppergiftcertificates.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2976,"kind":4194304,"name":"L10nString","url":"classes/pricing.shoppergiftcertificates.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2977,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":2978,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.AttributeDefinition"},{"id":2979,"kind":32,"name":"defaultValue","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2980,"kind":32,"name":"id","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2981,"kind":32,"name":"name","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2982,"kind":32,"name":"description","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2983,"kind":32,"name":"key","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2984,"kind":32,"name":"localizable","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2985,"kind":32,"name":"mandatory","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2986,"kind":32,"name":"max","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2987,"kind":32,"name":"minLength","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2988,"kind":32,"name":"min","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2989,"kind":32,"name":"multiValueType","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2990,"kind":32,"name":"regularExpression","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2991,"kind":32,"name":"scale","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2992,"kind":32,"name":"searchable","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2993,"kind":32,"name":"siteSpecific","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2994,"kind":32,"name":"system","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2995,"kind":32,"name":"unit","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2996,"kind":32,"name":"possibleValues","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2997,"kind":32,"name":"type","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2998,"kind":32,"name":"visible","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":2999,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3000,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition"},{"id":3001,"kind":32,"name":"description","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-12.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3002,"kind":32,"name":"displayValue","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-12.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3003,"kind":32,"name":"id","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3004,"kind":32,"name":"position","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-12.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3005,"kind":32,"name":"value","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-12.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3006,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3007,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3008,"kind":128,"name":"ShopperPromotions","url":"classes/pricing.shopperpromotions.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":3009,"kind":512,"name":"constructor","url":"classes/pricing.shopperpromotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.ShopperPromotions"},{"id":3010,"kind":2048,"name":"getPromotions","url":"classes/pricing.shopperpromotions.html#getpromotions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.ShopperPromotions"},{"id":3011,"kind":2048,"name":"getPromotionsForCampaign","url":"classes/pricing.shopperpromotions.html#getpromotionsforcampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.ShopperPromotions"},{"id":3012,"kind":1024,"name":"clientConfig","url":"classes/pricing.shopperpromotions.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.ShopperPromotions"},{"id":3013,"kind":4194304,"name":"Promotion","url":"classes/pricing.shopperpromotions.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3014,"kind":4194304,"name":"PromotionResult","url":"classes/pricing.shopperpromotions.html#promotionresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3015,"kind":4194304,"name":"Error","url":"classes/pricing.shopperpromotions.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3016,"kind":4194304,"name":"PromotionNotFound","url":"classes/pricing.shopperpromotions.html#promotionnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3017,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#promotionnotfound.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.PromotionNotFound"},{"id":3018,"kind":4194304,"name":"badrequest","url":"classes/pricing.shopperpromotions.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3019,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#badrequest.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.badrequest"},{"id":3020,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.shopperpromotions.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3021,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.shopperpromotions.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3022,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.shopperpromotions.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3023,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.DateRangeFilter"},{"id":3024,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.shopperpromotions.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3025,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.EtagResponse"},{"id":3026,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.shopperpromotions.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3027,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.IntegerRangeFilter"},{"id":3028,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.shopperpromotions.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3029,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited3.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited3"},{"id":3030,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.shopperpromotions.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3031,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#synccreated.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.SyncCreated"},{"id":3032,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.shopperpromotions.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3033,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.DateConditionalRequest"},{"id":3034,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.shopperpromotions.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3035,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited5.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited5"},{"id":3036,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.shopperpromotions.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3037,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.EtagConditionalRequest"},{"id":3038,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.shopperpromotions.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3039,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.AsyncCreated"},{"id":3040,"kind":4194304,"name":"RateLimited","url":"classes/pricing.shopperpromotions.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3041,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited"},{"id":3042,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.shopperpromotions.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3043,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited2"},{"id":3044,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.shopperpromotions.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3045,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.OffsetPaginated"},{"id":3046,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.shopperpromotions.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3047,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#rangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RangeFilter"},{"id":3048,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.shopperpromotions.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3049,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited4.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited4"},{"id":3050,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.shopperpromotions.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3051,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.NumericRangeFilter"},{"id":3052,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.shopperpromotions.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3053,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.DatetimeRangeFilter"},{"id":3054,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.shopperpromotions.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3055,"kind":4194304,"name":"Money","url":"classes/pricing.shopperpromotions.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3056,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.shopperpromotions.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3057,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.shopperpromotions.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3058,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.shopperpromotions.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3059,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.shopperpromotions.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3060,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.shopperpromotions.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3061,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.shopperpromotions.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3062,"kind":4194304,"name":"OpenObject","url":"classes/pricing.shopperpromotions.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3063,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.shopperpromotions.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3064,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#queryparamslimit.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.QueryParamsLimit"},{"id":3065,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.shopperpromotions.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3066,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#queryparamsoffset.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.QueryParamsOffset"},{"id":3067,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.shopperpromotions.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3068,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#sitespecific-1.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.SiteSpecific"},{"id":3069,"kind":4194304,"name":"Selectable","url":"classes/pricing.shopperpromotions.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3070,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#selectable.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.Selectable"},{"id":3071,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.shopperpromotions.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3072,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.NoPropertiesAllowed"},{"id":3073,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.shopperpromotions.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3074,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.shopperpromotions.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3075,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.shopperpromotions.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3076,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.shopperpromotions.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3077,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.shopperpromotions.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3078,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.shopperpromotions.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3079,"kind":4194304,"name":"Query","url":"classes/pricing.shopperpromotions.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3080,"kind":4194304,"name":"TermQuery","url":"classes/pricing.shopperpromotions.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3081,"kind":4194304,"name":"TermFilter","url":"classes/pricing.shopperpromotions.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3082,"kind":4194304,"name":"TextQuery","url":"classes/pricing.shopperpromotions.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3083,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.shopperpromotions.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3084,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.shopperpromotions.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3085,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.shopperpromotions.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3086,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.shopperpromotions.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3087,"kind":4194304,"name":"Filter","url":"classes/pricing.shopperpromotions.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3088,"kind":4194304,"name":"Sort","url":"classes/pricing.shopperpromotions.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3089,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.shopperpromotions.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3090,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.shopperpromotions.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3091,"kind":4194304,"name":"L10nString","url":"classes/pricing.shopperpromotions.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3092,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.shopperpromotions.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3093,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.AttributeDefinition"},{"id":3094,"kind":32,"name":"defaultValue","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3095,"kind":32,"name":"id","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3096,"kind":32,"name":"name","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3097,"kind":32,"name":"description","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3098,"kind":32,"name":"key","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3099,"kind":32,"name":"localizable","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3100,"kind":32,"name":"mandatory","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3101,"kind":32,"name":"max","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3102,"kind":32,"name":"minLength","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3103,"kind":32,"name":"min","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3104,"kind":32,"name":"multiValueType","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3105,"kind":32,"name":"regularExpression","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3106,"kind":32,"name":"scale","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3107,"kind":32,"name":"searchable","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3108,"kind":32,"name":"siteSpecific","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3109,"kind":32,"name":"system","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3110,"kind":32,"name":"unit","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3111,"kind":32,"name":"possibleValues","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3112,"kind":32,"name":"type","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3113,"kind":32,"name":"visible","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3114,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3115,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.PropertyValueDefinition"},{"id":3116,"kind":32,"name":"description","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-12.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3117,"kind":32,"name":"displayValue","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-12.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3118,"kind":32,"name":"id","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3119,"kind":32,"name":"position","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-12.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3120,"kind":32,"name":"value","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-12.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3121,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-6","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3122,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-6","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3123,"kind":128,"name":"SourceCodeGroups","url":"classes/pricing.sourcecodegroups.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":3124,"kind":512,"name":"constructor","url":"classes/pricing.sourcecodegroups.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.SourceCodeGroups"},{"id":3125,"kind":2048,"name":"deleteSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#deletesourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3126,"kind":2048,"name":"getSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#getsourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3127,"kind":2048,"name":"updateSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#updatesourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3128,"kind":2048,"name":"createSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#createsourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3129,"kind":2048,"name":"sourceCodeGroupsSearch","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3130,"kind":1024,"name":"clientConfig","url":"classes/pricing.sourcecodegroups.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.SourceCodeGroups"},{"id":3131,"kind":4194304,"name":"SourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#sourcecodegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3132,"kind":4194304,"name":"SourceCodeGroupSearchResult","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3133,"kind":4194304,"name":"SourceCodeRedirectInfo","url":"classes/pricing.sourcecodegroups.html#sourcecoderedirectinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3134,"kind":4194304,"name":"SourceCodeSpecification","url":"classes/pricing.sourcecodegroups.html#sourcecodespecification","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3135,"kind":4194304,"name":"SourceCodeGroupNotFound","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3136,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupnotfound.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SourceCodeGroupNotFound"},{"id":3137,"kind":4194304,"name":"SourceCodeGroupInvalid","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupinvalid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3138,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupinvalid.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SourceCodeGroupInvalid"},{"id":3139,"kind":4194304,"name":"IdConflict","url":"classes/pricing.sourcecodegroups.html#idconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3140,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#idconflict.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.IdConflict"},{"id":3141,"kind":4194304,"name":"InvalidQuery","url":"classes/pricing.sourcecodegroups.html#invalidquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3142,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#invalidquery.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.InvalidQuery"},{"id":3143,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.sourcecodegroups.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3144,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.sourcecodegroups.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3145,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.sourcecodegroups.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3146,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.DateRangeFilter"},{"id":3147,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.sourcecodegroups.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3148,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.EtagResponse"},{"id":3149,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.sourcecodegroups.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3150,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.IntegerRangeFilter"},{"id":3151,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.sourcecodegroups.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3152,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited3"},{"id":3153,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.sourcecodegroups.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3154,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#synccreated.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SyncCreated"},{"id":3155,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.sourcecodegroups.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3156,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.DateConditionalRequest"},{"id":3157,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.sourcecodegroups.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3158,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited5"},{"id":3159,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.sourcecodegroups.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3160,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.EtagConditionalRequest"},{"id":3161,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.sourcecodegroups.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3162,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.AsyncCreated"},{"id":3163,"kind":4194304,"name":"RateLimited","url":"classes/pricing.sourcecodegroups.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3164,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited"},{"id":3165,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.sourcecodegroups.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3166,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited2"},{"id":3167,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.sourcecodegroups.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3168,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#offsetpaginated.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.OffsetPaginated"},{"id":3169,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.sourcecodegroups.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3170,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#rangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RangeFilter"},{"id":3171,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.sourcecodegroups.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3172,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited4"},{"id":3173,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.sourcecodegroups.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3174,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#numericrangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.NumericRangeFilter"},{"id":3175,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.sourcecodegroups.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3176,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.DatetimeRangeFilter"},{"id":3177,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.sourcecodegroups.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3178,"kind":4194304,"name":"Error","url":"classes/pricing.sourcecodegroups.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3179,"kind":4194304,"name":"Money","url":"classes/pricing.sourcecodegroups.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3180,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.sourcecodegroups.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3181,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.sourcecodegroups.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3182,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.sourcecodegroups.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3183,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.sourcecodegroups.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3184,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.sourcecodegroups.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3185,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.sourcecodegroups.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3186,"kind":4194304,"name":"OpenObject","url":"classes/pricing.sourcecodegroups.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3187,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.sourcecodegroups.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3188,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.QueryParamsLimit"},{"id":3189,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.sourcecodegroups.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3190,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.QueryParamsOffset"},{"id":3191,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.sourcecodegroups.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3192,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SiteSpecific"},{"id":3193,"kind":4194304,"name":"Selectable","url":"classes/pricing.sourcecodegroups.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3194,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.Selectable"},{"id":3195,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.sourcecodegroups.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3196,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.NoPropertiesAllowed"},{"id":3197,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.sourcecodegroups.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3198,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.sourcecodegroups.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3199,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.sourcecodegroups.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3200,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.sourcecodegroups.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3201,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.sourcecodegroups.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3202,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.sourcecodegroups.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3203,"kind":4194304,"name":"Query","url":"classes/pricing.sourcecodegroups.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3204,"kind":4194304,"name":"TermQuery","url":"classes/pricing.sourcecodegroups.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3205,"kind":4194304,"name":"TermFilter","url":"classes/pricing.sourcecodegroups.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3206,"kind":4194304,"name":"TextQuery","url":"classes/pricing.sourcecodegroups.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3207,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.sourcecodegroups.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3208,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.sourcecodegroups.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3209,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.sourcecodegroups.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3210,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.sourcecodegroups.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3211,"kind":4194304,"name":"Filter","url":"classes/pricing.sourcecodegroups.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3212,"kind":4194304,"name":"Sort","url":"classes/pricing.sourcecodegroups.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3213,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.sourcecodegroups.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3214,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.sourcecodegroups.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3215,"kind":4194304,"name":"L10nString","url":"classes/pricing.sourcecodegroups.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3216,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.sourcecodegroups.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3217,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.AttributeDefinition"},{"id":3218,"kind":32,"name":"defaultValue","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3219,"kind":32,"name":"id","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3220,"kind":32,"name":"name","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3221,"kind":32,"name":"description","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3222,"kind":32,"name":"key","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3223,"kind":32,"name":"localizable","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3224,"kind":32,"name":"mandatory","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3225,"kind":32,"name":"max","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3226,"kind":32,"name":"minLength","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3227,"kind":32,"name":"min","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3228,"kind":32,"name":"multiValueType","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3229,"kind":32,"name":"regularExpression","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3230,"kind":32,"name":"scale","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3231,"kind":32,"name":"searchable","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3232,"kind":32,"name":"siteSpecific","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3233,"kind":32,"name":"system","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3234,"kind":32,"name":"unit","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3235,"kind":32,"name":"possibleValues","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3236,"kind":32,"name":"type","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3237,"kind":32,"name":"visible","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3238,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3239,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.PropertyValueDefinition"},{"id":3240,"kind":32,"name":"description","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3241,"kind":32,"name":"displayValue","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3242,"kind":32,"name":"id","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3243,"kind":32,"name":"position","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3244,"kind":32,"name":"value","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3245,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-7","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3246,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-7","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3247,"kind":1,"name":"product","url":"modules/product.html","classes":"tsd-kind-module"},{"id":3248,"kind":128,"name":"Catalogs","url":"classes/product.catalogs.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"product"},{"id":3249,"kind":512,"name":"constructor","url":"classes/product.catalogs.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"product.Catalogs"},{"id":3250,"kind":2048,"name":"getCatalogs","url":"classes/product.catalogs.html#getcatalogs","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3251,"kind":2048,"name":"getCatalog","url":"classes/product.catalogs.html#getcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3252,"kind":2048,"name":"updateCatalog","url":"classes/product.catalogs.html#updatecatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3253,"kind":2048,"name":"getCategoriesFromCatalog","url":"classes/product.catalogs.html#getcategoriesfromcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3254,"kind":2048,"name":"deleteCategoryFromCatalog","url":"classes/product.catalogs.html#deletecategoryfromcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3255,"kind":2048,"name":"getCategoryFromCatalog","url":"classes/product.catalogs.html#getcategoryfromcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3256,"kind":2048,"name":"updateCategoryInCatalog","url":"classes/product.catalogs.html#updatecategoryincatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3257,"kind":2048,"name":"createCategoryInCatalog","url":"classes/product.catalogs.html#createcategoryincatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3258,"kind":2048,"name":"searchProductsAssignedToCategory","url":"classes/product.catalogs.html#searchproductsassignedtocategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3259,"kind":2048,"name":"getAssignedProductFromCategory","url":"classes/product.catalogs.html#getassignedproductfromcategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3260,"kind":2048,"name":"unassignProductFromCategory","url":"classes/product.catalogs.html#unassignproductfromcategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3261,"kind":2048,"name":"updateProductCategoryAssignment","url":"classes/product.catalogs.html#updateproductcategoryassignment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3262,"kind":2048,"name":"assignProductToCategory","url":"classes/product.catalogs.html#assignproducttocategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3263,"kind":2048,"name":"runCategoryRules","url":"classes/product.catalogs.html#runcategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3264,"kind":2048,"name":"getCategorizationStatus","url":"classes/product.catalogs.html#getcategorizationstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3265,"kind":2048,"name":"getExclusionList","url":"classes/product.catalogs.html#getexclusionlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3266,"kind":2048,"name":"addProductsToExclusionList","url":"classes/product.catalogs.html#addproductstoexclusionlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3267,"kind":2048,"name":"removeProductsFromExclusionList","url":"classes/product.catalogs.html#removeproductsfromexclusionlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3268,"kind":2048,"name":"getCategoryRules","url":"classes/product.catalogs.html#getcategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3269,"kind":2048,"name":"deleteCategoryRules","url":"classes/product.catalogs.html#deletecategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3270,"kind":2048,"name":"createCategoryRules","url":"classes/product.catalogs.html#createcategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3271,"kind":2048,"name":"getRuleById","url":"classes/product.catalogs.html#getrulebyid","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3272,"kind":2048,"name":"createUpdateRule","url":"classes/product.catalogs.html#createupdaterule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3273,"kind":2048,"name":"deleteRule","url":"classes/product.catalogs.html#deleterule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3274,"kind":2048,"name":"getCategoryRuleConditions","url":"classes/product.catalogs.html#getcategoryruleconditions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3275,"kind":2048,"name":"deleteCategoryRuleConditions","url":"classes/product.catalogs.html#deletecategoryruleconditions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3276,"kind":2048,"name":"getCategoryRuleCondition","url":"classes/product.catalogs.html#getcategoryrulecondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3277,"kind":2048,"name":"createOrUpdateCategoryRuleCondition","url":"classes/product.catalogs.html#createorupdatecategoryrulecondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3278,"kind":2048,"name":"deleteCategoryRuleCondition","url":"classes/product.catalogs.html#deletecategoryrulecondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3279,"kind":2048,"name":"searchCategoriesInCatalog","url":"classes/product.catalogs.html#searchcategoriesincatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3280,"kind":2048,"name":"searchCatalogs","url":"classes/product.catalogs.html#searchcatalogs","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3281,"kind":2048,"name":"searchCategories","url":"classes/product.catalogs.html#searchcategories","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3282,"kind":1024,"name":"clientConfig","url":"classes/product.catalogs.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"product.Catalogs"},{"id":3283,"kind":4194304,"name":"Money","url":"classes/product.catalogs.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3284,"kind":4194304,"name":"RulesResult","url":"classes/product.catalogs.html#rulesresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3285,"kind":4194304,"name":"ExecutionJobStatusResult","url":"classes/product.catalogs.html#executionjobstatusresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3286,"kind":4194304,"name":"CategoryProductAssignmentSearchResult","url":"classes/product.catalogs.html#categoryproductassignmentsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3287,"kind":4194304,"name":"ProductOption","url":"classes/product.catalogs.html#productoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3288,"kind":4194304,"name":"Master","url":"classes/product.catalogs.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3289,"kind":4194304,"name":"CategorySearchResult","url":"classes/product.catalogs.html#categorysearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3290,"kind":4194304,"name":"Category","url":"classes/product.catalogs.html#category","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3291,"kind":4194304,"name":"Condition","url":"classes/product.catalogs.html#condition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3292,"kind":4194304,"name":"RulesRequest","url":"classes/product.catalogs.html#rulesrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3293,"kind":4194304,"name":"VariationAttribute","url":"classes/product.catalogs.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3294,"kind":4194304,"name":"CatalogCategoryId","url":"classes/product.catalogs.html#catalogcategoryid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3295,"kind":4194304,"name":"Categories","url":"classes/product.catalogs.html#categories","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3296,"kind":4194304,"name":"RuleRequest","url":"classes/product.catalogs.html#rulerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3297,"kind":4194304,"name":"ConditionsResult","url":"classes/product.catalogs.html#conditionsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3298,"kind":4194304,"name":"SortingRule","url":"classes/product.catalogs.html#sortingrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3299,"kind":4194304,"name":"ProductType","url":"classes/product.catalogs.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3300,"kind":4194304,"name":"Rule","url":"classes/product.catalogs.html#rule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3301,"kind":4194304,"name":"Variant","url":"classes/product.catalogs.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3302,"kind":4194304,"name":"VariationGroup","url":"classes/product.catalogs.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3303,"kind":4194304,"name":"ProductOptionValue","url":"classes/product.catalogs.html#productoptionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3304,"kind":4194304,"name":"VariationAttributes","url":"classes/product.catalogs.html#variationattributes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3305,"kind":4194304,"name":"CategoryLinks","url":"classes/product.catalogs.html#categorylinks","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3306,"kind":4194304,"name":"ExecutionRequest","url":"classes/product.catalogs.html#executionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3307,"kind":4194304,"name":"MarkupText","url":"classes/product.catalogs.html#markuptext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3308,"kind":4194304,"name":"ExcludedProduct","url":"classes/product.catalogs.html#excludedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3309,"kind":4194304,"name":"ImageGroup","url":"classes/product.catalogs.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3310,"kind":4194304,"name":"Catalogs","url":"classes/product.catalogs.html#catalogs","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3311,"kind":4194304,"name":"CategoryLink","url":"classes/product.catalogs.html#categorylink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3312,"kind":4194304,"name":"MediaFile","url":"classes/product.catalogs.html#mediafile","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3313,"kind":4194304,"name":"VariationAttributeValues","url":"classes/product.catalogs.html#variationattributevalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3314,"kind":4194304,"name":"CatalogSearchResult","url":"classes/product.catalogs.html#catalogsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3315,"kind":4194304,"name":"Site","url":"classes/product.catalogs.html#site","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3316,"kind":4194304,"name":"ProductOptions","url":"classes/product.catalogs.html#productoptions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3317,"kind":4194304,"name":"Product","url":"classes/product.catalogs.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3318,"kind":4194304,"name":"ExcludedProductsResult","url":"classes/product.catalogs.html#excludedproductsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3319,"kind":4194304,"name":"CategoryProductAssignment","url":"classes/product.catalogs.html#categoryproductassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3320,"kind":4194304,"name":"VariationAttributeValue","url":"classes/product.catalogs.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3321,"kind":4194304,"name":"ProductOptionValues","url":"classes/product.catalogs.html#productoptionvalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3322,"kind":4194304,"name":"CustomerListLink","url":"classes/product.catalogs.html#customerlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3323,"kind":4194304,"name":"PathRecord","url":"classes/product.catalogs.html#pathrecord","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3324,"kind":4194304,"name":"ExcludedProductRequest","url":"classes/product.catalogs.html#excludedproductrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3325,"kind":4194304,"name":"Catalog","url":"classes/product.catalogs.html#catalog","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3326,"kind":4194304,"name":"SortingRuleStep","url":"classes/product.catalogs.html#sortingrulestep","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3327,"kind":4194304,"name":"ErrorResponse","url":"classes/product.catalogs.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3328,"kind":4194304,"name":"RuleNotFound","url":"classes/product.catalogs.html#rulenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3329,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#rulenotfound.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RuleNotFound"},{"id":3330,"kind":4194304,"name":"NotFound","url":"classes/product.catalogs.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3331,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#notfound.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.NotFound"},{"id":3332,"kind":4194304,"name":"RateLimited3","url":"classes/product.catalogs.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3333,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited3.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited3"},{"id":3334,"kind":4194304,"name":"BadRequest","url":"classes/product.catalogs.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3335,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.BadRequest"},{"id":3336,"kind":4194304,"name":"RateLimited5","url":"classes/product.catalogs.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3337,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited5.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited5"},{"id":3338,"kind":4194304,"name":"JobExecutionNotFound","url":"classes/product.catalogs.html#jobexecutionnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3339,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#jobexecutionnotfound.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.JobExecutionNotFound"},{"id":3340,"kind":4194304,"name":"Unauthorized","url":"classes/product.catalogs.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3341,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#unauthorized.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.Unauthorized"},{"id":3342,"kind":4194304,"name":"RateLimited4","url":"classes/product.catalogs.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3343,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited4.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited4"},{"id":3344,"kind":4194304,"name":"ChangeControlled","url":"classes/product.catalogs.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3345,"kind":4194304,"name":"DateRangeFilter","url":"classes/product.catalogs.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3346,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.DateRangeFilter"},{"id":3347,"kind":4194304,"name":"EtagResponse","url":"classes/product.catalogs.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3348,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.EtagResponse"},{"id":3349,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/product.catalogs.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3350,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.IntegerRangeFilter"},{"id":3351,"kind":4194304,"name":"SyncCreated","url":"classes/product.catalogs.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3352,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#synccreated.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.SyncCreated"},{"id":3353,"kind":4194304,"name":"DateConditionalRequest","url":"classes/product.catalogs.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3354,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.DateConditionalRequest"},{"id":3355,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/product.catalogs.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3356,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.EtagConditionalRequest"},{"id":3357,"kind":4194304,"name":"AsyncCreated","url":"classes/product.catalogs.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3358,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.AsyncCreated"},{"id":3359,"kind":4194304,"name":"RateLimited","url":"classes/product.catalogs.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3360,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited"},{"id":3361,"kind":4194304,"name":"RateLimited2","url":"classes/product.catalogs.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3362,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited2"},{"id":3363,"kind":4194304,"name":"OffsetPaginated","url":"classes/product.catalogs.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3364,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#offsetpaginated.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.OffsetPaginated"},{"id":3365,"kind":4194304,"name":"RangeFilter","url":"classes/product.catalogs.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3366,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#rangefilter.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RangeFilter"},{"id":3367,"kind":4194304,"name":"NumericRangeFilter","url":"classes/product.catalogs.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3368,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#numericrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.NumericRangeFilter"},{"id":3369,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/product.catalogs.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3370,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.DatetimeRangeFilter"},{"id":3371,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/product.catalogs.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3372,"kind":4194304,"name":"Error","url":"classes/product.catalogs.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3373,"kind":4194304,"name":"SimpleSearchResult","url":"classes/product.catalogs.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3374,"kind":4194304,"name":"SearchRequest","url":"classes/product.catalogs.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3375,"kind":4194304,"name":"PropertyDefinition","url":"classes/product.catalogs.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3376,"kind":4194304,"name":"LocalizedString","url":"classes/product.catalogs.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3377,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/product.catalogs.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3378,"kind":4194304,"name":"ClosedObject","url":"classes/product.catalogs.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3379,"kind":4194304,"name":"OpenObject","url":"classes/product.catalogs.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3380,"kind":4194304,"name":"QueryParamsLimit","url":"classes/product.catalogs.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3381,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#queryparamslimit.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.QueryParamsLimit"},{"id":3382,"kind":4194304,"name":"QueryParamsOffset","url":"classes/product.catalogs.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3383,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#queryparamsoffset.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.QueryParamsOffset"},{"id":3384,"kind":4194304,"name":"SiteSpecific","url":"classes/product.catalogs.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3385,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#sitespecific-1.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.SiteSpecific"},{"id":3386,"kind":4194304,"name":"Selectable","url":"classes/product.catalogs.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3387,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#selectable.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.Selectable"},{"id":3388,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/product.catalogs.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3389,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.NoPropertiesAllowed"},{"id":3390,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/product.catalogs.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3391,"kind":4194304,"name":"BoolFilter","url":"classes/product.catalogs.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3392,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/product.catalogs.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3393,"kind":4194304,"name":"MatchAllQuery","url":"classes/product.catalogs.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3394,"kind":4194304,"name":"FilteredQuery","url":"classes/product.catalogs.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3395,"kind":4194304,"name":"QueryFilter","url":"classes/product.catalogs.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3396,"kind":4194304,"name":"Query","url":"classes/product.catalogs.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3397,"kind":4194304,"name":"TermQuery","url":"classes/product.catalogs.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3398,"kind":4194304,"name":"TermFilter","url":"classes/product.catalogs.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3399,"kind":4194304,"name":"TextQuery","url":"classes/product.catalogs.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3400,"kind":4194304,"name":"Range2Filter","url":"classes/product.catalogs.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3401,"kind":4194304,"name":"BoolQuery","url":"classes/product.catalogs.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3402,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/product.catalogs.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3403,"kind":4194304,"name":"NestedQuery","url":"classes/product.catalogs.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3404,"kind":4194304,"name":"Filter","url":"classes/product.catalogs.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3405,"kind":4194304,"name":"Sort","url":"classes/product.catalogs.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3406,"kind":4194304,"name":"SearchRequestBase","url":"classes/product.catalogs.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3407,"kind":4194304,"name":"MoneyMnemonic","url":"classes/product.catalogs.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3408,"kind":4194304,"name":"L10nString","url":"classes/product.catalogs.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3409,"kind":4194304,"name":"AttributeDefinition","url":"classes/product.catalogs.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3410,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.AttributeDefinition"},{"id":3411,"kind":32,"name":"defaultValue","url":"classes/product.catalogs.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3412,"kind":32,"name":"id","url":"classes/product.catalogs.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3413,"kind":32,"name":"name","url":"classes/product.catalogs.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3414,"kind":32,"name":"description","url":"classes/product.catalogs.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3415,"kind":32,"name":"key","url":"classes/product.catalogs.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3416,"kind":32,"name":"localizable","url":"classes/product.catalogs.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3417,"kind":32,"name":"mandatory","url":"classes/product.catalogs.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3418,"kind":32,"name":"max","url":"classes/product.catalogs.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3419,"kind":32,"name":"minLength","url":"classes/product.catalogs.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3420,"kind":32,"name":"min","url":"classes/product.catalogs.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3421,"kind":32,"name":"multiValueType","url":"classes/product.catalogs.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3422,"kind":32,"name":"regularExpression","url":"classes/product.catalogs.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3423,"kind":32,"name":"scale","url":"classes/product.catalogs.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3424,"kind":32,"name":"searchable","url":"classes/product.catalogs.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3425,"kind":32,"name":"siteSpecific","url":"classes/product.catalogs.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3426,"kind":32,"name":"system","url":"classes/product.catalogs.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3427,"kind":32,"name":"unit","url":"classes/product.catalogs.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3428,"kind":32,"name":"possibleValues","url":"classes/product.catalogs.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3429,"kind":32,"name":"type","url":"classes/product.catalogs.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3430,"kind":32,"name":"visible","url":"classes/product.catalogs.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3431,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/product.catalogs.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3432,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.PropertyValueDefinition"},{"id":3433,"kind":32,"name":"description","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3434,"kind":32,"name":"displayValue","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3435,"kind":32,"name":"id","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3436,"kind":32,"name":"position","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3437,"kind":32,"name":"value","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3438,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/product.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3439,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/product.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3440,"kind":128,"name":"Products","url":"classes/product.products.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"product"},{"id":3441,"kind":512,"name":"constructor","url":"classes/product.products.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"product.Products"},{"id":3442,"kind":2048,"name":"deleteProduct","url":"classes/product.products.html#deleteproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3443,"kind":2048,"name":"getProduct","url":"classes/product.products.html#getproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3444,"kind":2048,"name":"updateProduct","url":"classes/product.products.html#updateproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3445,"kind":2048,"name":"createProduct","url":"classes/product.products.html#createproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3446,"kind":2048,"name":"searchProductVariations","url":"classes/product.products.html#searchproductvariations","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3447,"kind":2048,"name":"getVariationGroupsForMasterProduct","url":"classes/product.products.html#getvariationgroupsformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3448,"kind":2048,"name":"unassignVariationGroupFromMasterProduct","url":"classes/product.products.html#unassignvariationgroupfrommasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3449,"kind":2048,"name":"getVariationGroupForMasterProduct","url":"classes/product.products.html#getvariationgroupformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3450,"kind":2048,"name":"updateVariationGroupForMasterProduct","url":"classes/product.products.html#updatevariationgroupformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3451,"kind":2048,"name":"assignVariationGroupToMasterProduct","url":"classes/product.products.html#assignvariationgrouptomasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3452,"kind":2048,"name":"getVariationsForMasterProduct","url":"classes/product.products.html#getvariationsformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3453,"kind":2048,"name":"unassignVariationFromMasterProduct","url":"classes/product.products.html#unassignvariationfrommasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3454,"kind":2048,"name":"getVariationForMasterProduct","url":"classes/product.products.html#getvariationformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3455,"kind":2048,"name":"updateVariationForMasterProduct","url":"classes/product.products.html#updatevariationformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3456,"kind":2048,"name":"assignVariationForMasterProduct","url":"classes/product.products.html#assignvariationformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3457,"kind":2048,"name":"getProductOptions","url":"classes/product.products.html#getproductoptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3458,"kind":2048,"name":"deleteProductOption","url":"classes/product.products.html#deleteproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3459,"kind":2048,"name":"getProductOption","url":"classes/product.products.html#getproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3460,"kind":2048,"name":"updateProductOption","url":"classes/product.products.html#updateproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3461,"kind":2048,"name":"createProductOption","url":"classes/product.products.html#createproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3462,"kind":2048,"name":"deleteProductOptionValue","url":"classes/product.products.html#deleteproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3463,"kind":2048,"name":"getProductOptionValue","url":"classes/product.products.html#getproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3464,"kind":2048,"name":"updateProductOptionValue","url":"classes/product.products.html#updateproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3465,"kind":2048,"name":"createProductOptionValue","url":"classes/product.products.html#createproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3466,"kind":2048,"name":"getVariationAttributeValue","url":"classes/product.products.html#getvariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3467,"kind":2048,"name":"deleteVariationAttributeValue","url":"classes/product.products.html#deletevariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3468,"kind":2048,"name":"updateVariationAttributeValue","url":"classes/product.products.html#updatevariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3469,"kind":2048,"name":"createVariationAttributeValue","url":"classes/product.products.html#createvariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3470,"kind":2048,"name":"getVariationAttributes","url":"classes/product.products.html#getvariationattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3471,"kind":2048,"name":"getVariationAttribute","url":"classes/product.products.html#getvariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3472,"kind":2048,"name":"deleteVariationAttribute","url":"classes/product.products.html#deletevariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3473,"kind":2048,"name":"updateVariationAttribute","url":"classes/product.products.html#updatevariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3474,"kind":2048,"name":"createVariationAttribute","url":"classes/product.products.html#createvariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3475,"kind":2048,"name":"getCategorizationAttributeDefinitions","url":"classes/product.products.html#getcategorizationattributedefinitions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3476,"kind":2048,"name":"searchProducts","url":"classes/product.products.html#searchproducts","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3477,"kind":1024,"name":"clientConfig","url":"classes/product.products.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"product.Products"},{"id":3478,"kind":4194304,"name":"Money","url":"classes/product.products.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3479,"kind":4194304,"name":"Variants","url":"classes/product.products.html#variants","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3480,"kind":4194304,"name":"ProductOption","url":"classes/product.products.html#productoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3481,"kind":4194304,"name":"Master","url":"classes/product.products.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3482,"kind":4194304,"name":"VariantSearchResult","url":"classes/product.products.html#variantsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3483,"kind":4194304,"name":"VariationAttribute","url":"classes/product.products.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3484,"kind":4194304,"name":"CatalogCategoryId","url":"classes/product.products.html#catalogcategoryid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3485,"kind":4194304,"name":"CategorizationAttributeDefinitonsResult","url":"classes/product.products.html#categorizationattributedefinitonsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3486,"kind":4194304,"name":"ProductType","url":"classes/product.products.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3487,"kind":4194304,"name":"Variant","url":"classes/product.products.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3488,"kind":4194304,"name":"VariationGroup","url":"classes/product.products.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3489,"kind":4194304,"name":"ProductOptionValue","url":"classes/product.products.html#productoptionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3490,"kind":4194304,"name":"VariationAttributes","url":"classes/product.products.html#variationattributes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3491,"kind":4194304,"name":"MarkupText","url":"classes/product.products.html#markuptext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3492,"kind":4194304,"name":"ImageGroup","url":"classes/product.products.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3493,"kind":4194304,"name":"MediaFile","url":"classes/product.products.html#mediafile","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3494,"kind":4194304,"name":"VariationAttributeValues","url":"classes/product.products.html#variationattributevalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3495,"kind":4194304,"name":"ProductSearchResult","url":"classes/product.products.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3496,"kind":4194304,"name":"ProductOptions","url":"classes/product.products.html#productoptions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3497,"kind":4194304,"name":"Product","url":"classes/product.products.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3498,"kind":4194304,"name":"CategorizationAttributeDefiniton","url":"classes/product.products.html#categorizationattributedefiniton","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3499,"kind":4194304,"name":"VariationAttributeValue","url":"classes/product.products.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3500,"kind":4194304,"name":"ProductOptionValues","url":"classes/product.products.html#productoptionvalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3501,"kind":4194304,"name":"VariationGroups","url":"classes/product.products.html#variationgroups","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3502,"kind":4194304,"name":"ErrorResponse","url":"classes/product.products.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3503,"kind":4194304,"name":"Unauthorized","url":"classes/product.products.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3504,"kind":65536,"name":"__type","url":"classes/product.products.html#unauthorized.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.Unauthorized"},{"id":3505,"kind":4194304,"name":"BadRequest","url":"classes/product.products.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3506,"kind":65536,"name":"__type","url":"classes/product.products.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.BadRequest"},{"id":3507,"kind":4194304,"name":"ProductNotFound","url":"classes/product.products.html#productnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3508,"kind":65536,"name":"__type","url":"classes/product.products.html#productnotfound.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.ProductNotFound"},{"id":3509,"kind":4194304,"name":"ChangeControlled","url":"classes/product.products.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3510,"kind":4194304,"name":"DateRangeFilter","url":"classes/product.products.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3511,"kind":65536,"name":"__type","url":"classes/product.products.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.DateRangeFilter"},{"id":3512,"kind":4194304,"name":"EtagResponse","url":"classes/product.products.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3513,"kind":65536,"name":"__type","url":"classes/product.products.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.EtagResponse"},{"id":3514,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/product.products.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3515,"kind":65536,"name":"__type","url":"classes/product.products.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.IntegerRangeFilter"},{"id":3516,"kind":4194304,"name":"RateLimited3","url":"classes/product.products.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3517,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited3"},{"id":3518,"kind":4194304,"name":"SyncCreated","url":"classes/product.products.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3519,"kind":65536,"name":"__type","url":"classes/product.products.html#synccreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.SyncCreated"},{"id":3520,"kind":4194304,"name":"DateConditionalRequest","url":"classes/product.products.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3521,"kind":65536,"name":"__type","url":"classes/product.products.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.DateConditionalRequest"},{"id":3522,"kind":4194304,"name":"RateLimited5","url":"classes/product.products.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3523,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited5"},{"id":3524,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/product.products.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3525,"kind":65536,"name":"__type","url":"classes/product.products.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.EtagConditionalRequest"},{"id":3526,"kind":4194304,"name":"AsyncCreated","url":"classes/product.products.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3527,"kind":65536,"name":"__type","url":"classes/product.products.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.AsyncCreated"},{"id":3528,"kind":4194304,"name":"RateLimited","url":"classes/product.products.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3529,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited"},{"id":3530,"kind":4194304,"name":"RateLimited2","url":"classes/product.products.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3531,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited2"},{"id":3532,"kind":4194304,"name":"OffsetPaginated","url":"classes/product.products.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3533,"kind":65536,"name":"__type","url":"classes/product.products.html#offsetpaginated.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.OffsetPaginated"},{"id":3534,"kind":4194304,"name":"RangeFilter","url":"classes/product.products.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3535,"kind":65536,"name":"__type","url":"classes/product.products.html#rangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RangeFilter"},{"id":3536,"kind":4194304,"name":"RateLimited4","url":"classes/product.products.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3537,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited4"},{"id":3538,"kind":4194304,"name":"NumericRangeFilter","url":"classes/product.products.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3539,"kind":65536,"name":"__type","url":"classes/product.products.html#numericrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.NumericRangeFilter"},{"id":3540,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/product.products.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3541,"kind":65536,"name":"__type","url":"classes/product.products.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.DatetimeRangeFilter"},{"id":3542,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/product.products.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3543,"kind":4194304,"name":"Error","url":"classes/product.products.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3544,"kind":4194304,"name":"SimpleSearchResult","url":"classes/product.products.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3545,"kind":4194304,"name":"SearchRequest","url":"classes/product.products.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3546,"kind":4194304,"name":"PropertyDefinition","url":"classes/product.products.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3547,"kind":4194304,"name":"LocalizedString","url":"classes/product.products.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3548,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/product.products.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3549,"kind":4194304,"name":"ClosedObject","url":"classes/product.products.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3550,"kind":4194304,"name":"OpenObject","url":"classes/product.products.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3551,"kind":4194304,"name":"QueryParamsLimit","url":"classes/product.products.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3552,"kind":65536,"name":"__type","url":"classes/product.products.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.QueryParamsLimit"},{"id":3553,"kind":4194304,"name":"QueryParamsOffset","url":"classes/product.products.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3554,"kind":65536,"name":"__type","url":"classes/product.products.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.QueryParamsOffset"},{"id":3555,"kind":4194304,"name":"SiteSpecific","url":"classes/product.products.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3556,"kind":65536,"name":"__type","url":"classes/product.products.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.SiteSpecific"},{"id":3557,"kind":4194304,"name":"Selectable","url":"classes/product.products.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3558,"kind":65536,"name":"__type","url":"classes/product.products.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.Selectable"},{"id":3559,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/product.products.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3560,"kind":65536,"name":"__type","url":"classes/product.products.html#nopropertiesallowed.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.NoPropertiesAllowed"},{"id":3561,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/product.products.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3562,"kind":4194304,"name":"BoolFilter","url":"classes/product.products.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3563,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/product.products.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3564,"kind":4194304,"name":"MatchAllQuery","url":"classes/product.products.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3565,"kind":4194304,"name":"FilteredQuery","url":"classes/product.products.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3566,"kind":4194304,"name":"QueryFilter","url":"classes/product.products.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3567,"kind":4194304,"name":"Query","url":"classes/product.products.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3568,"kind":4194304,"name":"TermQuery","url":"classes/product.products.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3569,"kind":4194304,"name":"TermFilter","url":"classes/product.products.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3570,"kind":4194304,"name":"TextQuery","url":"classes/product.products.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3571,"kind":4194304,"name":"Range2Filter","url":"classes/product.products.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3572,"kind":4194304,"name":"BoolQuery","url":"classes/product.products.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3573,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/product.products.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3574,"kind":4194304,"name":"NestedQuery","url":"classes/product.products.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3575,"kind":4194304,"name":"Filter","url":"classes/product.products.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3576,"kind":4194304,"name":"Sort","url":"classes/product.products.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3577,"kind":4194304,"name":"SearchRequestBase","url":"classes/product.products.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3578,"kind":4194304,"name":"MoneyMnemonic","url":"classes/product.products.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3579,"kind":4194304,"name":"L10nString","url":"classes/product.products.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3580,"kind":4194304,"name":"AttributeDefinition","url":"classes/product.products.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3581,"kind":65536,"name":"__type","url":"classes/product.products.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.AttributeDefinition"},{"id":3582,"kind":32,"name":"defaultValue","url":"classes/product.products.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3583,"kind":32,"name":"id","url":"classes/product.products.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3584,"kind":32,"name":"name","url":"classes/product.products.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3585,"kind":32,"name":"description","url":"classes/product.products.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3586,"kind":32,"name":"key","url":"classes/product.products.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3587,"kind":32,"name":"localizable","url":"classes/product.products.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3588,"kind":32,"name":"mandatory","url":"classes/product.products.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3589,"kind":32,"name":"max","url":"classes/product.products.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3590,"kind":32,"name":"minLength","url":"classes/product.products.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3591,"kind":32,"name":"min","url":"classes/product.products.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3592,"kind":32,"name":"multiValueType","url":"classes/product.products.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3593,"kind":32,"name":"regularExpression","url":"classes/product.products.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3594,"kind":32,"name":"scale","url":"classes/product.products.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3595,"kind":32,"name":"searchable","url":"classes/product.products.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3596,"kind":32,"name":"siteSpecific","url":"classes/product.products.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3597,"kind":32,"name":"system","url":"classes/product.products.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3598,"kind":32,"name":"unit","url":"classes/product.products.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3599,"kind":32,"name":"possibleValues","url":"classes/product.products.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3600,"kind":32,"name":"type","url":"classes/product.products.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3601,"kind":32,"name":"visible","url":"classes/product.products.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3602,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/product.products.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3603,"kind":65536,"name":"__type","url":"classes/product.products.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.PropertyValueDefinition"},{"id":3604,"kind":32,"name":"description","url":"classes/product.products.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3605,"kind":32,"name":"displayValue","url":"classes/product.products.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3606,"kind":32,"name":"id","url":"classes/product.products.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3607,"kind":32,"name":"position","url":"classes/product.products.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3608,"kind":32,"name":"value","url":"classes/product.products.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3609,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/product.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3610,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/product.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3611,"kind":128,"name":"ShopperProducts","url":"classes/product.shopperproducts.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"product"},{"id":3612,"kind":512,"name":"constructor","url":"classes/product.shopperproducts.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"product.ShopperProducts"},{"id":3613,"kind":2048,"name":"getProducts","url":"classes/product.shopperproducts.html#getproducts","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3614,"kind":2048,"name":"getProduct","url":"classes/product.shopperproducts.html#getproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3615,"kind":2048,"name":"getCategories","url":"classes/product.shopperproducts.html#getcategories","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3616,"kind":2048,"name":"getCategory","url":"classes/product.shopperproducts.html#getcategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3617,"kind":1024,"name":"clientConfig","url":"classes/product.shopperproducts.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"product.ShopperProducts"},{"id":3618,"kind":4194304,"name":"ProductPriceTable","url":"classes/product.shopperproducts.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3619,"kind":4194304,"name":"PriceRange","url":"classes/product.shopperproducts.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3620,"kind":4194304,"name":"OptionValue","url":"classes/product.shopperproducts.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3621,"kind":4194304,"name":"Master","url":"classes/product.shopperproducts.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3622,"kind":4194304,"name":"Category","url":"classes/product.shopperproducts.html#category","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3623,"kind":4194304,"name":"CategoryResult","url":"classes/product.shopperproducts.html#categoryresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3624,"kind":4194304,"name":"VariationAttribute","url":"classes/product.shopperproducts.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3625,"kind":4194304,"name":"RecommendationType","url":"classes/product.shopperproducts.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3626,"kind":4194304,"name":"ProductType","url":"classes/product.shopperproducts.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3627,"kind":4194304,"name":"Recommendation","url":"classes/product.shopperproducts.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3628,"kind":4194304,"name":"Variant","url":"classes/product.shopperproducts.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3629,"kind":4194304,"name":"VariationGroup","url":"classes/product.shopperproducts.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3630,"kind":4194304,"name":"ProductResult","url":"classes/product.shopperproducts.html#productresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3631,"kind":4194304,"name":"ProductLink","url":"classes/product.shopperproducts.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3632,"kind":4194304,"name":"Inventory","url":"classes/product.shopperproducts.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3633,"kind":4194304,"name":"ImageGroup","url":"classes/product.shopperproducts.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3634,"kind":4194304,"name":"Option","url":"classes/product.shopperproducts.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3635,"kind":4194304,"name":"Product","url":"classes/product.shopperproducts.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3636,"kind":4194304,"name":"Image","url":"classes/product.shopperproducts.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3637,"kind":4194304,"name":"VariationAttributeValue","url":"classes/product.shopperproducts.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3638,"kind":4194304,"name":"ProductPromotion","url":"classes/product.shopperproducts.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3639,"kind":4194304,"name":"PathRecord","url":"classes/product.shopperproducts.html#pathrecord","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3640,"kind":4194304,"name":"BundledProduct","url":"classes/product.shopperproducts.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3641,"kind":4194304,"name":"ErrorResponse","url":"classes/product.shopperproducts.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3642,"kind":4194304,"name":"NotFound","url":"classes/product.shopperproducts.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3643,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#notfound.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.NotFound"},{"id":3644,"kind":4194304,"name":"BadRequest","url":"classes/product.shopperproducts.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3645,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.BadRequest"},{"id":3646,"kind":4194304,"name":"BadRequest1","url":"classes/product.shopperproducts.html#badrequest1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3647,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#badrequest1.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.BadRequest1"},{"id":3648,"kind":4194304,"name":"Unauthorized","url":"classes/product.shopperproducts.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3649,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#unauthorized.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.Unauthorized"},{"id":3650,"kind":4194304,"name":"BadRequest2","url":"classes/product.shopperproducts.html#badrequest2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3651,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#badrequest2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.BadRequest2"},{"id":3652,"kind":4194304,"name":"ChangeControlled","url":"classes/product.shopperproducts.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3653,"kind":4194304,"name":"DateRangeFilter","url":"classes/product.shopperproducts.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3654,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#daterangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.DateRangeFilter"},{"id":3655,"kind":4194304,"name":"EtagResponse","url":"classes/product.shopperproducts.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3656,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#etagresponse.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.EtagResponse"},{"id":3657,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/product.shopperproducts.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3658,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#integerrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.IntegerRangeFilter"},{"id":3659,"kind":4194304,"name":"RateLimited3","url":"classes/product.shopperproducts.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3660,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited3.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited3"},{"id":3661,"kind":4194304,"name":"SyncCreated","url":"classes/product.shopperproducts.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3662,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#synccreated.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.SyncCreated"},{"id":3663,"kind":4194304,"name":"DateConditionalRequest","url":"classes/product.shopperproducts.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3664,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#dateconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.DateConditionalRequest"},{"id":3665,"kind":4194304,"name":"RateLimited5","url":"classes/product.shopperproducts.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3666,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited5.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited5"},{"id":3667,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/product.shopperproducts.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3668,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#etagconditionalrequest.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.EtagConditionalRequest"},{"id":3669,"kind":4194304,"name":"AsyncCreated","url":"classes/product.shopperproducts.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3670,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.AsyncCreated"},{"id":3671,"kind":4194304,"name":"RateLimited","url":"classes/product.shopperproducts.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3672,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited"},{"id":3673,"kind":4194304,"name":"RateLimited2","url":"classes/product.shopperproducts.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3674,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited2"},{"id":3675,"kind":4194304,"name":"OffsetPaginated","url":"classes/product.shopperproducts.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3676,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.OffsetPaginated"},{"id":3677,"kind":4194304,"name":"RangeFilter","url":"classes/product.shopperproducts.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3678,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#rangefilter.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RangeFilter"},{"id":3679,"kind":4194304,"name":"RateLimited4","url":"classes/product.shopperproducts.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3680,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited4.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited4"},{"id":3681,"kind":4194304,"name":"NumericRangeFilter","url":"classes/product.shopperproducts.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3682,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.NumericRangeFilter"},{"id":3683,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/product.shopperproducts.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3684,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#datetimerangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.DatetimeRangeFilter"},{"id":3685,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/product.shopperproducts.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3686,"kind":4194304,"name":"Error","url":"classes/product.shopperproducts.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3687,"kind":4194304,"name":"Money","url":"classes/product.shopperproducts.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3688,"kind":4194304,"name":"SimpleSearchResult","url":"classes/product.shopperproducts.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3689,"kind":4194304,"name":"SearchRequest","url":"classes/product.shopperproducts.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3690,"kind":4194304,"name":"PropertyDefinition","url":"classes/product.shopperproducts.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3691,"kind":4194304,"name":"LocalizedString","url":"classes/product.shopperproducts.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3692,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/product.shopperproducts.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3693,"kind":4194304,"name":"ClosedObject","url":"classes/product.shopperproducts.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3694,"kind":4194304,"name":"OpenObject","url":"classes/product.shopperproducts.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3695,"kind":4194304,"name":"QueryParamsLimit","url":"classes/product.shopperproducts.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3696,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#queryparamslimit.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.QueryParamsLimit"},{"id":3697,"kind":4194304,"name":"QueryParamsOffset","url":"classes/product.shopperproducts.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3698,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#queryparamsoffset.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.QueryParamsOffset"},{"id":3699,"kind":4194304,"name":"SiteSpecific","url":"classes/product.shopperproducts.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3700,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#sitespecific-1.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.SiteSpecific"},{"id":3701,"kind":4194304,"name":"Selectable","url":"classes/product.shopperproducts.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3702,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#selectable.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.Selectable"},{"id":3703,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/product.shopperproducts.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3704,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.NoPropertiesAllowed"},{"id":3705,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/product.shopperproducts.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3706,"kind":4194304,"name":"BoolFilter","url":"classes/product.shopperproducts.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3707,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/product.shopperproducts.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3708,"kind":4194304,"name":"MatchAllQuery","url":"classes/product.shopperproducts.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3709,"kind":4194304,"name":"FilteredQuery","url":"classes/product.shopperproducts.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3710,"kind":4194304,"name":"QueryFilter","url":"classes/product.shopperproducts.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3711,"kind":4194304,"name":"Query","url":"classes/product.shopperproducts.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3712,"kind":4194304,"name":"TermQuery","url":"classes/product.shopperproducts.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3713,"kind":4194304,"name":"TermFilter","url":"classes/product.shopperproducts.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3714,"kind":4194304,"name":"TextQuery","url":"classes/product.shopperproducts.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3715,"kind":4194304,"name":"Range2Filter","url":"classes/product.shopperproducts.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3716,"kind":4194304,"name":"BoolQuery","url":"classes/product.shopperproducts.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3717,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/product.shopperproducts.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3718,"kind":4194304,"name":"NestedQuery","url":"classes/product.shopperproducts.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3719,"kind":4194304,"name":"Filter","url":"classes/product.shopperproducts.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3720,"kind":4194304,"name":"Sort","url":"classes/product.shopperproducts.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3721,"kind":4194304,"name":"SearchRequestBase","url":"classes/product.shopperproducts.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3722,"kind":4194304,"name":"MoneyMnemonic","url":"classes/product.shopperproducts.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3723,"kind":4194304,"name":"L10nString","url":"classes/product.shopperproducts.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3724,"kind":4194304,"name":"AttributeDefinition","url":"classes/product.shopperproducts.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3725,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.AttributeDefinition"},{"id":3726,"kind":32,"name":"defaultValue","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3727,"kind":32,"name":"id","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3728,"kind":32,"name":"name","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3729,"kind":32,"name":"description","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3730,"kind":32,"name":"key","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3731,"kind":32,"name":"localizable","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3732,"kind":32,"name":"mandatory","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3733,"kind":32,"name":"max","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3734,"kind":32,"name":"minLength","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3735,"kind":32,"name":"min","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3736,"kind":32,"name":"multiValueType","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3737,"kind":32,"name":"regularExpression","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3738,"kind":32,"name":"scale","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3739,"kind":32,"name":"searchable","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3740,"kind":32,"name":"siteSpecific","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3741,"kind":32,"name":"system","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3742,"kind":32,"name":"unit","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3743,"kind":32,"name":"possibleValues","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3744,"kind":32,"name":"type","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3745,"kind":32,"name":"visible","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3746,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/product.shopperproducts.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3747,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.PropertyValueDefinition"},{"id":3748,"kind":32,"name":"description","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3749,"kind":32,"name":"displayValue","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3750,"kind":32,"name":"id","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3751,"kind":32,"name":"position","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3752,"kind":32,"name":"value","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3753,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/product.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3754,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/product.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3755,"kind":1,"name":"search","url":"modules/search.html","classes":"tsd-kind-module"},{"id":3756,"kind":128,"name":"ShopperSearch","url":"classes/search.shoppersearch.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"search"},{"id":3757,"kind":512,"name":"constructor","url":"classes/search.shoppersearch.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"search.ShopperSearch"},{"id":3758,"kind":2048,"name":"productSearch","url":"classes/search.shoppersearch.html#productsearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"search.ShopperSearch"},{"id":3759,"kind":2048,"name":"getSearchSuggestions","url":"classes/search.shoppersearch.html#getsearchsuggestions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"search.ShopperSearch"},{"id":3760,"kind":1024,"name":"clientConfig","url":"classes/search.shoppersearch.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"search.ShopperSearch"},{"id":3761,"kind":4194304,"name":"Money","url":"classes/search.shoppersearch.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3762,"kind":4194304,"name":"SimpleSearchResult","url":"classes/search.shoppersearch.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3763,"kind":4194304,"name":"SearchRequest","url":"classes/search.shoppersearch.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3764,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/search.shoppersearch.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3765,"kind":4194304,"name":"ClosedObject","url":"classes/search.shoppersearch.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3766,"kind":4194304,"name":"OpenObject","url":"classes/search.shoppersearch.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3767,"kind":4194304,"name":"QueryParamsLimit","url":"classes/search.shoppersearch.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3768,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#queryparamslimit.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.QueryParamsLimit"},{"id":3769,"kind":4194304,"name":"QueryParamsOffset","url":"classes/search.shoppersearch.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3770,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#queryparamsoffset.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.QueryParamsOffset"},{"id":3771,"kind":4194304,"name":"SiteSpecific","url":"classes/search.shoppersearch.html#sitespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3772,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#sitespecific.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.SiteSpecific"},{"id":3773,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/search.shoppersearch.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3774,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#nopropertiesallowed.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.NoPropertiesAllowed"},{"id":3775,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/search.shoppersearch.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3776,"kind":4194304,"name":"BoolFilter","url":"classes/search.shoppersearch.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3777,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/search.shoppersearch.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3778,"kind":4194304,"name":"MatchAllQuery","url":"classes/search.shoppersearch.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3779,"kind":4194304,"name":"FilteredQuery","url":"classes/search.shoppersearch.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3780,"kind":4194304,"name":"QueryFilter","url":"classes/search.shoppersearch.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3781,"kind":4194304,"name":"Query","url":"classes/search.shoppersearch.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3782,"kind":4194304,"name":"TermQuery","url":"classes/search.shoppersearch.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3783,"kind":4194304,"name":"TermFilter","url":"classes/search.shoppersearch.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3784,"kind":4194304,"name":"TextQuery","url":"classes/search.shoppersearch.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3785,"kind":4194304,"name":"Range2Filter","url":"classes/search.shoppersearch.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3786,"kind":4194304,"name":"BoolQuery","url":"classes/search.shoppersearch.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3787,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/search.shoppersearch.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3788,"kind":4194304,"name":"NestedQuery","url":"classes/search.shoppersearch.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3789,"kind":4194304,"name":"Filter","url":"classes/search.shoppersearch.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3790,"kind":4194304,"name":"Sort","url":"classes/search.shoppersearch.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3791,"kind":4194304,"name":"RangeFilter","url":"classes/search.shoppersearch.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3792,"kind":4194304,"name":"SearchRequestBase","url":"classes/search.shoppersearch.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3793,"kind":4194304,"name":"MoneyMnemonic","url":"classes/search.shoppersearch.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3794,"kind":4194304,"name":"ErrorResponse","url":"classes/search.shoppersearch.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3795,"kind":4194304,"name":"EtagResponse","url":"classes/search.shoppersearch.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3796,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#etagresponse.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.EtagResponse"},{"id":3797,"kind":4194304,"name":"RateLimited3","url":"classes/search.shoppersearch.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3798,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited3.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited3"},{"id":3799,"kind":4194304,"name":"SyncCreated","url":"classes/search.shoppersearch.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3800,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#synccreated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.SyncCreated"},{"id":3801,"kind":4194304,"name":"DateConditionalRequest","url":"classes/search.shoppersearch.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3802,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#dateconditionalrequest.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.DateConditionalRequest"},{"id":3803,"kind":4194304,"name":"RateLimited5","url":"classes/search.shoppersearch.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3804,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited5.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited5"},{"id":3805,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/search.shoppersearch.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3806,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#etagconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.EtagConditionalRequest"},{"id":3807,"kind":4194304,"name":"AsyncCreated","url":"classes/search.shoppersearch.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3808,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.AsyncCreated"},{"id":3809,"kind":4194304,"name":"RateLimited","url":"classes/search.shoppersearch.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3810,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited"},{"id":3811,"kind":4194304,"name":"RateLimited2","url":"classes/search.shoppersearch.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3812,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited2"},{"id":3813,"kind":4194304,"name":"OffsetPaginated","url":"classes/search.shoppersearch.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3814,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#offsetpaginated.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.OffsetPaginated"},{"id":3815,"kind":4194304,"name":"RateLimited4","url":"classes/search.shoppersearch.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3816,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited4.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited4"},{"id":3817,"kind":4194304,"name":"ProductRef","url":"classes/search.shoppersearch.html#productref","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3818,"kind":4194304,"name":"SuggestedTerms","url":"classes/search.shoppersearch.html#suggestedterms","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3819,"kind":4194304,"name":"CategorySuggestions","url":"classes/search.shoppersearch.html#categorysuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3820,"kind":4194304,"name":"SuggestedProduct","url":"classes/search.shoppersearch.html#suggestedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3821,"kind":4194304,"name":"SuggestedPhrase","url":"classes/search.shoppersearch.html#suggestedphrase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3822,"kind":4194304,"name":"VariationAttribute","url":"classes/search.shoppersearch.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3823,"kind":4194304,"name":"ProductSuggestions","url":"classes/search.shoppersearch.html#productsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3824,"kind":4194304,"name":"SuggestedCategory","url":"classes/search.shoppersearch.html#suggestedcategory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3825,"kind":4194304,"name":"ProductType","url":"classes/search.shoppersearch.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3826,"kind":4194304,"name":"BrandSuggestions","url":"classes/search.shoppersearch.html#brandsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3827,"kind":4194304,"name":"ProductSearchRefinementValue","url":"classes/search.shoppersearch.html#productsearchrefinementvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3828,"kind":4194304,"name":"ProductSearchSortingOption","url":"classes/search.shoppersearch.html#productsearchsortingoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3829,"kind":4194304,"name":"SuggestedTerm","url":"classes/search.shoppersearch.html#suggestedterm","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3830,"kind":4194304,"name":"ProductSearchRefinement","url":"classes/search.shoppersearch.html#productsearchrefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3831,"kind":4194304,"name":"CustomSuggestions","url":"classes/search.shoppersearch.html#customsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3832,"kind":4194304,"name":"ProductSearchHit","url":"classes/search.shoppersearch.html#productsearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3833,"kind":4194304,"name":"ProductSearchResult","url":"classes/search.shoppersearch.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3834,"kind":4194304,"name":"Image","url":"classes/search.shoppersearch.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3835,"kind":4194304,"name":"VariationAttributeValue","url":"classes/search.shoppersearch.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3836,"kind":4194304,"name":"Suggestion","url":"classes/search.shoppersearch.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3837,"kind":4194304,"name":"SuggestionResult","url":"classes/search.shoppersearch.html#suggestionresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3838,"kind":4194304,"name":"badRequest","url":"classes/search.shoppersearch.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3839,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#badrequest.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.badRequest"},{"id":3840,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/search.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"search"},{"id":3841,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/search.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"search"},{"id":3842,"kind":1,"name":"seller","url":"modules/seller.html","classes":"tsd-kind-module"},{"id":3843,"kind":128,"name":"ShopperStores","url":"classes/seller.shopperstores.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"seller"},{"id":3844,"kind":512,"name":"constructor","url":"classes/seller.shopperstores.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"seller.ShopperStores"},{"id":3845,"kind":2048,"name":"searchStores","url":"classes/seller.shopperstores.html#searchstores","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"seller.ShopperStores"},{"id":3846,"kind":2048,"name":"getStores","url":"classes/seller.shopperstores.html#getstores","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"seller.ShopperStores"},{"id":3847,"kind":1024,"name":"clientConfig","url":"classes/seller.shopperstores.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"seller.ShopperStores"},{"id":3848,"kind":4194304,"name":"LocaleSpecific","url":"classes/seller.shopperstores.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3849,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#localespecific.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.LocaleSpecific"},{"id":3850,"kind":4194304,"name":"Money","url":"classes/seller.shopperstores.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3851,"kind":4194304,"name":"SimpleSearchResult","url":"classes/seller.shopperstores.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3852,"kind":4194304,"name":"SearchRequest","url":"classes/seller.shopperstores.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3853,"kind":4194304,"name":"PropertyDefinition","url":"classes/seller.shopperstores.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3854,"kind":4194304,"name":"LocalizedString","url":"classes/seller.shopperstores.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3855,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/seller.shopperstores.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3856,"kind":4194304,"name":"ClosedObject","url":"classes/seller.shopperstores.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3857,"kind":4194304,"name":"OpenObject","url":"classes/seller.shopperstores.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3858,"kind":4194304,"name":"QueryParamsLimit","url":"classes/seller.shopperstores.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3859,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.QueryParamsLimit"},{"id":3860,"kind":4194304,"name":"QueryParamsOffset","url":"classes/seller.shopperstores.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3861,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.QueryParamsOffset"},{"id":3862,"kind":4194304,"name":"SiteSpecific","url":"classes/seller.shopperstores.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3863,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#sitespecific-1.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.SiteSpecific"},{"id":3864,"kind":4194304,"name":"Selectable","url":"classes/seller.shopperstores.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3865,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#selectable.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.Selectable"},{"id":3866,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/seller.shopperstores.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3867,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.NoPropertiesAllowed"},{"id":3868,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/seller.shopperstores.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3869,"kind":4194304,"name":"BoolFilter","url":"classes/seller.shopperstores.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3870,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/seller.shopperstores.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3871,"kind":4194304,"name":"MatchAllQuery","url":"classes/seller.shopperstores.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3872,"kind":4194304,"name":"FilteredQuery","url":"classes/seller.shopperstores.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3873,"kind":4194304,"name":"QueryFilter","url":"classes/seller.shopperstores.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3874,"kind":4194304,"name":"Query","url":"classes/seller.shopperstores.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3875,"kind":4194304,"name":"TermQuery","url":"classes/seller.shopperstores.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3876,"kind":4194304,"name":"TermFilter","url":"classes/seller.shopperstores.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3877,"kind":4194304,"name":"TextQuery","url":"classes/seller.shopperstores.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3878,"kind":4194304,"name":"Range2Filter","url":"classes/seller.shopperstores.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3879,"kind":4194304,"name":"BoolQuery","url":"classes/seller.shopperstores.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3880,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/seller.shopperstores.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3881,"kind":4194304,"name":"NestedQuery","url":"classes/seller.shopperstores.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3882,"kind":4194304,"name":"Filter","url":"classes/seller.shopperstores.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3883,"kind":4194304,"name":"Sort","url":"classes/seller.shopperstores.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3884,"kind":4194304,"name":"RangeFilter","url":"classes/seller.shopperstores.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3885,"kind":4194304,"name":"SearchRequestBase","url":"classes/seller.shopperstores.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3886,"kind":4194304,"name":"MoneyMnemonic","url":"classes/seller.shopperstores.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3887,"kind":4194304,"name":"L10nString","url":"classes/seller.shopperstores.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3888,"kind":4194304,"name":"AttributeDefinition","url":"classes/seller.shopperstores.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3889,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.AttributeDefinition"},{"id":3890,"kind":32,"name":"defaultValue","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3891,"kind":32,"name":"id","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3892,"kind":32,"name":"name","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3893,"kind":32,"name":"description","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3894,"kind":32,"name":"key","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3895,"kind":32,"name":"localizable","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3896,"kind":32,"name":"mandatory","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3897,"kind":32,"name":"max","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3898,"kind":32,"name":"minLength","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3899,"kind":32,"name":"min","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3900,"kind":32,"name":"multiValueType","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3901,"kind":32,"name":"regularExpression","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3902,"kind":32,"name":"scale","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3903,"kind":32,"name":"searchable","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3904,"kind":32,"name":"siteSpecific","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3905,"kind":32,"name":"system","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3906,"kind":32,"name":"unit","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3907,"kind":32,"name":"possibleValues","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3908,"kind":32,"name":"type","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3909,"kind":32,"name":"visible","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":3910,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/seller.shopperstores.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3911,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.PropertyValueDefinition"},{"id":3912,"kind":32,"name":"description","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":3913,"kind":32,"name":"displayValue","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":3914,"kind":32,"name":"id","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":3915,"kind":32,"name":"position","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":3916,"kind":32,"name":"value","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":3917,"kind":4194304,"name":"ErrorResponse","url":"classes/seller.shopperstores.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3918,"kind":4194304,"name":"ChangeControlled","url":"classes/seller.shopperstores.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3919,"kind":4194304,"name":"DateRangeFilter","url":"classes/seller.shopperstores.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3920,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.DateRangeFilter"},{"id":3921,"kind":4194304,"name":"EtagResponse","url":"classes/seller.shopperstores.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3922,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.EtagResponse"},{"id":3923,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/seller.shopperstores.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3924,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.IntegerRangeFilter"},{"id":3925,"kind":4194304,"name":"RateLimited3","url":"classes/seller.shopperstores.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3926,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited3.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited3"},{"id":3927,"kind":4194304,"name":"SyncCreated","url":"classes/seller.shopperstores.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3928,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#synccreated.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.SyncCreated"},{"id":3929,"kind":4194304,"name":"DateConditionalRequest","url":"classes/seller.shopperstores.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3930,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.DateConditionalRequest"},{"id":3931,"kind":4194304,"name":"RateLimited5","url":"classes/seller.shopperstores.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3932,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited5.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited5"},{"id":3933,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/seller.shopperstores.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3934,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.EtagConditionalRequest"},{"id":3935,"kind":4194304,"name":"AsyncCreated","url":"classes/seller.shopperstores.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3936,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.AsyncCreated"},{"id":3937,"kind":4194304,"name":"RateLimited","url":"classes/seller.shopperstores.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3938,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited"},{"id":3939,"kind":4194304,"name":"RateLimited2","url":"classes/seller.shopperstores.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3940,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited2"},{"id":3941,"kind":4194304,"name":"OffsetPaginated","url":"classes/seller.shopperstores.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3942,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#offsetpaginated.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.OffsetPaginated"},{"id":3943,"kind":4194304,"name":"RateLimited4","url":"classes/seller.shopperstores.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3944,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited4.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited4"},{"id":3945,"kind":4194304,"name":"NumericRangeFilter","url":"classes/seller.shopperstores.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3946,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#numericrangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.NumericRangeFilter"},{"id":3947,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/seller.shopperstores.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3948,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.DatetimeRangeFilter"},{"id":3949,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/seller.shopperstores.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3950,"kind":4194304,"name":"Error","url":"classes/seller.shopperstores.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3951,"kind":4194304,"name":"StoreResult","url":"classes/seller.shopperstores.html#storeresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3952,"kind":4194304,"name":"Store","url":"classes/seller.shopperstores.html#store","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3953,"kind":4194304,"name":"BadRequest","url":"classes/seller.shopperstores.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3954,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.BadRequest"},{"id":3955,"kind":4194304,"name":"Unauthorized","url":"classes/seller.shopperstores.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":3956,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#unauthorized.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.Unauthorized"},{"id":3957,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/seller.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"seller"},{"id":3958,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/seller.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"seller"},{"id":3959,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-module"},{"id":3960,"kind":16777216,"name":"ClientConfig","url":"modules/_index_.html#clientconfig","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"\"index\""},{"id":3961,"kind":16777216,"name":"CommonParameters","url":"modules/_index_.html#commonparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"\"index\""},{"id":3962,"kind":16777216,"name":"sdkLogger","url":"modules/_index_.html#sdklogger","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"\"index\""}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,67.809]],["parent/0",[]],["name/1",[1,78.795]],["parent/1",[0,6.773]],["name/2",[2,50.079]],["parent/2",[3,3.178]],["name/3",[4,78.795]],["parent/3",[3,3.178]],["name/4",[5,78.795]],["parent/4",[3,3.178]],["name/5",[6,78.795]],["parent/5",[3,3.178]],["name/6",[7,78.795]],["parent/6",[3,3.178]],["name/7",[8,78.795]],["parent/7",[3,3.178]],["name/8",[9,78.795]],["parent/8",[3,3.178]],["name/9",[10,78.795]],["parent/9",[3,3.178]],["name/10",[11,78.795]],["parent/10",[3,3.178]],["name/11",[12,78.795]],["parent/11",[3,3.178]],["name/12",[13,78.795]],["parent/12",[3,3.178]],["name/13",[14,78.795]],["parent/13",[3,3.178]],["name/14",[15,78.795]],["parent/14",[3,3.178]],["name/15",[16,78.795]],["parent/15",[3,3.178]],["name/16",[17,78.795]],["parent/16",[3,3.178]],["name/17",[18,78.795]],["parent/17",[3,3.178]],["name/18",[19,78.795]],["parent/18",[3,3.178]],["name/19",[20,78.795]],["parent/19",[3,3.178]],["name/20",[21,78.795]],["parent/20",[3,3.178]],["name/21",[22,78.795]],["parent/21",[3,3.178]],["name/22",[23,78.795]],["parent/22",[3,3.178]],["name/23",[24,78.795]],["parent/23",[3,3.178]],["name/24",[25,78.795]],["parent/24",[3,3.178]],["name/25",[26,78.795]],["parent/25",[3,3.178]],["name/26",[27,78.795]],["parent/26",[3,3.178]],["name/27",[28,78.795]],["parent/27",[3,3.178]],["name/28",[29,78.795]],["parent/28",[3,3.178]],["name/29",[30,78.795]],["parent/29",[3,3.178]],["name/30",[31,78.795]],["parent/30",[3,3.178]],["name/31",[32,78.795]],["parent/31",[3,3.178]],["name/32",[33,78.795]],["parent/32",[3,3.178]],["name/33",[34,78.795]],["parent/33",[3,3.178]],["name/34",[35,78.795]],["parent/34",[3,3.178]],["name/35",[36,78.795]],["parent/35",[3,3.178]],["name/36",[37,78.795]],["parent/36",[3,3.178]],["name/37",[38,78.795]],["parent/37",[3,3.178]],["name/38",[39,78.795]],["parent/38",[3,3.178]],["name/39",[40,78.795]],["parent/39",[3,3.178]],["name/40",[41,78.795]],["parent/40",[3,3.178]],["name/41",[42,78.795]],["parent/41",[3,3.178]],["name/42",[43,78.795]],["parent/42",[3,3.178]],["name/43",[44,78.795]],["parent/43",[3,3.178]],["name/44",[45,78.795]],["parent/44",[3,3.178]],["name/45",[46,78.795]],["parent/45",[3,3.178]],["name/46",[47,78.795]],["parent/46",[3,3.178]],["name/47",[48,78.795]],["parent/47",[3,3.178]],["name/48",[49,78.795]],["parent/48",[3,3.178]],["name/49",[50,78.795]],["parent/49",[3,3.178]],["name/50",[51,78.795]],["parent/50",[3,3.178]],["name/51",[52,49.351]],["parent/51",[3,3.178]],["name/52",[53,78.795]],["parent/52",[3,3.178]],["name/53",[54,78.795]],["parent/53",[3,3.178]],["name/54",[55,78.795]],["parent/54",[3,3.178]],["name/55",[56,78.795]],["parent/55",[3,3.178]],["name/56",[57,78.795]],["parent/56",[3,3.178]],["name/57",[58,78.795]],["parent/57",[3,3.178]],["name/58",[59,78.795]],["parent/58",[3,3.178]],["name/59",[60,78.795]],["parent/59",[3,3.178]],["name/60",[61,78.795]],["parent/60",[3,3.178]],["name/61",[62,78.795]],["parent/61",[3,3.178]],["name/62",[63,78.795]],["parent/62",[3,3.178]],["name/63",[64,78.795]],["parent/63",[3,3.178]],["name/64",[65,78.795]],["parent/64",[3,3.178]],["name/65",[66,78.795]],["parent/65",[3,3.178]],["name/66",[67,78.795]],["parent/66",[3,3.178]],["name/67",[68,78.795]],["parent/67",[3,3.178]],["name/68",[69,78.795]],["parent/68",[3,3.178]],["name/69",[70,78.795]],["parent/69",[3,3.178]],["name/70",[71,78.795]],["parent/70",[3,3.178]],["name/71",[72,78.795]],["parent/71",[3,3.178]],["name/72",[73,78.795]],["parent/72",[3,3.178]],["name/73",[74,78.795]],["parent/73",[3,3.178]],["name/74",[75,78.795]],["parent/74",[3,3.178]],["name/75",[76,78.795]],["parent/75",[3,3.178]],["name/76",[77,78.795]],["parent/76",[3,3.178]],["name/77",[78,78.795]],["parent/77",[3,3.178]],["name/78",[79,78.795]],["parent/78",[3,3.178]],["name/79",[80,78.795]],["parent/79",[3,3.178]],["name/80",[81,78.795]],["parent/80",[3,3.178]],["name/81",[82,78.795]],["parent/81",[3,3.178]],["name/82",[83,78.795]],["parent/82",[3,3.178]],["name/83",[84,78.795]],["parent/83",[3,3.178]],["name/84",[85,78.795]],["parent/84",[3,3.178]],["name/85",[86,78.795]],["parent/85",[3,3.178]],["name/86",[87,78.795]],["parent/86",[3,3.178]],["name/87",[88,78.795]],["parent/87",[3,3.178]],["name/88",[89,78.795]],["parent/88",[3,3.178]],["name/89",[90,78.795]],["parent/89",[3,3.178]],["name/90",[91,78.795]],["parent/90",[3,3.178]],["name/91",[92,78.795]],["parent/91",[3,3.178]],["name/92",[93,50.079]],["parent/92",[3,3.178]],["name/93",[94,78.795]],["parent/93",[3,3.178]],["name/94",[95,78.795]],["parent/94",[3,3.178]],["name/95",[96,78.795]],["parent/95",[3,3.178]],["name/96",[97,78.795]],["parent/96",[3,3.178]],["name/97",[98,78.795]],["parent/97",[3,3.178]],["name/98",[99,78.795]],["parent/98",[3,3.178]],["name/99",[100,78.795]],["parent/99",[3,3.178]],["name/100",[101,78.795]],["parent/100",[3,3.178]],["name/101",[102,78.795]],["parent/101",[3,3.178]],["name/102",[103,78.795]],["parent/102",[3,3.178]],["name/103",[104,78.795]],["parent/103",[3,3.178]],["name/104",[105,78.795]],["parent/104",[3,3.178]],["name/105",[106,78.795]],["parent/105",[3,3.178]],["name/106",[107,78.795]],["parent/106",[3,3.178]],["name/107",[108,78.795]],["parent/107",[3,3.178]],["name/108",[109,78.795]],["parent/108",[3,3.178]],["name/109",[110,78.795]],["parent/109",[3,3.178]],["name/110",[111,78.795]],["parent/110",[3,3.178]],["name/111",[112,78.795]],["parent/111",[3,3.178]],["name/112",[113,78.795]],["parent/112",[3,3.178]],["name/113",[114,78.795]],["parent/113",[3,3.178]],["name/114",[115,78.795]],["parent/114",[3,3.178]],["name/115",[116,78.795]],["parent/115",[3,3.178]],["name/116",[117,16.899]],["parent/116",[118,7.871]],["name/117",[119,78.795]],["parent/117",[3,3.178]],["name/118",[117,16.899]],["parent/118",[120,7.871]],["name/119",[121,78.795]],["parent/119",[3,3.178]],["name/120",[117,16.899]],["parent/120",[122,7.871]],["name/121",[123,78.795]],["parent/121",[3,3.178]],["name/122",[117,16.899]],["parent/122",[124,7.871]],["name/123",[125,78.795]],["parent/123",[3,3.178]],["name/124",[117,16.899]],["parent/124",[126,7.871]],["name/125",[127,78.795]],["parent/125",[3,3.178]],["name/126",[117,16.899]],["parent/126",[128,7.871]],["name/127",[129,50.079]],["parent/127",[3,3.178]],["name/128",[117,16.899]],["parent/128",[130,7.871]],["name/129",[131,50.079]],["parent/129",[3,3.178]],["name/130",[117,16.899]],["parent/130",[132,7.871]],["name/131",[133,50.079]],["parent/131",[3,3.178]],["name/132",[117,16.899]],["parent/132",[134,7.871]],["name/133",[135,50.079]],["parent/133",[3,3.178]],["name/134",[117,16.899]],["parent/134",[136,7.871]],["name/135",[137,50.079]],["parent/135",[3,3.178]],["name/136",[117,16.899]],["parent/136",[138,7.871]],["name/137",[139,50.079]],["parent/137",[3,3.178]],["name/138",[117,16.899]],["parent/138",[140,7.871]],["name/139",[141,50.079]],["parent/139",[3,3.178]],["name/140",[117,16.899]],["parent/140",[142,7.871]],["name/141",[143,50.079]],["parent/141",[3,3.178]],["name/142",[117,16.899]],["parent/142",[144,7.871]],["name/143",[145,50.079]],["parent/143",[3,3.178]],["name/144",[117,16.899]],["parent/144",[146,7.871]],["name/145",[147,50.079]],["parent/145",[3,3.178]],["name/146",[117,16.899]],["parent/146",[148,7.871]],["name/147",[149,50.079]],["parent/147",[3,3.178]],["name/148",[117,16.899]],["parent/148",[150,7.871]],["name/149",[151,50.463]],["parent/149",[3,3.178]],["name/150",[152,50.463]],["parent/150",[3,3.178]],["name/151",[153,50.463]],["parent/151",[3,3.178]],["name/152",[154,51.28]],["parent/152",[3,3.178]],["name/153",[155,51.28]],["parent/153",[3,3.178]],["name/154",[156,50.463]],["parent/154",[3,3.178]],["name/155",[157,50.463]],["parent/155",[3,3.178]],["name/156",[158,50.463]],["parent/156",[3,3.178]],["name/157",[159,50.463]],["parent/157",[3,3.178]],["name/158",[117,16.899]],["parent/158",[160,7.871]],["name/159",[161,50.463]],["parent/159",[3,3.178]],["name/160",[117,16.899]],["parent/160",[162,7.871]],["name/161",[163,44.034]],["parent/161",[3,3.178]],["name/162",[117,16.899]],["parent/162",[164,7.871]],["name/163",[165,50.463]],["parent/163",[3,3.178]],["name/164",[117,16.899]],["parent/164",[166,7.871]],["name/165",[167,50.463]],["parent/165",[3,3.178]],["name/166",[168,50.463]],["parent/166",[3,3.178]],["name/167",[169,50.463]],["parent/167",[3,3.178]],["name/168",[170,50.463]],["parent/168",[3,3.178]],["name/169",[171,50.463]],["parent/169",[3,3.178]],["name/170",[172,50.463]],["parent/170",[3,3.178]],["name/171",[173,50.079]],["parent/171",[3,3.178]],["name/172",[174,50.463]],["parent/172",[3,3.178]],["name/173",[175,50.463]],["parent/173",[3,3.178]],["name/174",[176,50.463]],["parent/174",[3,3.178]],["name/175",[177,50.463]],["parent/175",[3,3.178]],["name/176",[178,50.463]],["parent/176",[3,3.178]],["name/177",[179,50.463]],["parent/177",[3,3.178]],["name/178",[180,50.463]],["parent/178",[3,3.178]],["name/179",[181,50.463]],["parent/179",[3,3.178]],["name/180",[182,50.463]],["parent/180",[3,3.178]],["name/181",[183,50.079]],["parent/181",[3,3.178]],["name/182",[184,50.463]],["parent/182",[3,3.178]],["name/183",[185,50.463]],["parent/183",[3,3.178]],["name/184",[186,51.28]],["parent/184",[3,3.178]],["name/185",[187,51.28]],["parent/185",[3,3.178]],["name/186",[117,16.899]],["parent/186",[188,7.871]],["name/187",[189,51.28]],["parent/187",[190,5.259]],["name/188",[191,42.868]],["parent/188",[190,5.259]],["name/189",[192,50.079]],["parent/189",[190,5.259]],["name/190",[193,44.243]],["parent/190",[190,5.259]],["name/191",[194,51.28]],["parent/191",[190,5.259]],["name/192",[195,51.28]],["parent/192",[190,5.259]],["name/193",[196,51.28]],["parent/193",[190,5.259]],["name/194",[197,50.463]],["parent/194",[190,5.259]],["name/195",[198,51.28]],["parent/195",[190,5.259]],["name/196",[199,50.463]],["parent/196",[190,5.259]],["name/197",[200,51.28]],["parent/197",[190,5.259]],["name/198",[201,51.28]],["parent/198",[190,5.259]],["name/199",[202,51.28]],["parent/199",[190,5.259]],["name/200",[203,51.28]],["parent/200",[190,5.259]],["name/201",[163,44.034]],["parent/201",[190,5.259]],["name/202",[204,51.28]],["parent/202",[190,5.259]],["name/203",[205,51.28]],["parent/203",[190,5.259]],["name/204",[206,51.28]],["parent/204",[190,5.259]],["name/205",[207,48.038]],["parent/205",[190,5.259]],["name/206",[208,51.28]],["parent/206",[190,5.259]],["name/207",[209,51.28]],["parent/207",[3,3.178]],["name/208",[117,16.899]],["parent/208",[210,7.871]],["name/209",[193,44.243]],["parent/209",[211,6.573]],["name/210",[212,51.28]],["parent/210",[211,6.573]],["name/211",[191,42.868]],["parent/211",[211,6.573]],["name/212",[213,51.28]],["parent/212",[211,6.573]],["name/213",[214,49.006]],["parent/213",[211,6.573]],["name/214",[215,50.079]],["parent/214",[0,6.773]],["name/215",[216,50.079]],["parent/215",[0,6.773]],["name/216",[217,59.336]],["parent/216",[]],["name/217",[218,78.795]],["parent/217",[217,5.927]],["name/218",[2,50.079]],["parent/218",[219,3.449]],["name/219",[220,78.795]],["parent/219",[219,3.449]],["name/220",[221,78.795]],["parent/220",[219,3.449]],["name/221",[222,73.687]],["parent/221",[219,3.449]],["name/222",[223,78.795]],["parent/222",[219,3.449]],["name/223",[224,78.795]],["parent/223",[219,3.449]],["name/224",[225,78.795]],["parent/224",[219,3.449]],["name/225",[226,78.795]],["parent/225",[219,3.449]],["name/226",[227,78.795]],["parent/226",[219,3.449]],["name/227",[228,78.795]],["parent/227",[219,3.449]],["name/228",[229,78.795]],["parent/228",[219,3.449]],["name/229",[230,78.795]],["parent/229",[219,3.449]],["name/230",[231,78.795]],["parent/230",[219,3.449]],["name/231",[232,78.795]],["parent/231",[219,3.449]],["name/232",[52,49.351]],["parent/232",[219,3.449]],["name/233",[93,50.079]],["parent/233",[219,3.449]],["name/234",[233,78.795]],["parent/234",[219,3.449]],["name/235",[117,16.899]],["parent/235",[234,7.871]],["name/236",[235,78.795]],["parent/236",[219,3.449]],["name/237",[117,16.899]],["parent/237",[236,7.871]],["name/238",[237,78.795]],["parent/238",[219,3.449]],["name/239",[117,16.899]],["parent/239",[238,7.871]],["name/240",[239,78.795]],["parent/240",[219,3.449]],["name/241",[117,16.899]],["parent/241",[240,7.871]],["name/242",[241,57.593]],["parent/242",[219,3.449]],["name/243",[117,16.899]],["parent/243",[242,7.871]],["name/244",[243,78.795]],["parent/244",[219,3.449]],["name/245",[117,16.899]],["parent/245",[244,7.871]],["name/246",[245,78.795]],["parent/246",[219,3.449]],["name/247",[117,16.899]],["parent/247",[246,7.871]],["name/248",[247,78.795]],["parent/248",[219,3.449]],["name/249",[117,16.899]],["parent/249",[248,7.871]],["name/250",[249,78.795]],["parent/250",[219,3.449]],["name/251",[117,16.899]],["parent/251",[250,7.871]],["name/252",[251,78.795]],["parent/252",[219,3.449]],["name/253",[117,16.899]],["parent/253",[252,7.871]],["name/254",[253,78.795]],["parent/254",[219,3.449]],["name/255",[117,16.899]],["parent/255",[254,7.871]],["name/256",[255,78.795]],["parent/256",[219,3.449]],["name/257",[117,16.899]],["parent/257",[256,7.871]],["name/258",[257,78.795]],["parent/258",[219,3.449]],["name/259",[117,16.899]],["parent/259",[258,7.871]],["name/260",[259,78.795]],["parent/260",[219,3.449]],["name/261",[117,16.899]],["parent/261",[260,7.871]],["name/262",[261,78.795]],["parent/262",[219,3.449]],["name/263",[117,16.899]],["parent/263",[262,7.871]],["name/264",[263,78.795]],["parent/264",[219,3.449]],["name/265",[117,16.899]],["parent/265",[264,7.871]],["name/266",[265,78.795]],["parent/266",[219,3.449]],["name/267",[266,78.795]],["parent/267",[219,3.449]],["name/268",[267,78.795]],["parent/268",[219,3.449]],["name/269",[117,16.899]],["parent/269",[268,7.871]],["name/270",[269,56.823]],["parent/270",[270,7.871]],["name/271",[271,67.809]],["parent/271",[219,3.449]],["name/272",[117,16.899]],["parent/272",[272,7.871]],["name/273",[273,65.803]],["parent/273",[274,5.836]],["name/274",[275,70.322]],["parent/274",[274,5.836]],["name/275",[276,65.803]],["parent/275",[274,5.836]],["name/276",[277,65.803]],["parent/276",[274,5.836]],["name/277",[278,65.803]],["parent/277",[274,5.836]],["name/278",[279,65.803]],["parent/278",[274,5.836]],["name/279",[280,65.803]],["parent/279",[274,5.836]],["name/280",[281,65.803]],["parent/280",[274,5.836]],["name/281",[282,70.322]],["parent/281",[274,5.836]],["name/282",[283,65.803]],["parent/282",[274,5.836]],["name/283",[284,65.803]],["parent/283",[274,5.836]],["name/284",[285,67.809]],["parent/284",[219,3.449]],["name/285",[286,67.809]],["parent/285",[219,3.449]],["name/286",[117,16.899]],["parent/286",[287,7.871]],["name/287",[288,78.795]],["parent/287",[289,6.773]],["name/288",[290,78.795]],["parent/288",[289,6.773]],["name/289",[291,78.795]],["parent/289",[289,6.773]],["name/290",[207,48.038]],["parent/290",[289,6.773]],["name/291",[292,78.795]],["parent/291",[219,3.449]],["name/292",[117,16.899]],["parent/292",[293,7.871]],["name/293",[269,56.823]],["parent/293",[294,7.871]],["name/294",[295,78.795]],["parent/294",[219,3.449]],["name/295",[296,67.809]],["parent/295",[219,3.449]],["name/296",[117,16.899]],["parent/296",[297,7.871]],["name/297",[298,67.809]],["parent/297",[299,6.773]],["name/298",[300,78.795]],["parent/298",[299,6.773]],["name/299",[301,78.795]],["parent/299",[299,6.773]],["name/300",[302,78.795]],["parent/300",[299,6.773]],["name/301",[303,78.795]],["parent/301",[219,3.449]],["name/302",[117,16.899]],["parent/302",[304,7.871]],["name/303",[305,78.795]],["parent/303",[306,7.871]],["name/304",[307,78.795]],["parent/304",[219,3.449]],["name/305",[117,16.899]],["parent/305",[308,7.871]],["name/306",[191,42.868]],["parent/306",[309,7.871]],["name/307",[310,67.809]],["parent/307",[219,3.449]],["name/308",[311,67.809]],["parent/308",[219,3.449]],["name/309",[312,78.795]],["parent/309",[219,3.449]],["name/310",[313,67.809]],["parent/310",[219,3.449]],["name/311",[314,67.809]],["parent/311",[219,3.449]],["name/312",[117,16.899]],["parent/312",[315,7.871]],["name/313",[316,78.795]],["parent/313",[317,6.573]],["name/314",[318,78.795]],["parent/314",[317,6.573]],["name/315",[319,78.795]],["parent/315",[317,6.573]],["name/316",[320,70.322]],["parent/316",[317,6.573]],["name/317",[321,78.795]],["parent/317",[317,6.573]],["name/318",[322,67.809]],["parent/318",[219,3.449]],["name/319",[323,78.795]],["parent/319",[219,3.449]],["name/320",[117,16.899]],["parent/320",[324,7.871]],["name/321",[269,56.823]],["parent/321",[325,7.871]],["name/322",[326,67.809]],["parent/322",[219,3.449]],["name/323",[327,78.795]],["parent/323",[219,3.449]],["name/324",[328,78.795]],["parent/324",[219,3.449]],["name/325",[117,16.899]],["parent/325",[329,7.871]],["name/326",[269,56.823]],["parent/326",[330,7.871]],["name/327",[331,78.795]],["parent/327",[219,3.449]],["name/328",[332,78.795]],["parent/328",[219,3.449]],["name/329",[117,16.899]],["parent/329",[333,7.871]],["name/330",[334,78.795]],["parent/330",[335,7.36]],["name/331",[336,78.795]],["parent/331",[335,7.36]],["name/332",[337,78.795]],["parent/332",[219,3.449]],["name/333",[338,78.795]],["parent/333",[219,3.449]],["name/334",[117,16.899]],["parent/334",[339,7.871]],["name/335",[340,70.322]],["parent/335",[341,6.773]],["name/336",[342,70.322]],["parent/336",[341,6.773]],["name/337",[343,70.322]],["parent/337",[341,6.773]],["name/338",[344,70.322]],["parent/338",[341,6.773]],["name/339",[345,78.795]],["parent/339",[219,3.449]],["name/340",[346,78.795]],["parent/340",[219,3.449]],["name/341",[117,16.899]],["parent/341",[347,7.871]],["name/342",[269,56.823]],["parent/342",[348,7.871]],["name/343",[349,78.795]],["parent/343",[219,3.449]],["name/344",[117,16.899]],["parent/344",[350,7.871]],["name/345",[269,56.823]],["parent/345",[351,7.871]],["name/346",[352,78.795]],["parent/346",[219,3.449]],["name/347",[353,78.795]],["parent/347",[219,3.449]],["name/348",[354,78.795]],["parent/348",[219,3.449]],["name/349",[117,16.899]],["parent/349",[355,7.871]],["name/350",[356,70.322]],["parent/350",[357,7.36]],["name/351",[358,70.322]],["parent/351",[357,7.36]],["name/352",[359,78.795]],["parent/352",[219,3.449]],["name/353",[117,16.899]],["parent/353",[360,7.871]],["name/354",[361,78.795]],["parent/354",[362,6.573]],["name/355",[363,67.809]],["parent/355",[362,6.573]],["name/356",[364,78.795]],["parent/356",[362,6.573]],["name/357",[365,78.795]],["parent/357",[362,6.573]],["name/358",[366,78.795]],["parent/358",[362,6.573]],["name/359",[367,67.809]],["parent/359",[219,3.449]],["name/360",[368,78.795]],["parent/360",[219,3.449]],["name/361",[369,67.809]],["parent/361",[219,3.449]],["name/362",[370,78.795]],["parent/362",[219,3.449]],["name/363",[371,78.795]],["parent/363",[219,3.449]],["name/364",[117,16.899]],["parent/364",[372,7.871]],["name/365",[193,44.243]],["parent/365",[373,6.773]],["name/366",[192,50.079]],["parent/366",[373,6.773]],["name/367",[374,67.809]],["parent/367",[373,6.773]],["name/368",[207,48.038]],["parent/368",[373,6.773]],["name/369",[375,78.795]],["parent/369",[219,3.449]],["name/370",[269,56.823]],["parent/370",[219,3.449]],["name/371",[117,16.899]],["parent/371",[376,7.871]],["name/372",[298,67.809]],["parent/372",[377,7.024]],["name/373",[378,70.322]],["parent/373",[377,7.024]],["name/374",[269,56.823]],["parent/374",[377,7.024]],["name/375",[379,67.809]],["parent/375",[219,3.449]],["name/376",[117,16.899]],["parent/376",[380,7.871]],["name/377",[191,42.868]],["parent/377",[381,6.138]],["name/378",[382,70.322]],["parent/378",[381,6.138]],["name/379",[383,55.442]],["parent/379",[381,6.138]],["name/380",[384,70.322]],["parent/380",[381,6.138]],["name/381",[374,67.809]],["parent/381",[381,6.138]],["name/382",[385,70.322]],["parent/382",[381,6.138]],["name/383",[386,70.322]],["parent/383",[381,6.138]],["name/384",[207,48.038]],["parent/384",[381,6.138]],["name/385",[151,50.463]],["parent/385",[219,3.449]],["name/386",[152,50.463]],["parent/386",[219,3.449]],["name/387",[153,50.463]],["parent/387",[219,3.449]],["name/388",[154,51.28]],["parent/388",[219,3.449]],["name/389",[155,51.28]],["parent/389",[219,3.449]],["name/390",[156,50.463]],["parent/390",[219,3.449]],["name/391",[157,50.463]],["parent/391",[219,3.449]],["name/392",[158,50.463]],["parent/392",[219,3.449]],["name/393",[159,50.463]],["parent/393",[219,3.449]],["name/394",[117,16.899]],["parent/394",[387,7.871]],["name/395",[161,50.463]],["parent/395",[219,3.449]],["name/396",[117,16.899]],["parent/396",[388,7.871]],["name/397",[163,44.034]],["parent/397",[219,3.449]],["name/398",[117,16.899]],["parent/398",[389,7.871]],["name/399",[390,52.17]],["parent/399",[219,3.449]],["name/400",[117,16.899]],["parent/400",[391,7.871]],["name/401",[165,50.463]],["parent/401",[219,3.449]],["name/402",[117,16.899]],["parent/402",[392,7.871]],["name/403",[167,50.463]],["parent/403",[219,3.449]],["name/404",[168,50.463]],["parent/404",[219,3.449]],["name/405",[169,50.463]],["parent/405",[219,3.449]],["name/406",[170,50.463]],["parent/406",[219,3.449]],["name/407",[171,50.463]],["parent/407",[219,3.449]],["name/408",[172,50.463]],["parent/408",[219,3.449]],["name/409",[173,50.079]],["parent/409",[219,3.449]],["name/410",[174,50.463]],["parent/410",[219,3.449]],["name/411",[175,50.463]],["parent/411",[219,3.449]],["name/412",[176,50.463]],["parent/412",[219,3.449]],["name/413",[177,50.463]],["parent/413",[219,3.449]],["name/414",[178,50.463]],["parent/414",[219,3.449]],["name/415",[179,50.463]],["parent/415",[219,3.449]],["name/416",[180,50.463]],["parent/416",[219,3.449]],["name/417",[181,50.463]],["parent/417",[219,3.449]],["name/418",[182,50.463]],["parent/418",[219,3.449]],["name/419",[183,50.079]],["parent/419",[219,3.449]],["name/420",[184,50.463]],["parent/420",[219,3.449]],["name/421",[185,50.463]],["parent/421",[219,3.449]],["name/422",[186,51.28]],["parent/422",[219,3.449]],["name/423",[187,51.28]],["parent/423",[219,3.449]],["name/424",[117,16.899]],["parent/424",[393,7.871]],["name/425",[189,51.28]],["parent/425",[394,5.259]],["name/426",[191,42.868]],["parent/426",[394,5.259]],["name/427",[192,50.079]],["parent/427",[394,5.259]],["name/428",[193,44.243]],["parent/428",[394,5.259]],["name/429",[194,51.28]],["parent/429",[394,5.259]],["name/430",[195,51.28]],["parent/430",[394,5.259]],["name/431",[196,51.28]],["parent/431",[394,5.259]],["name/432",[197,50.463]],["parent/432",[394,5.259]],["name/433",[198,51.28]],["parent/433",[394,5.259]],["name/434",[199,50.463]],["parent/434",[394,5.259]],["name/435",[200,51.28]],["parent/435",[394,5.259]],["name/436",[201,51.28]],["parent/436",[394,5.259]],["name/437",[202,51.28]],["parent/437",[394,5.259]],["name/438",[203,51.28]],["parent/438",[394,5.259]],["name/439",[163,44.034]],["parent/439",[394,5.259]],["name/440",[204,51.28]],["parent/440",[394,5.259]],["name/441",[205,51.28]],["parent/441",[394,5.259]],["name/442",[206,51.28]],["parent/442",[394,5.259]],["name/443",[207,48.038]],["parent/443",[394,5.259]],["name/444",[208,51.28]],["parent/444",[394,5.259]],["name/445",[209,51.28]],["parent/445",[219,3.449]],["name/446",[117,16.899]],["parent/446",[395,7.871]],["name/447",[193,44.243]],["parent/447",[396,6.573]],["name/448",[212,51.28]],["parent/448",[396,6.573]],["name/449",[191,42.868]],["parent/449",[396,6.573]],["name/450",[213,51.28]],["parent/450",[396,6.573]],["name/451",[214,49.006]],["parent/451",[396,6.573]],["name/452",[397,51.28]],["parent/452",[219,3.449]],["name/453",[398,51.28]],["parent/453",[219,3.449]],["name/454",[117,16.899]],["parent/454",[399,7.871]],["name/455",[129,50.079]],["parent/455",[219,3.449]],["name/456",[117,16.899]],["parent/456",[400,7.871]],["name/457",[401,51.28]],["parent/457",[219,3.449]],["name/458",[117,16.899]],["parent/458",[402,7.871]],["name/459",[131,50.079]],["parent/459",[219,3.449]],["name/460",[117,16.899]],["parent/460",[403,7.871]],["name/461",[133,50.079]],["parent/461",[219,3.449]],["name/462",[117,16.899]],["parent/462",[404,7.871]],["name/463",[135,50.079]],["parent/463",[219,3.449]],["name/464",[117,16.899]],["parent/464",[405,7.871]],["name/465",[137,50.079]],["parent/465",[219,3.449]],["name/466",[117,16.899]],["parent/466",[406,7.871]],["name/467",[139,50.079]],["parent/467",[219,3.449]],["name/468",[117,16.899]],["parent/468",[407,7.871]],["name/469",[141,50.079]],["parent/469",[219,3.449]],["name/470",[117,16.899]],["parent/470",[408,7.871]],["name/471",[143,50.079]],["parent/471",[219,3.449]],["name/472",[117,16.899]],["parent/472",[409,7.871]],["name/473",[145,50.079]],["parent/473",[219,3.449]],["name/474",[117,16.899]],["parent/474",[410,7.871]],["name/475",[147,50.079]],["parent/475",[219,3.449]],["name/476",[117,16.899]],["parent/476",[411,7.871]],["name/477",[149,50.079]],["parent/477",[219,3.449]],["name/478",[117,16.899]],["parent/478",[412,7.871]],["name/479",[413,51.28]],["parent/479",[219,3.449]],["name/480",[117,16.899]],["parent/480",[414,7.871]],["name/481",[415,51.28]],["parent/481",[219,3.449]],["name/482",[117,16.899]],["parent/482",[416,7.871]],["name/483",[417,51.28]],["parent/483",[219,3.449]],["name/484",[418,51.28]],["parent/484",[219,3.449]],["name/485",[215,50.079]],["parent/485",[217,5.927]],["name/486",[216,50.079]],["parent/486",[217,5.927]],["name/487",[419,78.795]],["parent/487",[217,5.927]],["name/488",[2,50.079]],["parent/488",[420,3.38]],["name/489",[421,78.795]],["parent/489",[420,3.38]],["name/490",[422,78.795]],["parent/490",[420,3.38]],["name/491",[423,78.795]],["parent/491",[420,3.38]],["name/492",[424,78.795]],["parent/492",[420,3.38]],["name/493",[425,78.795]],["parent/493",[420,3.38]],["name/494",[426,78.795]],["parent/494",[420,3.38]],["name/495",[427,78.795]],["parent/495",[420,3.38]],["name/496",[428,78.795]],["parent/496",[420,3.38]],["name/497",[429,78.795]],["parent/497",[420,3.38]],["name/498",[430,78.795]],["parent/498",[420,3.38]],["name/499",[431,78.795]],["parent/499",[420,3.38]],["name/500",[432,78.795]],["parent/500",[420,3.38]],["name/501",[433,78.795]],["parent/501",[420,3.38]],["name/502",[434,78.795]],["parent/502",[420,3.38]],["name/503",[435,78.795]],["parent/503",[420,3.38]],["name/504",[436,78.795]],["parent/504",[420,3.38]],["name/505",[437,78.795]],["parent/505",[420,3.38]],["name/506",[438,78.795]],["parent/506",[420,3.38]],["name/507",[439,78.795]],["parent/507",[420,3.38]],["name/508",[440,78.795]],["parent/508",[420,3.38]],["name/509",[441,78.795]],["parent/509",[420,3.38]],["name/510",[442,78.795]],["parent/510",[420,3.38]],["name/511",[443,78.795]],["parent/511",[420,3.38]],["name/512",[444,78.795]],["parent/512",[420,3.38]],["name/513",[445,78.795]],["parent/513",[420,3.38]],["name/514",[446,78.795]],["parent/514",[420,3.38]],["name/515",[447,78.795]],["parent/515",[420,3.38]],["name/516",[448,78.795]],["parent/516",[420,3.38]],["name/517",[449,78.795]],["parent/517",[420,3.38]],["name/518",[450,78.795]],["parent/518",[420,3.38]],["name/519",[451,78.795]],["parent/519",[420,3.38]],["name/520",[452,78.795]],["parent/520",[420,3.38]],["name/521",[453,78.795]],["parent/521",[420,3.38]],["name/522",[454,78.795]],["parent/522",[420,3.38]],["name/523",[455,78.795]],["parent/523",[420,3.38]],["name/524",[456,78.795]],["parent/524",[420,3.38]],["name/525",[457,78.795]],["parent/525",[420,3.38]],["name/526",[52,49.351]],["parent/526",[420,3.38]],["name/527",[93,50.079]],["parent/527",[420,3.38]],["name/528",[458,65.803]],["parent/528",[420,3.38]],["name/529",[117,16.899]],["parent/529",[459,7.871]],["name/530",[151,50.463]],["parent/530",[420,3.38]],["name/531",[152,50.463]],["parent/531",[420,3.38]],["name/532",[153,50.463]],["parent/532",[420,3.38]],["name/533",[154,51.28]],["parent/533",[420,3.38]],["name/534",[155,51.28]],["parent/534",[420,3.38]],["name/535",[156,50.463]],["parent/535",[420,3.38]],["name/536",[157,50.463]],["parent/536",[420,3.38]],["name/537",[158,50.463]],["parent/537",[420,3.38]],["name/538",[159,50.463]],["parent/538",[420,3.38]],["name/539",[117,16.899]],["parent/539",[460,7.871]],["name/540",[161,50.463]],["parent/540",[420,3.38]],["name/541",[117,16.899]],["parent/541",[461,7.871]],["name/542",[163,44.034]],["parent/542",[420,3.38]],["name/543",[117,16.899]],["parent/543",[462,7.871]],["name/544",[390,52.17]],["parent/544",[420,3.38]],["name/545",[117,16.899]],["parent/545",[463,7.871]],["name/546",[165,50.463]],["parent/546",[420,3.38]],["name/547",[117,16.899]],["parent/547",[464,7.871]],["name/548",[167,50.463]],["parent/548",[420,3.38]],["name/549",[168,50.463]],["parent/549",[420,3.38]],["name/550",[169,50.463]],["parent/550",[420,3.38]],["name/551",[170,50.463]],["parent/551",[420,3.38]],["name/552",[171,50.463]],["parent/552",[420,3.38]],["name/553",[172,50.463]],["parent/553",[420,3.38]],["name/554",[173,50.079]],["parent/554",[420,3.38]],["name/555",[174,50.463]],["parent/555",[420,3.38]],["name/556",[175,50.463]],["parent/556",[420,3.38]],["name/557",[176,50.463]],["parent/557",[420,3.38]],["name/558",[177,50.463]],["parent/558",[420,3.38]],["name/559",[178,50.463]],["parent/559",[420,3.38]],["name/560",[179,50.463]],["parent/560",[420,3.38]],["name/561",[180,50.463]],["parent/561",[420,3.38]],["name/562",[181,50.463]],["parent/562",[420,3.38]],["name/563",[182,50.463]],["parent/563",[420,3.38]],["name/564",[183,50.079]],["parent/564",[420,3.38]],["name/565",[184,50.463]],["parent/565",[420,3.38]],["name/566",[185,50.463]],["parent/566",[420,3.38]],["name/567",[186,51.28]],["parent/567",[420,3.38]],["name/568",[187,51.28]],["parent/568",[420,3.38]],["name/569",[117,16.899]],["parent/569",[465,7.871]],["name/570",[189,51.28]],["parent/570",[466,5.259]],["name/571",[191,42.868]],["parent/571",[466,5.259]],["name/572",[192,50.079]],["parent/572",[466,5.259]],["name/573",[193,44.243]],["parent/573",[466,5.259]],["name/574",[194,51.28]],["parent/574",[466,5.259]],["name/575",[195,51.28]],["parent/575",[466,5.259]],["name/576",[196,51.28]],["parent/576",[466,5.259]],["name/577",[197,50.463]],["parent/577",[466,5.259]],["name/578",[198,51.28]],["parent/578",[466,5.259]],["name/579",[199,50.463]],["parent/579",[466,5.259]],["name/580",[200,51.28]],["parent/580",[466,5.259]],["name/581",[201,51.28]],["parent/581",[466,5.259]],["name/582",[202,51.28]],["parent/582",[466,5.259]],["name/583",[203,51.28]],["parent/583",[466,5.259]],["name/584",[163,44.034]],["parent/584",[466,5.259]],["name/585",[204,51.28]],["parent/585",[466,5.259]],["name/586",[205,51.28]],["parent/586",[466,5.259]],["name/587",[206,51.28]],["parent/587",[466,5.259]],["name/588",[207,48.038]],["parent/588",[466,5.259]],["name/589",[208,51.28]],["parent/589",[466,5.259]],["name/590",[209,51.28]],["parent/590",[420,3.38]],["name/591",[117,16.899]],["parent/591",[467,7.871]],["name/592",[193,44.243]],["parent/592",[468,6.573]],["name/593",[212,51.28]],["parent/593",[468,6.573]],["name/594",[191,42.868]],["parent/594",[468,6.573]],["name/595",[213,51.28]],["parent/595",[468,6.573]],["name/596",[214,49.006]],["parent/596",[468,6.573]],["name/597",[469,73.687]],["parent/597",[420,3.38]],["name/598",[470,73.687]],["parent/598",[420,3.38]],["name/599",[471,70.322]],["parent/599",[420,3.38]],["name/600",[472,73.687]],["parent/600",[420,3.38]],["name/601",[271,67.809]],["parent/601",[420,3.38]],["name/602",[117,16.899]],["parent/602",[473,7.871]],["name/603",[273,65.803]],["parent/603",[474,5.836]],["name/604",[275,70.322]],["parent/604",[474,5.836]],["name/605",[276,65.803]],["parent/605",[474,5.836]],["name/606",[277,65.803]],["parent/606",[474,5.836]],["name/607",[278,65.803]],["parent/607",[474,5.836]],["name/608",[279,65.803]],["parent/608",[474,5.836]],["name/609",[280,65.803]],["parent/609",[474,5.836]],["name/610",[281,65.803]],["parent/610",[474,5.836]],["name/611",[282,70.322]],["parent/611",[474,5.836]],["name/612",[283,65.803]],["parent/612",[474,5.836]],["name/613",[284,65.803]],["parent/613",[474,5.836]],["name/614",[475,73.687]],["parent/614",[420,3.38]],["name/615",[285,67.809]],["parent/615",[420,3.38]],["name/616",[286,67.809]],["parent/616",[420,3.38]],["name/617",[476,73.687]],["parent/617",[420,3.38]],["name/618",[117,16.899]],["parent/618",[477,7.871]],["name/619",[340,70.322]],["parent/619",[478,6.573]],["name/620",[342,70.322]],["parent/620",[478,6.573]],["name/621",[191,42.868]],["parent/621",[478,6.573]],["name/622",[343,70.322]],["parent/622",[478,6.573]],["name/623",[344,70.322]],["parent/623",[478,6.573]],["name/624",[296,67.809]],["parent/624",[420,3.38]],["name/625",[479,73.687]],["parent/625",[420,3.38]],["name/626",[117,16.899]],["parent/626",[480,7.871]],["name/627",[481,73.687]],["parent/627",[482,6.773]],["name/628",[192,50.079]],["parent/628",[482,6.773]],["name/629",[483,73.687]],["parent/629",[482,6.773]],["name/630",[484,64.132]],["parent/630",[482,6.773]],["name/631",[485,73.687]],["parent/631",[420,3.38]],["name/632",[486,70.322]],["parent/632",[420,3.38]],["name/633",[310,67.809]],["parent/633",[420,3.38]],["name/634",[487,73.687]],["parent/634",[420,3.38]],["name/635",[488,67.809]],["parent/635",[420,3.38]],["name/636",[117,16.899]],["parent/636",[489,7.871]],["name/637",[488,67.809]],["parent/637",[490,7.871]],["name/638",[491,70.322]],["parent/638",[420,3.38]],["name/639",[311,67.809]],["parent/639",[420,3.38]],["name/640",[492,73.687]],["parent/640",[420,3.38]],["name/641",[313,67.809]],["parent/641",[420,3.38]],["name/642",[314,67.809]],["parent/642",[420,3.38]],["name/643",[493,70.322]],["parent/643",[420,3.38]],["name/644",[117,16.899]],["parent/644",[494,7.871]],["name/645",[322,67.809]],["parent/645",[420,3.38]],["name/646",[495,73.687]],["parent/646",[420,3.38]],["name/647",[496,65.803]],["parent/647",[420,3.38]],["name/648",[117,16.899]],["parent/648",[497,7.871]],["name/649",[498,73.687]],["parent/649",[499,6.773]],["name/650",[356,70.322]],["parent/650",[499,6.773]],["name/651",[358,70.322]],["parent/651",[499,6.773]],["name/652",[484,64.132]],["parent/652",[499,6.773]],["name/653",[326,67.809]],["parent/653",[420,3.38]],["name/654",[363,67.809]],["parent/654",[420,3.38]],["name/655",[500,73.687]],["parent/655",[420,3.38]],["name/656",[117,16.899]],["parent/656",[501,7.871]],["name/657",[207,48.038]],["parent/657",[502,7.36]],["name/658",[214,49.006]],["parent/658",[502,7.36]],["name/659",[503,70.322]],["parent/659",[420,3.38]],["name/660",[504,73.687]],["parent/660",[420,3.38]],["name/661",[117,16.899]],["parent/661",[505,7.871]],["name/662",[320,70.322]],["parent/662",[506,7.36]],["name/663",[507,73.687]],["parent/663",[506,7.36]],["name/664",[508,73.687]],["parent/664",[420,3.38]],["name/665",[367,67.809]],["parent/665",[420,3.38]],["name/666",[509,70.322]],["parent/666",[420,3.38]],["name/667",[510,70.322]],["parent/667",[420,3.38]],["name/668",[117,16.899]],["parent/668",[511,7.871]],["name/669",[512,70.322]],["parent/669",[513,7.36]],["name/670",[514,70.322]],["parent/670",[513,7.36]],["name/671",[369,67.809]],["parent/671",[420,3.38]],["name/672",[515,73.687]],["parent/672",[420,3.38]],["name/673",[117,16.899]],["parent/673",[516,7.871]],["name/674",[273,65.803]],["parent/674",[517,6.027]],["name/675",[276,65.803]],["parent/675",[517,6.027]],["name/676",[277,65.803]],["parent/676",[517,6.027]],["name/677",[278,65.803]],["parent/677",[517,6.027]],["name/678",[279,65.803]],["parent/678",[517,6.027]],["name/679",[280,65.803]],["parent/679",[517,6.027]],["name/680",[281,65.803]],["parent/680",[517,6.027]],["name/681",[283,65.803]],["parent/681",[517,6.027]],["name/682",[284,65.803]],["parent/682",[517,6.027]],["name/683",[518,73.687]],["parent/683",[420,3.38]],["name/684",[519,73.687]],["parent/684",[420,3.38]],["name/685",[117,16.899]],["parent/685",[520,7.871]],["name/686",[191,42.868]],["parent/686",[521,7.024]],["name/687",[522,73.687]],["parent/687",[521,7.024]],["name/688",[214,49.006]],["parent/688",[521,7.024]],["name/689",[269,56.823]],["parent/689",[420,3.38]],["name/690",[117,16.899]],["parent/690",[523,7.871]],["name/691",[298,67.809]],["parent/691",[524,7.024]],["name/692",[378,70.322]],["parent/692",[524,7.024]],["name/693",[269,56.823]],["parent/693",[524,7.024]],["name/694",[379,67.809]],["parent/694",[420,3.38]],["name/695",[117,16.899]],["parent/695",[525,7.871]],["name/696",[191,42.868]],["parent/696",[526,6.138]],["name/697",[382,70.322]],["parent/697",[526,6.138]],["name/698",[496,65.803]],["parent/698",[526,6.138]],["name/699",[384,70.322]],["parent/699",[526,6.138]],["name/700",[374,67.809]],["parent/700",[526,6.138]],["name/701",[385,70.322]],["parent/701",[526,6.138]],["name/702",[386,70.322]],["parent/702",[526,6.138]],["name/703",[207,48.038]],["parent/703",[526,6.138]],["name/704",[397,51.28]],["parent/704",[420,3.38]],["name/705",[398,51.28]],["parent/705",[420,3.38]],["name/706",[117,16.899]],["parent/706",[527,7.871]],["name/707",[129,50.079]],["parent/707",[420,3.38]],["name/708",[117,16.899]],["parent/708",[528,7.871]],["name/709",[401,51.28]],["parent/709",[420,3.38]],["name/710",[117,16.899]],["parent/710",[529,7.871]],["name/711",[131,50.079]],["parent/711",[420,3.38]],["name/712",[117,16.899]],["parent/712",[530,7.871]],["name/713",[133,50.079]],["parent/713",[420,3.38]],["name/714",[117,16.899]],["parent/714",[531,7.871]],["name/715",[135,50.079]],["parent/715",[420,3.38]],["name/716",[117,16.899]],["parent/716",[532,7.871]],["name/717",[137,50.079]],["parent/717",[420,3.38]],["name/718",[117,16.899]],["parent/718",[533,7.871]],["name/719",[139,50.079]],["parent/719",[420,3.38]],["name/720",[117,16.899]],["parent/720",[534,7.871]],["name/721",[141,50.079]],["parent/721",[420,3.38]],["name/722",[117,16.899]],["parent/722",[535,7.871]],["name/723",[143,50.079]],["parent/723",[420,3.38]],["name/724",[117,16.899]],["parent/724",[536,7.871]],["name/725",[145,50.079]],["parent/725",[420,3.38]],["name/726",[117,16.899]],["parent/726",[537,7.871]],["name/727",[147,50.079]],["parent/727",[420,3.38]],["name/728",[117,16.899]],["parent/728",[538,7.871]],["name/729",[149,50.079]],["parent/729",[420,3.38]],["name/730",[117,16.899]],["parent/730",[539,7.871]],["name/731",[413,51.28]],["parent/731",[420,3.38]],["name/732",[117,16.899]],["parent/732",[540,7.871]],["name/733",[415,51.28]],["parent/733",[420,3.38]],["name/734",[117,16.899]],["parent/734",[541,7.871]],["name/735",[417,51.28]],["parent/735",[420,3.38]],["name/736",[418,51.28]],["parent/736",[420,3.38]],["name/737",[215,50.079]],["parent/737",[217,5.927]],["name/738",[216,50.079]],["parent/738",[217,5.927]],["name/739",[542,78.795]],["parent/739",[217,5.927]],["name/740",[2,50.079]],["parent/740",[543,3.622]],["name/741",[544,78.795]],["parent/741",[543,3.622]],["name/742",[222,73.687]],["parent/742",[543,3.622]],["name/743",[545,78.795]],["parent/743",[543,3.622]],["name/744",[546,78.795]],["parent/744",[543,3.622]],["name/745",[547,78.795]],["parent/745",[543,3.622]],["name/746",[548,78.795]],["parent/746",[543,3.622]],["name/747",[549,78.795]],["parent/747",[543,3.622]],["name/748",[550,78.795]],["parent/748",[543,3.622]],["name/749",[52,49.351]],["parent/749",[543,3.622]],["name/750",[93,50.079]],["parent/750",[543,3.622]],["name/751",[458,65.803]],["parent/751",[543,3.622]],["name/752",[117,16.899]],["parent/752",[551,7.871]],["name/753",[151,50.463]],["parent/753",[543,3.622]],["name/754",[152,50.463]],["parent/754",[543,3.622]],["name/755",[153,50.463]],["parent/755",[543,3.622]],["name/756",[154,51.28]],["parent/756",[543,3.622]],["name/757",[155,51.28]],["parent/757",[543,3.622]],["name/758",[156,50.463]],["parent/758",[543,3.622]],["name/759",[157,50.463]],["parent/759",[543,3.622]],["name/760",[158,50.463]],["parent/760",[543,3.622]],["name/761",[159,50.463]],["parent/761",[543,3.622]],["name/762",[117,16.899]],["parent/762",[552,7.871]],["name/763",[161,50.463]],["parent/763",[543,3.622]],["name/764",[117,16.899]],["parent/764",[553,7.871]],["name/765",[163,44.034]],["parent/765",[543,3.622]],["name/766",[117,16.899]],["parent/766",[554,7.871]],["name/767",[390,52.17]],["parent/767",[543,3.622]],["name/768",[117,16.899]],["parent/768",[555,7.871]],["name/769",[165,50.463]],["parent/769",[543,3.622]],["name/770",[117,16.899]],["parent/770",[556,7.871]],["name/771",[167,50.463]],["parent/771",[543,3.622]],["name/772",[168,50.463]],["parent/772",[543,3.622]],["name/773",[169,50.463]],["parent/773",[543,3.622]],["name/774",[170,50.463]],["parent/774",[543,3.622]],["name/775",[171,50.463]],["parent/775",[543,3.622]],["name/776",[172,50.463]],["parent/776",[543,3.622]],["name/777",[173,50.079]],["parent/777",[543,3.622]],["name/778",[174,50.463]],["parent/778",[543,3.622]],["name/779",[175,50.463]],["parent/779",[543,3.622]],["name/780",[176,50.463]],["parent/780",[543,3.622]],["name/781",[177,50.463]],["parent/781",[543,3.622]],["name/782",[178,50.463]],["parent/782",[543,3.622]],["name/783",[179,50.463]],["parent/783",[543,3.622]],["name/784",[180,50.463]],["parent/784",[543,3.622]],["name/785",[181,50.463]],["parent/785",[543,3.622]],["name/786",[182,50.463]],["parent/786",[543,3.622]],["name/787",[183,50.079]],["parent/787",[543,3.622]],["name/788",[184,50.463]],["parent/788",[543,3.622]],["name/789",[185,50.463]],["parent/789",[543,3.622]],["name/790",[186,51.28]],["parent/790",[543,3.622]],["name/791",[187,51.28]],["parent/791",[543,3.622]],["name/792",[117,16.899]],["parent/792",[557,7.871]],["name/793",[189,51.28]],["parent/793",[558,5.259]],["name/794",[191,42.868]],["parent/794",[558,5.259]],["name/795",[192,50.079]],["parent/795",[558,5.259]],["name/796",[193,44.243]],["parent/796",[558,5.259]],["name/797",[194,51.28]],["parent/797",[558,5.259]],["name/798",[195,51.28]],["parent/798",[558,5.259]],["name/799",[196,51.28]],["parent/799",[558,5.259]],["name/800",[197,50.463]],["parent/800",[558,5.259]],["name/801",[198,51.28]],["parent/801",[558,5.259]],["name/802",[199,50.463]],["parent/802",[558,5.259]],["name/803",[200,51.28]],["parent/803",[558,5.259]],["name/804",[201,51.28]],["parent/804",[558,5.259]],["name/805",[202,51.28]],["parent/805",[558,5.259]],["name/806",[203,51.28]],["parent/806",[558,5.259]],["name/807",[163,44.034]],["parent/807",[558,5.259]],["name/808",[204,51.28]],["parent/808",[558,5.259]],["name/809",[205,51.28]],["parent/809",[558,5.259]],["name/810",[206,51.28]],["parent/810",[558,5.259]],["name/811",[207,48.038]],["parent/811",[558,5.259]],["name/812",[208,51.28]],["parent/812",[558,5.259]],["name/813",[209,51.28]],["parent/813",[543,3.622]],["name/814",[117,16.899]],["parent/814",[559,7.871]],["name/815",[193,44.243]],["parent/815",[560,6.573]],["name/816",[212,51.28]],["parent/816",[560,6.573]],["name/817",[191,42.868]],["parent/817",[560,6.573]],["name/818",[213,51.28]],["parent/818",[560,6.573]],["name/819",[214,49.006]],["parent/819",[560,6.573]],["name/820",[469,73.687]],["parent/820",[543,3.622]],["name/821",[470,73.687]],["parent/821",[543,3.622]],["name/822",[471,70.322]],["parent/822",[543,3.622]],["name/823",[472,73.687]],["parent/823",[543,3.622]],["name/824",[271,67.809]],["parent/824",[543,3.622]],["name/825",[117,16.899]],["parent/825",[561,7.871]],["name/826",[273,65.803]],["parent/826",[562,5.836]],["name/827",[275,70.322]],["parent/827",[562,5.836]],["name/828",[276,65.803]],["parent/828",[562,5.836]],["name/829",[277,65.803]],["parent/829",[562,5.836]],["name/830",[278,65.803]],["parent/830",[562,5.836]],["name/831",[279,65.803]],["parent/831",[562,5.836]],["name/832",[280,65.803]],["parent/832",[562,5.836]],["name/833",[281,65.803]],["parent/833",[562,5.836]],["name/834",[282,70.322]],["parent/834",[562,5.836]],["name/835",[283,65.803]],["parent/835",[562,5.836]],["name/836",[284,65.803]],["parent/836",[562,5.836]],["name/837",[475,73.687]],["parent/837",[543,3.622]],["name/838",[285,67.809]],["parent/838",[543,3.622]],["name/839",[286,67.809]],["parent/839",[543,3.622]],["name/840",[476,73.687]],["parent/840",[543,3.622]],["name/841",[117,16.899]],["parent/841",[563,7.871]],["name/842",[340,70.322]],["parent/842",[564,6.573]],["name/843",[342,70.322]],["parent/843",[564,6.573]],["name/844",[191,42.868]],["parent/844",[564,6.573]],["name/845",[343,70.322]],["parent/845",[564,6.573]],["name/846",[344,70.322]],["parent/846",[564,6.573]],["name/847",[296,67.809]],["parent/847",[543,3.622]],["name/848",[479,73.687]],["parent/848",[543,3.622]],["name/849",[117,16.899]],["parent/849",[565,7.871]],["name/850",[481,73.687]],["parent/850",[566,6.773]],["name/851",[192,50.079]],["parent/851",[566,6.773]],["name/852",[483,73.687]],["parent/852",[566,6.773]],["name/853",[484,64.132]],["parent/853",[566,6.773]],["name/854",[485,73.687]],["parent/854",[543,3.622]],["name/855",[486,70.322]],["parent/855",[543,3.622]],["name/856",[310,67.809]],["parent/856",[543,3.622]],["name/857",[487,73.687]],["parent/857",[543,3.622]],["name/858",[488,67.809]],["parent/858",[543,3.622]],["name/859",[117,16.899]],["parent/859",[567,7.871]],["name/860",[488,67.809]],["parent/860",[568,7.871]],["name/861",[491,70.322]],["parent/861",[543,3.622]],["name/862",[311,67.809]],["parent/862",[543,3.622]],["name/863",[492,73.687]],["parent/863",[543,3.622]],["name/864",[313,67.809]],["parent/864",[543,3.622]],["name/865",[314,67.809]],["parent/865",[543,3.622]],["name/866",[493,70.322]],["parent/866",[543,3.622]],["name/867",[117,16.899]],["parent/867",[569,7.871]],["name/868",[322,67.809]],["parent/868",[543,3.622]],["name/869",[495,73.687]],["parent/869",[543,3.622]],["name/870",[496,65.803]],["parent/870",[543,3.622]],["name/871",[117,16.899]],["parent/871",[570,7.871]],["name/872",[498,73.687]],["parent/872",[571,6.773]],["name/873",[356,70.322]],["parent/873",[571,6.773]],["name/874",[358,70.322]],["parent/874",[571,6.773]],["name/875",[484,64.132]],["parent/875",[571,6.773]],["name/876",[326,67.809]],["parent/876",[543,3.622]],["name/877",[363,67.809]],["parent/877",[543,3.622]],["name/878",[500,73.687]],["parent/878",[543,3.622]],["name/879",[117,16.899]],["parent/879",[572,7.871]],["name/880",[207,48.038]],["parent/880",[573,7.36]],["name/881",[214,49.006]],["parent/881",[573,7.36]],["name/882",[503,70.322]],["parent/882",[543,3.622]],["name/883",[504,73.687]],["parent/883",[543,3.622]],["name/884",[117,16.899]],["parent/884",[574,7.871]],["name/885",[320,70.322]],["parent/885",[575,7.36]],["name/886",[507,73.687]],["parent/886",[575,7.36]],["name/887",[508,73.687]],["parent/887",[543,3.622]],["name/888",[367,67.809]],["parent/888",[543,3.622]],["name/889",[509,70.322]],["parent/889",[543,3.622]],["name/890",[510,70.322]],["parent/890",[543,3.622]],["name/891",[117,16.899]],["parent/891",[576,7.871]],["name/892",[512,70.322]],["parent/892",[577,7.36]],["name/893",[514,70.322]],["parent/893",[577,7.36]],["name/894",[369,67.809]],["parent/894",[543,3.622]],["name/895",[515,73.687]],["parent/895",[543,3.622]],["name/896",[117,16.899]],["parent/896",[578,7.871]],["name/897",[273,65.803]],["parent/897",[579,6.027]],["name/898",[276,65.803]],["parent/898",[579,6.027]],["name/899",[277,65.803]],["parent/899",[579,6.027]],["name/900",[278,65.803]],["parent/900",[579,6.027]],["name/901",[279,65.803]],["parent/901",[579,6.027]],["name/902",[280,65.803]],["parent/902",[579,6.027]],["name/903",[281,65.803]],["parent/903",[579,6.027]],["name/904",[283,65.803]],["parent/904",[579,6.027]],["name/905",[284,65.803]],["parent/905",[579,6.027]],["name/906",[518,73.687]],["parent/906",[543,3.622]],["name/907",[519,73.687]],["parent/907",[543,3.622]],["name/908",[117,16.899]],["parent/908",[580,7.871]],["name/909",[191,42.868]],["parent/909",[581,7.024]],["name/910",[522,73.687]],["parent/910",[581,7.024]],["name/911",[214,49.006]],["parent/911",[581,7.024]],["name/912",[269,56.823]],["parent/912",[543,3.622]],["name/913",[117,16.899]],["parent/913",[582,7.871]],["name/914",[298,67.809]],["parent/914",[583,7.024]],["name/915",[378,70.322]],["parent/915",[583,7.024]],["name/916",[269,56.823]],["parent/916",[583,7.024]],["name/917",[379,67.809]],["parent/917",[543,3.622]],["name/918",[117,16.899]],["parent/918",[584,7.871]],["name/919",[191,42.868]],["parent/919",[585,6.138]],["name/920",[382,70.322]],["parent/920",[585,6.138]],["name/921",[496,65.803]],["parent/921",[585,6.138]],["name/922",[384,70.322]],["parent/922",[585,6.138]],["name/923",[374,67.809]],["parent/923",[585,6.138]],["name/924",[385,70.322]],["parent/924",[585,6.138]],["name/925",[386,70.322]],["parent/925",[585,6.138]],["name/926",[207,48.038]],["parent/926",[585,6.138]],["name/927",[397,51.28]],["parent/927",[543,3.622]],["name/928",[398,51.28]],["parent/928",[543,3.622]],["name/929",[117,16.899]],["parent/929",[586,7.871]],["name/930",[129,50.079]],["parent/930",[543,3.622]],["name/931",[117,16.899]],["parent/931",[587,7.871]],["name/932",[401,51.28]],["parent/932",[543,3.622]],["name/933",[117,16.899]],["parent/933",[588,7.871]],["name/934",[131,50.079]],["parent/934",[543,3.622]],["name/935",[117,16.899]],["parent/935",[589,7.871]],["name/936",[133,50.079]],["parent/936",[543,3.622]],["name/937",[117,16.899]],["parent/937",[590,7.871]],["name/938",[135,50.079]],["parent/938",[543,3.622]],["name/939",[117,16.899]],["parent/939",[591,7.871]],["name/940",[137,50.079]],["parent/940",[543,3.622]],["name/941",[117,16.899]],["parent/941",[592,7.871]],["name/942",[139,50.079]],["parent/942",[543,3.622]],["name/943",[117,16.899]],["parent/943",[593,7.871]],["name/944",[141,50.079]],["parent/944",[543,3.622]],["name/945",[117,16.899]],["parent/945",[594,7.871]],["name/946",[143,50.079]],["parent/946",[543,3.622]],["name/947",[117,16.899]],["parent/947",[595,7.871]],["name/948",[145,50.079]],["parent/948",[543,3.622]],["name/949",[117,16.899]],["parent/949",[596,7.871]],["name/950",[147,50.079]],["parent/950",[543,3.622]],["name/951",[117,16.899]],["parent/951",[597,7.871]],["name/952",[149,50.079]],["parent/952",[543,3.622]],["name/953",[117,16.899]],["parent/953",[598,7.871]],["name/954",[413,51.28]],["parent/954",[543,3.622]],["name/955",[117,16.899]],["parent/955",[599,7.871]],["name/956",[415,51.28]],["parent/956",[543,3.622]],["name/957",[117,16.899]],["parent/957",[600,7.871]],["name/958",[417,51.28]],["parent/958",[543,3.622]],["name/959",[418,51.28]],["parent/959",[543,3.622]],["name/960",[215,50.079]],["parent/960",[217,5.927]],["name/961",[216,50.079]],["parent/961",[217,5.927]],["name/962",[601,52.17]],["parent/962",[]],["name/963",[602,78.795]],["parent/963",[601,5.211]],["name/964",[2,50.079]],["parent/964",[603,3.844]],["name/965",[604,78.795]],["parent/965",[603,3.844]],["name/966",[605,78.795]],["parent/966",[603,3.844]],["name/967",[606,78.795]],["parent/967",[603,3.844]],["name/968",[607,78.795]],["parent/968",[603,3.844]],["name/969",[608,78.795]],["parent/969",[603,3.844]],["name/970",[609,78.795]],["parent/970",[603,3.844]],["name/971",[610,78.795]],["parent/971",[603,3.844]],["name/972",[611,78.795]],["parent/972",[603,3.844]],["name/973",[612,78.795]],["parent/973",[603,3.844]],["name/974",[613,78.795]],["parent/974",[603,3.844]],["name/975",[614,78.795]],["parent/975",[603,3.844]],["name/976",[615,78.795]],["parent/976",[603,3.844]],["name/977",[52,49.351]],["parent/977",[603,3.844]],["name/978",[616,73.687]],["parent/978",[603,3.844]],["name/979",[617,78.795]],["parent/979",[603,3.844]],["name/980",[618,78.795]],["parent/980",[603,3.844]],["name/981",[619,78.795]],["parent/981",[603,3.844]],["name/982",[620,78.795]],["parent/982",[603,3.844]],["name/983",[621,78.795]],["parent/983",[603,3.844]],["name/984",[601,52.17]],["parent/984",[603,3.844]],["name/985",[622,78.795]],["parent/985",[603,3.844]],["name/986",[623,78.795]],["parent/986",[603,3.844]],["name/987",[624,78.795]],["parent/987",[603,3.844]],["name/988",[93,50.079]],["parent/988",[603,3.844]],["name/989",[625,62.701]],["parent/989",[603,3.844]],["name/990",[117,16.899]],["parent/990",[626,7.871]],["name/991",[627,78.795]],["parent/991",[603,3.844]],["name/992",[117,16.899]],["parent/992",[628,7.871]],["name/993",[241,57.593]],["parent/993",[603,3.844]],["name/994",[117,16.899]],["parent/994",[629,7.871]],["name/995",[630,78.795]],["parent/995",[603,3.844]],["name/996",[117,16.899]],["parent/996",[631,7.871]],["name/997",[632,78.795]],["parent/997",[603,3.844]],["name/998",[117,16.899]],["parent/998",[633,7.871]],["name/999",[634,61.449]],["parent/999",[603,3.844]],["name/1000",[117,16.899]],["parent/1000",[635,7.871]],["name/1001",[397,51.28]],["parent/1001",[603,3.844]],["name/1002",[398,51.28]],["parent/1002",[603,3.844]],["name/1003",[117,16.899]],["parent/1003",[636,7.871]],["name/1004",[129,50.079]],["parent/1004",[603,3.844]],["name/1005",[117,16.899]],["parent/1005",[637,7.871]],["name/1006",[401,51.28]],["parent/1006",[603,3.844]],["name/1007",[117,16.899]],["parent/1007",[638,7.871]],["name/1008",[131,50.079]],["parent/1008",[603,3.844]],["name/1009",[117,16.899]],["parent/1009",[639,7.871]],["name/1010",[133,50.079]],["parent/1010",[603,3.844]],["name/1011",[117,16.899]],["parent/1011",[640,7.871]],["name/1012",[135,50.079]],["parent/1012",[603,3.844]],["name/1013",[117,16.899]],["parent/1013",[641,7.871]],["name/1014",[137,50.079]],["parent/1014",[603,3.844]],["name/1015",[117,16.899]],["parent/1015",[642,7.871]],["name/1016",[139,50.079]],["parent/1016",[603,3.844]],["name/1017",[117,16.899]],["parent/1017",[643,7.871]],["name/1018",[141,50.079]],["parent/1018",[603,3.844]],["name/1019",[117,16.899]],["parent/1019",[644,7.871]],["name/1020",[143,50.079]],["parent/1020",[603,3.844]],["name/1021",[117,16.899]],["parent/1021",[645,7.871]],["name/1022",[145,50.079]],["parent/1022",[603,3.844]],["name/1023",[117,16.899]],["parent/1023",[646,7.871]],["name/1024",[147,50.079]],["parent/1024",[603,3.844]],["name/1025",[117,16.899]],["parent/1025",[647,7.871]],["name/1026",[183,50.079]],["parent/1026",[603,3.844]],["name/1027",[117,16.899]],["parent/1027",[648,7.871]],["name/1028",[149,50.079]],["parent/1028",[603,3.844]],["name/1029",[117,16.899]],["parent/1029",[649,7.871]],["name/1030",[413,51.28]],["parent/1030",[603,3.844]],["name/1031",[117,16.899]],["parent/1031",[650,7.871]],["name/1032",[415,51.28]],["parent/1032",[603,3.844]],["name/1033",[117,16.899]],["parent/1033",[651,7.871]],["name/1034",[417,51.28]],["parent/1034",[603,3.844]],["name/1035",[418,51.28]],["parent/1035",[603,3.844]],["name/1036",[151,50.463]],["parent/1036",[603,3.844]],["name/1037",[152,50.463]],["parent/1037",[603,3.844]],["name/1038",[153,50.463]],["parent/1038",[603,3.844]],["name/1039",[154,51.28]],["parent/1039",[603,3.844]],["name/1040",[155,51.28]],["parent/1040",[603,3.844]],["name/1041",[156,50.463]],["parent/1041",[603,3.844]],["name/1042",[157,50.463]],["parent/1042",[603,3.844]],["name/1043",[158,50.463]],["parent/1043",[603,3.844]],["name/1044",[159,50.463]],["parent/1044",[603,3.844]],["name/1045",[117,16.899]],["parent/1045",[652,7.871]],["name/1046",[161,50.463]],["parent/1046",[603,3.844]],["name/1047",[117,16.899]],["parent/1047",[653,7.871]],["name/1048",[163,44.034]],["parent/1048",[603,3.844]],["name/1049",[117,16.899]],["parent/1049",[654,7.871]],["name/1050",[390,52.17]],["parent/1050",[603,3.844]],["name/1051",[117,16.899]],["parent/1051",[655,7.871]],["name/1052",[165,50.463]],["parent/1052",[603,3.844]],["name/1053",[117,16.899]],["parent/1053",[656,7.871]],["name/1054",[167,50.463]],["parent/1054",[603,3.844]],["name/1055",[168,50.463]],["parent/1055",[603,3.844]],["name/1056",[169,50.463]],["parent/1056",[603,3.844]],["name/1057",[170,50.463]],["parent/1057",[603,3.844]],["name/1058",[171,50.463]],["parent/1058",[603,3.844]],["name/1059",[172,50.463]],["parent/1059",[603,3.844]],["name/1060",[173,50.079]],["parent/1060",[603,3.844]],["name/1061",[174,50.463]],["parent/1061",[603,3.844]],["name/1062",[175,50.463]],["parent/1062",[603,3.844]],["name/1063",[176,50.463]],["parent/1063",[603,3.844]],["name/1064",[177,50.463]],["parent/1064",[603,3.844]],["name/1065",[178,50.463]],["parent/1065",[603,3.844]],["name/1066",[179,50.463]],["parent/1066",[603,3.844]],["name/1067",[180,50.463]],["parent/1067",[603,3.844]],["name/1068",[181,50.463]],["parent/1068",[603,3.844]],["name/1069",[182,50.463]],["parent/1069",[603,3.844]],["name/1070",[184,50.463]],["parent/1070",[603,3.844]],["name/1071",[185,50.463]],["parent/1071",[603,3.844]],["name/1072",[186,51.28]],["parent/1072",[603,3.844]],["name/1073",[187,51.28]],["parent/1073",[603,3.844]],["name/1074",[117,16.899]],["parent/1074",[657,7.871]],["name/1075",[189,51.28]],["parent/1075",[658,5.259]],["name/1076",[191,42.868]],["parent/1076",[658,5.259]],["name/1077",[192,50.079]],["parent/1077",[658,5.259]],["name/1078",[193,44.243]],["parent/1078",[658,5.259]],["name/1079",[194,51.28]],["parent/1079",[658,5.259]],["name/1080",[195,51.28]],["parent/1080",[658,5.259]],["name/1081",[196,51.28]],["parent/1081",[658,5.259]],["name/1082",[197,50.463]],["parent/1082",[658,5.259]],["name/1083",[198,51.28]],["parent/1083",[658,5.259]],["name/1084",[199,50.463]],["parent/1084",[658,5.259]],["name/1085",[200,51.28]],["parent/1085",[658,5.259]],["name/1086",[201,51.28]],["parent/1086",[658,5.259]],["name/1087",[202,51.28]],["parent/1087",[658,5.259]],["name/1088",[203,51.28]],["parent/1088",[658,5.259]],["name/1089",[163,44.034]],["parent/1089",[658,5.259]],["name/1090",[204,51.28]],["parent/1090",[658,5.259]],["name/1091",[205,51.28]],["parent/1091",[658,5.259]],["name/1092",[206,51.28]],["parent/1092",[658,5.259]],["name/1093",[207,48.038]],["parent/1093",[658,5.259]],["name/1094",[208,51.28]],["parent/1094",[658,5.259]],["name/1095",[209,51.28]],["parent/1095",[603,3.844]],["name/1096",[117,16.899]],["parent/1096",[659,7.871]],["name/1097",[193,44.243]],["parent/1097",[660,6.573]],["name/1098",[212,51.28]],["parent/1098",[660,6.573]],["name/1099",[191,42.868]],["parent/1099",[660,6.573]],["name/1100",[213,51.28]],["parent/1100",[660,6.573]],["name/1101",[214,49.006]],["parent/1101",[660,6.573]],["name/1102",[215,50.079]],["parent/1102",[601,5.211]],["name/1103",[216,50.079]],["parent/1103",[601,5.211]],["name/1104",[661,73.687]],["parent/1104",[601,5.211]],["name/1105",[2,50.079]],["parent/1105",[662,4.161]],["name/1106",[663,78.795]],["parent/1106",[662,4.161]],["name/1107",[664,78.795]],["parent/1107",[662,4.161]],["name/1108",[665,78.795]],["parent/1108",[662,4.161]],["name/1109",[666,78.795]],["parent/1109",[662,4.161]],["name/1110",[52,49.351]],["parent/1110",[662,4.161]],["name/1111",[661,73.687]],["parent/1111",[662,4.161]],["name/1112",[93,50.079]],["parent/1112",[662,4.161]],["name/1113",[397,51.28]],["parent/1113",[662,4.161]],["name/1114",[398,51.28]],["parent/1114",[662,4.161]],["name/1115",[117,16.899]],["parent/1115",[667,7.871]],["name/1116",[129,50.079]],["parent/1116",[662,4.161]],["name/1117",[117,16.899]],["parent/1117",[668,7.871]],["name/1118",[401,51.28]],["parent/1118",[662,4.161]],["name/1119",[117,16.899]],["parent/1119",[669,7.871]],["name/1120",[131,50.079]],["parent/1120",[662,4.161]],["name/1121",[117,16.899]],["parent/1121",[670,7.871]],["name/1122",[133,50.079]],["parent/1122",[662,4.161]],["name/1123",[117,16.899]],["parent/1123",[671,7.871]],["name/1124",[135,50.079]],["parent/1124",[662,4.161]],["name/1125",[117,16.899]],["parent/1125",[672,7.871]],["name/1126",[137,50.079]],["parent/1126",[662,4.161]],["name/1127",[117,16.899]],["parent/1127",[673,7.871]],["name/1128",[139,50.079]],["parent/1128",[662,4.161]],["name/1129",[117,16.899]],["parent/1129",[674,7.871]],["name/1130",[141,50.079]],["parent/1130",[662,4.161]],["name/1131",[117,16.899]],["parent/1131",[675,7.871]],["name/1132",[143,50.079]],["parent/1132",[662,4.161]],["name/1133",[117,16.899]],["parent/1133",[676,7.871]],["name/1134",[145,50.079]],["parent/1134",[662,4.161]],["name/1135",[117,16.899]],["parent/1135",[677,7.871]],["name/1136",[147,50.079]],["parent/1136",[662,4.161]],["name/1137",[117,16.899]],["parent/1137",[678,7.871]],["name/1138",[183,50.079]],["parent/1138",[662,4.161]],["name/1139",[117,16.899]],["parent/1139",[679,7.871]],["name/1140",[149,50.079]],["parent/1140",[662,4.161]],["name/1141",[117,16.899]],["parent/1141",[680,7.871]],["name/1142",[413,51.28]],["parent/1142",[662,4.161]],["name/1143",[117,16.899]],["parent/1143",[681,7.871]],["name/1144",[415,51.28]],["parent/1144",[662,4.161]],["name/1145",[117,16.899]],["parent/1145",[682,7.871]],["name/1146",[417,51.28]],["parent/1146",[662,4.161]],["name/1147",[418,51.28]],["parent/1147",[662,4.161]],["name/1148",[151,50.463]],["parent/1148",[662,4.161]],["name/1149",[152,50.463]],["parent/1149",[662,4.161]],["name/1150",[153,50.463]],["parent/1150",[662,4.161]],["name/1151",[154,51.28]],["parent/1151",[662,4.161]],["name/1152",[155,51.28]],["parent/1152",[662,4.161]],["name/1153",[156,50.463]],["parent/1153",[662,4.161]],["name/1154",[157,50.463]],["parent/1154",[662,4.161]],["name/1155",[158,50.463]],["parent/1155",[662,4.161]],["name/1156",[159,50.463]],["parent/1156",[662,4.161]],["name/1157",[117,16.899]],["parent/1157",[683,7.871]],["name/1158",[161,50.463]],["parent/1158",[662,4.161]],["name/1159",[117,16.899]],["parent/1159",[684,7.871]],["name/1160",[163,44.034]],["parent/1160",[662,4.161]],["name/1161",[117,16.899]],["parent/1161",[685,7.871]],["name/1162",[390,52.17]],["parent/1162",[662,4.161]],["name/1163",[117,16.899]],["parent/1163",[686,7.871]],["name/1164",[165,50.463]],["parent/1164",[662,4.161]],["name/1165",[117,16.899]],["parent/1165",[687,7.871]],["name/1166",[167,50.463]],["parent/1166",[662,4.161]],["name/1167",[168,50.463]],["parent/1167",[662,4.161]],["name/1168",[169,50.463]],["parent/1168",[662,4.161]],["name/1169",[170,50.463]],["parent/1169",[662,4.161]],["name/1170",[171,50.463]],["parent/1170",[662,4.161]],["name/1171",[172,50.463]],["parent/1171",[662,4.161]],["name/1172",[173,50.079]],["parent/1172",[662,4.161]],["name/1173",[174,50.463]],["parent/1173",[662,4.161]],["name/1174",[175,50.463]],["parent/1174",[662,4.161]],["name/1175",[176,50.463]],["parent/1175",[662,4.161]],["name/1176",[177,50.463]],["parent/1176",[662,4.161]],["name/1177",[178,50.463]],["parent/1177",[662,4.161]],["name/1178",[179,50.463]],["parent/1178",[662,4.161]],["name/1179",[180,50.463]],["parent/1179",[662,4.161]],["name/1180",[181,50.463]],["parent/1180",[662,4.161]],["name/1181",[182,50.463]],["parent/1181",[662,4.161]],["name/1182",[184,50.463]],["parent/1182",[662,4.161]],["name/1183",[185,50.463]],["parent/1183",[662,4.161]],["name/1184",[186,51.28]],["parent/1184",[662,4.161]],["name/1185",[187,51.28]],["parent/1185",[662,4.161]],["name/1186",[117,16.899]],["parent/1186",[688,7.871]],["name/1187",[189,51.28]],["parent/1187",[689,5.259]],["name/1188",[191,42.868]],["parent/1188",[689,5.259]],["name/1189",[192,50.079]],["parent/1189",[689,5.259]],["name/1190",[193,44.243]],["parent/1190",[689,5.259]],["name/1191",[194,51.28]],["parent/1191",[689,5.259]],["name/1192",[195,51.28]],["parent/1192",[689,5.259]],["name/1193",[196,51.28]],["parent/1193",[689,5.259]],["name/1194",[197,50.463]],["parent/1194",[689,5.259]],["name/1195",[198,51.28]],["parent/1195",[689,5.259]],["name/1196",[199,50.463]],["parent/1196",[689,5.259]],["name/1197",[200,51.28]],["parent/1197",[689,5.259]],["name/1198",[201,51.28]],["parent/1198",[689,5.259]],["name/1199",[202,51.28]],["parent/1199",[689,5.259]],["name/1200",[203,51.28]],["parent/1200",[689,5.259]],["name/1201",[163,44.034]],["parent/1201",[689,5.259]],["name/1202",[204,51.28]],["parent/1202",[689,5.259]],["name/1203",[205,51.28]],["parent/1203",[689,5.259]],["name/1204",[206,51.28]],["parent/1204",[689,5.259]],["name/1205",[207,48.038]],["parent/1205",[689,5.259]],["name/1206",[208,51.28]],["parent/1206",[689,5.259]],["name/1207",[209,51.28]],["parent/1207",[662,4.161]],["name/1208",[117,16.899]],["parent/1208",[690,7.871]],["name/1209",[193,44.243]],["parent/1209",[691,6.573]],["name/1210",[212,51.28]],["parent/1210",[691,6.573]],["name/1211",[191,42.868]],["parent/1211",[691,6.573]],["name/1212",[213,51.28]],["parent/1212",[691,6.573]],["name/1213",[214,49.006]],["parent/1213",[691,6.573]],["name/1214",[215,50.079]],["parent/1214",[601,5.211]],["name/1215",[216,50.079]],["parent/1215",[601,5.211]],["name/1216",[692,78.795]],["parent/1216",[601,5.211]],["name/1217",[2,50.079]],["parent/1217",[693,3.191]],["name/1218",[694,78.795]],["parent/1218",[693,3.191]],["name/1219",[695,73.687]],["parent/1219",[693,3.191]],["name/1220",[696,78.795]],["parent/1220",[693,3.191]],["name/1221",[697,78.795]],["parent/1221",[693,3.191]],["name/1222",[698,78.795]],["parent/1222",[693,3.191]],["name/1223",[699,78.795]],["parent/1223",[693,3.191]],["name/1224",[700,78.795]],["parent/1224",[693,3.191]],["name/1225",[701,78.795]],["parent/1225",[693,3.191]],["name/1226",[702,78.795]],["parent/1226",[693,3.191]],["name/1227",[703,78.795]],["parent/1227",[693,3.191]],["name/1228",[704,78.795]],["parent/1228",[693,3.191]],["name/1229",[705,78.795]],["parent/1229",[693,3.191]],["name/1230",[706,78.795]],["parent/1230",[693,3.191]],["name/1231",[707,78.795]],["parent/1231",[693,3.191]],["name/1232",[708,78.795]],["parent/1232",[693,3.191]],["name/1233",[709,78.795]],["parent/1233",[693,3.191]],["name/1234",[710,78.795]],["parent/1234",[693,3.191]],["name/1235",[711,78.795]],["parent/1235",[693,3.191]],["name/1236",[712,78.795]],["parent/1236",[693,3.191]],["name/1237",[713,78.795]],["parent/1237",[693,3.191]],["name/1238",[714,78.795]],["parent/1238",[693,3.191]],["name/1239",[715,78.795]],["parent/1239",[693,3.191]],["name/1240",[716,78.795]],["parent/1240",[693,3.191]],["name/1241",[717,78.795]],["parent/1241",[693,3.191]],["name/1242",[718,78.795]],["parent/1242",[693,3.191]],["name/1243",[719,78.795]],["parent/1243",[693,3.191]],["name/1244",[720,78.795]],["parent/1244",[693,3.191]],["name/1245",[721,78.795]],["parent/1245",[693,3.191]],["name/1246",[722,78.795]],["parent/1246",[693,3.191]],["name/1247",[52,49.351]],["parent/1247",[693,3.191]],["name/1248",[616,73.687]],["parent/1248",[693,3.191]],["name/1249",[723,78.795]],["parent/1249",[693,3.191]],["name/1250",[724,78.795]],["parent/1250",[693,3.191]],["name/1251",[725,73.687]],["parent/1251",[693,3.191]],["name/1252",[726,67.809]],["parent/1252",[693,3.191]],["name/1253",[471,70.322]],["parent/1253",[693,3.191]],["name/1254",[727,78.795]],["parent/1254",[693,3.191]],["name/1255",[728,78.795]],["parent/1255",[693,3.191]],["name/1256",[729,78.795]],["parent/1256",[693,3.191]],["name/1257",[730,78.795]],["parent/1257",[693,3.191]],["name/1258",[271,67.809]],["parent/1258",[693,3.191]],["name/1259",[285,67.809]],["parent/1259",[693,3.191]],["name/1260",[286,67.809]],["parent/1260",[693,3.191]],["name/1261",[731,78.795]],["parent/1261",[693,3.191]],["name/1262",[296,67.809]],["parent/1262",[693,3.191]],["name/1263",[486,70.322]],["parent/1263",[693,3.191]],["name/1264",[732,64.132]],["parent/1264",[693,3.191]],["name/1265",[733,78.795]],["parent/1265",[693,3.191]],["name/1266",[310,67.809]],["parent/1266",[693,3.191]],["name/1267",[734,78.795]],["parent/1267",[693,3.191]],["name/1268",[735,78.795]],["parent/1268",[693,3.191]],["name/1269",[736,78.795]],["parent/1269",[693,3.191]],["name/1270",[737,73.687]],["parent/1270",[693,3.191]],["name/1271",[491,70.322]],["parent/1271",[693,3.191]],["name/1272",[738,64.132]],["parent/1272",[693,3.191]],["name/1273",[739,78.795]],["parent/1273",[693,3.191]],["name/1274",[740,73.687]],["parent/1274",[693,3.191]],["name/1275",[741,65.803]],["parent/1275",[693,3.191]],["name/1276",[311,67.809]],["parent/1276",[693,3.191]],["name/1277",[742,78.795]],["parent/1277",[693,3.191]],["name/1278",[313,67.809]],["parent/1278",[693,3.191]],["name/1279",[314,67.809]],["parent/1279",[693,3.191]],["name/1280",[743,65.803]],["parent/1280",[693,3.191]],["name/1281",[493,70.322]],["parent/1281",[693,3.191]],["name/1282",[744,78.795]],["parent/1282",[693,3.191]],["name/1283",[322,67.809]],["parent/1283",[693,3.191]],["name/1284",[745,78.795]],["parent/1284",[693,3.191]],["name/1285",[496,65.803]],["parent/1285",[693,3.191]],["name/1286",[746,73.687]],["parent/1286",[693,3.191]],["name/1287",[326,67.809]],["parent/1287",[693,3.191]],["name/1288",[363,67.809]],["parent/1288",[693,3.191]],["name/1289",[747,78.795]],["parent/1289",[693,3.191]],["name/1290",[748,78.795]],["parent/1290",[693,3.191]],["name/1291",[749,78.795]],["parent/1291",[693,3.191]],["name/1292",[750,73.687]],["parent/1292",[693,3.191]],["name/1293",[751,78.795]],["parent/1293",[693,3.191]],["name/1294",[503,70.322]],["parent/1294",[693,3.191]],["name/1295",[752,78.795]],["parent/1295",[693,3.191]],["name/1296",[753,65.803]],["parent/1296",[693,3.191]],["name/1297",[754,78.795]],["parent/1297",[693,3.191]],["name/1298",[601,52.17]],["parent/1298",[693,3.191]],["name/1299",[755,78.795]],["parent/1299",[693,3.191]],["name/1300",[756,73.687]],["parent/1300",[693,3.191]],["name/1301",[757,78.795]],["parent/1301",[693,3.191]],["name/1302",[758,78.795]],["parent/1302",[693,3.191]],["name/1303",[367,67.809]],["parent/1303",[693,3.191]],["name/1304",[759,78.795]],["parent/1304",[693,3.191]],["name/1305",[760,78.795]],["parent/1305",[693,3.191]],["name/1306",[761,78.795]],["parent/1306",[693,3.191]],["name/1307",[509,70.322]],["parent/1307",[693,3.191]],["name/1308",[510,70.322]],["parent/1308",[693,3.191]],["name/1309",[117,16.899]],["parent/1309",[762,7.871]],["name/1310",[512,70.322]],["parent/1310",[763,7.36]],["name/1311",[514,70.322]],["parent/1311",[763,7.36]],["name/1312",[764,78.795]],["parent/1312",[693,3.191]],["name/1313",[369,67.809]],["parent/1313",[693,3.191]],["name/1314",[383,55.442]],["parent/1314",[693,3.191]],["name/1315",[765,67.809]],["parent/1315",[693,3.191]],["name/1316",[766,64.132]],["parent/1316",[693,3.191]],["name/1317",[767,70.322]],["parent/1317",[693,3.191]],["name/1318",[768,73.687]],["parent/1318",[693,3.191]],["name/1319",[269,56.823]],["parent/1319",[693,3.191]],["name/1320",[769,78.795]],["parent/1320",[693,3.191]],["name/1321",[379,67.809]],["parent/1321",[693,3.191]],["name/1322",[93,50.079]],["parent/1322",[693,3.191]],["name/1323",[397,51.28]],["parent/1323",[693,3.191]],["name/1324",[398,51.28]],["parent/1324",[693,3.191]],["name/1325",[117,16.899]],["parent/1325",[770,7.871]],["name/1326",[129,50.079]],["parent/1326",[693,3.191]],["name/1327",[117,16.899]],["parent/1327",[771,7.871]],["name/1328",[401,51.28]],["parent/1328",[693,3.191]],["name/1329",[117,16.899]],["parent/1329",[772,7.871]],["name/1330",[131,50.079]],["parent/1330",[693,3.191]],["name/1331",[117,16.899]],["parent/1331",[773,7.871]],["name/1332",[133,50.079]],["parent/1332",[693,3.191]],["name/1333",[117,16.899]],["parent/1333",[774,7.871]],["name/1334",[135,50.079]],["parent/1334",[693,3.191]],["name/1335",[117,16.899]],["parent/1335",[775,7.871]],["name/1336",[137,50.079]],["parent/1336",[693,3.191]],["name/1337",[117,16.899]],["parent/1337",[776,7.871]],["name/1338",[139,50.079]],["parent/1338",[693,3.191]],["name/1339",[117,16.899]],["parent/1339",[777,7.871]],["name/1340",[141,50.079]],["parent/1340",[693,3.191]],["name/1341",[117,16.899]],["parent/1341",[778,7.871]],["name/1342",[143,50.079]],["parent/1342",[693,3.191]],["name/1343",[117,16.899]],["parent/1343",[779,7.871]],["name/1344",[145,50.079]],["parent/1344",[693,3.191]],["name/1345",[117,16.899]],["parent/1345",[780,7.871]],["name/1346",[147,50.079]],["parent/1346",[693,3.191]],["name/1347",[117,16.899]],["parent/1347",[781,7.871]],["name/1348",[183,50.079]],["parent/1348",[693,3.191]],["name/1349",[117,16.899]],["parent/1349",[782,7.871]],["name/1350",[149,50.079]],["parent/1350",[693,3.191]],["name/1351",[117,16.899]],["parent/1351",[783,7.871]],["name/1352",[413,51.28]],["parent/1352",[693,3.191]],["name/1353",[117,16.899]],["parent/1353",[784,7.871]],["name/1354",[415,51.28]],["parent/1354",[693,3.191]],["name/1355",[117,16.899]],["parent/1355",[785,7.871]],["name/1356",[417,51.28]],["parent/1356",[693,3.191]],["name/1357",[418,51.28]],["parent/1357",[693,3.191]],["name/1358",[786,78.795]],["parent/1358",[693,3.191]],["name/1359",[117,16.899]],["parent/1359",[787,7.871]],["name/1360",[625,62.701]],["parent/1360",[693,3.191]],["name/1361",[117,16.899]],["parent/1361",[788,7.871]],["name/1362",[241,57.593]],["parent/1362",[693,3.191]],["name/1363",[117,16.899]],["parent/1363",[789,7.871]],["name/1364",[790,78.795]],["parent/1364",[693,3.191]],["name/1365",[117,16.899]],["parent/1365",[791,7.871]],["name/1366",[634,61.449]],["parent/1366",[693,3.191]],["name/1367",[117,16.899]],["parent/1367",[792,7.871]],["name/1368",[793,78.795]],["parent/1368",[693,3.191]],["name/1369",[117,16.899]],["parent/1369",[794,7.871]],["name/1370",[151,50.463]],["parent/1370",[693,3.191]],["name/1371",[152,50.463]],["parent/1371",[693,3.191]],["name/1372",[153,50.463]],["parent/1372",[693,3.191]],["name/1373",[154,51.28]],["parent/1373",[693,3.191]],["name/1374",[155,51.28]],["parent/1374",[693,3.191]],["name/1375",[156,50.463]],["parent/1375",[693,3.191]],["name/1376",[157,50.463]],["parent/1376",[693,3.191]],["name/1377",[158,50.463]],["parent/1377",[693,3.191]],["name/1378",[159,50.463]],["parent/1378",[693,3.191]],["name/1379",[117,16.899]],["parent/1379",[795,7.871]],["name/1380",[161,50.463]],["parent/1380",[693,3.191]],["name/1381",[117,16.899]],["parent/1381",[796,7.871]],["name/1382",[163,44.034]],["parent/1382",[693,3.191]],["name/1383",[117,16.899]],["parent/1383",[797,7.871]],["name/1384",[390,52.17]],["parent/1384",[693,3.191]],["name/1385",[117,16.899]],["parent/1385",[798,7.871]],["name/1386",[165,50.463]],["parent/1386",[693,3.191]],["name/1387",[117,16.899]],["parent/1387",[799,7.871]],["name/1388",[167,50.463]],["parent/1388",[693,3.191]],["name/1389",[168,50.463]],["parent/1389",[693,3.191]],["name/1390",[169,50.463]],["parent/1390",[693,3.191]],["name/1391",[170,50.463]],["parent/1391",[693,3.191]],["name/1392",[171,50.463]],["parent/1392",[693,3.191]],["name/1393",[172,50.463]],["parent/1393",[693,3.191]],["name/1394",[173,50.079]],["parent/1394",[693,3.191]],["name/1395",[174,50.463]],["parent/1395",[693,3.191]],["name/1396",[175,50.463]],["parent/1396",[693,3.191]],["name/1397",[176,50.463]],["parent/1397",[693,3.191]],["name/1398",[177,50.463]],["parent/1398",[693,3.191]],["name/1399",[178,50.463]],["parent/1399",[693,3.191]],["name/1400",[179,50.463]],["parent/1400",[693,3.191]],["name/1401",[180,50.463]],["parent/1401",[693,3.191]],["name/1402",[181,50.463]],["parent/1402",[693,3.191]],["name/1403",[182,50.463]],["parent/1403",[693,3.191]],["name/1404",[184,50.463]],["parent/1404",[693,3.191]],["name/1405",[185,50.463]],["parent/1405",[693,3.191]],["name/1406",[186,51.28]],["parent/1406",[693,3.191]],["name/1407",[187,51.28]],["parent/1407",[693,3.191]],["name/1408",[117,16.899]],["parent/1408",[800,7.871]],["name/1409",[189,51.28]],["parent/1409",[801,5.259]],["name/1410",[191,42.868]],["parent/1410",[801,5.259]],["name/1411",[192,50.079]],["parent/1411",[801,5.259]],["name/1412",[193,44.243]],["parent/1412",[801,5.259]],["name/1413",[194,51.28]],["parent/1413",[801,5.259]],["name/1414",[195,51.28]],["parent/1414",[801,5.259]],["name/1415",[196,51.28]],["parent/1415",[801,5.259]],["name/1416",[197,50.463]],["parent/1416",[801,5.259]],["name/1417",[198,51.28]],["parent/1417",[801,5.259]],["name/1418",[199,50.463]],["parent/1418",[801,5.259]],["name/1419",[200,51.28]],["parent/1419",[801,5.259]],["name/1420",[201,51.28]],["parent/1420",[801,5.259]],["name/1421",[202,51.28]],["parent/1421",[801,5.259]],["name/1422",[203,51.28]],["parent/1422",[801,5.259]],["name/1423",[163,44.034]],["parent/1423",[801,5.259]],["name/1424",[204,51.28]],["parent/1424",[801,5.259]],["name/1425",[205,51.28]],["parent/1425",[801,5.259]],["name/1426",[206,51.28]],["parent/1426",[801,5.259]],["name/1427",[207,48.038]],["parent/1427",[801,5.259]],["name/1428",[208,51.28]],["parent/1428",[801,5.259]],["name/1429",[209,51.28]],["parent/1429",[693,3.191]],["name/1430",[117,16.899]],["parent/1430",[802,7.871]],["name/1431",[193,44.243]],["parent/1431",[803,6.573]],["name/1432",[212,51.28]],["parent/1432",[803,6.573]],["name/1433",[191,42.868]],["parent/1433",[803,6.573]],["name/1434",[213,51.28]],["parent/1434",[803,6.573]],["name/1435",[214,49.006]],["parent/1435",[803,6.573]],["name/1436",[215,50.079]],["parent/1436",[601,5.211]],["name/1437",[216,50.079]],["parent/1437",[601,5.211]],["name/1438",[804,78.795]],["parent/1438",[601,5.211]],["name/1439",[2,50.079]],["parent/1439",[805,3.821]],["name/1440",[806,73.687]],["parent/1440",[805,3.821]],["name/1441",[807,78.795]],["parent/1441",[805,3.821]],["name/1442",[808,73.687]],["parent/1442",[805,3.821]],["name/1443",[809,73.687]],["parent/1443",[805,3.821]],["name/1444",[810,73.687]],["parent/1444",[805,3.821]],["name/1445",[811,78.795]],["parent/1445",[805,3.821]],["name/1446",[812,78.795]],["parent/1446",[805,3.821]],["name/1447",[813,78.795]],["parent/1447",[805,3.821]],["name/1448",[814,78.795]],["parent/1448",[805,3.821]],["name/1449",[815,78.795]],["parent/1449",[805,3.821]],["name/1450",[695,73.687]],["parent/1450",[805,3.821]],["name/1451",[816,78.795]],["parent/1451",[805,3.821]],["name/1452",[817,78.795]],["parent/1452",[805,3.821]],["name/1453",[818,78.795]],["parent/1453",[805,3.821]],["name/1454",[819,78.795]],["parent/1454",[805,3.821]],["name/1455",[820,78.795]],["parent/1455",[805,3.821]],["name/1456",[821,78.795]],["parent/1456",[805,3.821]],["name/1457",[52,49.351]],["parent/1457",[805,3.821]],["name/1458",[822,73.687]],["parent/1458",[805,3.821]],["name/1459",[823,78.795]],["parent/1459",[805,3.821]],["name/1460",[824,78.795]],["parent/1460",[805,3.821]],["name/1461",[825,78.795]],["parent/1461",[805,3.821]],["name/1462",[826,78.795]],["parent/1462",[805,3.821]],["name/1463",[827,78.795]],["parent/1463",[805,3.821]],["name/1464",[828,78.795]],["parent/1464",[805,3.821]],["name/1465",[829,78.795]],["parent/1465",[805,3.821]],["name/1466",[830,78.795]],["parent/1466",[805,3.821]],["name/1467",[831,73.687]],["parent/1467",[805,3.821]],["name/1468",[832,73.687]],["parent/1468",[805,3.821]],["name/1469",[833,78.795]],["parent/1469",[805,3.821]],["name/1470",[834,78.795]],["parent/1470",[805,3.821]],["name/1471",[835,78.795]],["parent/1471",[805,3.821]],["name/1472",[117,16.899]],["parent/1472",[836,7.871]],["name/1473",[93,50.079]],["parent/1473",[805,3.821]],["name/1474",[397,51.28]],["parent/1474",[805,3.821]],["name/1475",[398,51.28]],["parent/1475",[805,3.821]],["name/1476",[117,16.899]],["parent/1476",[837,7.871]],["name/1477",[129,50.079]],["parent/1477",[805,3.821]],["name/1478",[117,16.899]],["parent/1478",[838,7.871]],["name/1479",[401,51.28]],["parent/1479",[805,3.821]],["name/1480",[117,16.899]],["parent/1480",[839,7.871]],["name/1481",[131,50.079]],["parent/1481",[805,3.821]],["name/1482",[117,16.899]],["parent/1482",[840,7.871]],["name/1483",[133,50.079]],["parent/1483",[805,3.821]],["name/1484",[117,16.899]],["parent/1484",[841,7.871]],["name/1485",[135,50.079]],["parent/1485",[805,3.821]],["name/1486",[117,16.899]],["parent/1486",[842,7.871]],["name/1487",[137,50.079]],["parent/1487",[805,3.821]],["name/1488",[117,16.899]],["parent/1488",[843,7.871]],["name/1489",[139,50.079]],["parent/1489",[805,3.821]],["name/1490",[117,16.899]],["parent/1490",[844,7.871]],["name/1491",[141,50.079]],["parent/1491",[805,3.821]],["name/1492",[117,16.899]],["parent/1492",[845,7.871]],["name/1493",[143,50.079]],["parent/1493",[805,3.821]],["name/1494",[117,16.899]],["parent/1494",[846,7.871]],["name/1495",[145,50.079]],["parent/1495",[805,3.821]],["name/1496",[117,16.899]],["parent/1496",[847,7.871]],["name/1497",[147,50.079]],["parent/1497",[805,3.821]],["name/1498",[117,16.899]],["parent/1498",[848,7.871]],["name/1499",[183,50.079]],["parent/1499",[805,3.821]],["name/1500",[117,16.899]],["parent/1500",[849,7.871]],["name/1501",[149,50.079]],["parent/1501",[805,3.821]],["name/1502",[117,16.899]],["parent/1502",[850,7.871]],["name/1503",[413,51.28]],["parent/1503",[805,3.821]],["name/1504",[117,16.899]],["parent/1504",[851,7.871]],["name/1505",[415,51.28]],["parent/1505",[805,3.821]],["name/1506",[117,16.899]],["parent/1506",[852,7.871]],["name/1507",[417,51.28]],["parent/1507",[805,3.821]],["name/1508",[418,51.28]],["parent/1508",[805,3.821]],["name/1509",[151,50.463]],["parent/1509",[805,3.821]],["name/1510",[152,50.463]],["parent/1510",[805,3.821]],["name/1511",[153,50.463]],["parent/1511",[805,3.821]],["name/1512",[154,51.28]],["parent/1512",[805,3.821]],["name/1513",[155,51.28]],["parent/1513",[805,3.821]],["name/1514",[156,50.463]],["parent/1514",[805,3.821]],["name/1515",[157,50.463]],["parent/1515",[805,3.821]],["name/1516",[158,50.463]],["parent/1516",[805,3.821]],["name/1517",[159,50.463]],["parent/1517",[805,3.821]],["name/1518",[117,16.899]],["parent/1518",[853,7.871]],["name/1519",[161,50.463]],["parent/1519",[805,3.821]],["name/1520",[117,16.899]],["parent/1520",[854,7.871]],["name/1521",[163,44.034]],["parent/1521",[805,3.821]],["name/1522",[117,16.899]],["parent/1522",[855,7.871]],["name/1523",[165,50.463]],["parent/1523",[805,3.821]],["name/1524",[117,16.899]],["parent/1524",[856,7.871]],["name/1525",[167,50.463]],["parent/1525",[805,3.821]],["name/1526",[168,50.463]],["parent/1526",[805,3.821]],["name/1527",[169,50.463]],["parent/1527",[805,3.821]],["name/1528",[170,50.463]],["parent/1528",[805,3.821]],["name/1529",[171,50.463]],["parent/1529",[805,3.821]],["name/1530",[172,50.463]],["parent/1530",[805,3.821]],["name/1531",[173,50.079]],["parent/1531",[805,3.821]],["name/1532",[174,50.463]],["parent/1532",[805,3.821]],["name/1533",[175,50.463]],["parent/1533",[805,3.821]],["name/1534",[176,50.463]],["parent/1534",[805,3.821]],["name/1535",[177,50.463]],["parent/1535",[805,3.821]],["name/1536",[178,50.463]],["parent/1536",[805,3.821]],["name/1537",[179,50.463]],["parent/1537",[805,3.821]],["name/1538",[180,50.463]],["parent/1538",[805,3.821]],["name/1539",[181,50.463]],["parent/1539",[805,3.821]],["name/1540",[182,50.463]],["parent/1540",[805,3.821]],["name/1541",[184,50.463]],["parent/1541",[805,3.821]],["name/1542",[185,50.463]],["parent/1542",[805,3.821]],["name/1543",[186,51.28]],["parent/1543",[805,3.821]],["name/1544",[187,51.28]],["parent/1544",[805,3.821]],["name/1545",[117,16.899]],["parent/1545",[857,7.871]],["name/1546",[189,51.28]],["parent/1546",[858,5.259]],["name/1547",[191,42.868]],["parent/1547",[858,5.259]],["name/1548",[192,50.079]],["parent/1548",[858,5.259]],["name/1549",[193,44.243]],["parent/1549",[858,5.259]],["name/1550",[194,51.28]],["parent/1550",[858,5.259]],["name/1551",[195,51.28]],["parent/1551",[858,5.259]],["name/1552",[196,51.28]],["parent/1552",[858,5.259]],["name/1553",[197,50.463]],["parent/1553",[858,5.259]],["name/1554",[198,51.28]],["parent/1554",[858,5.259]],["name/1555",[199,50.463]],["parent/1555",[858,5.259]],["name/1556",[200,51.28]],["parent/1556",[858,5.259]],["name/1557",[201,51.28]],["parent/1557",[858,5.259]],["name/1558",[202,51.28]],["parent/1558",[858,5.259]],["name/1559",[203,51.28]],["parent/1559",[858,5.259]],["name/1560",[163,44.034]],["parent/1560",[858,5.259]],["name/1561",[204,51.28]],["parent/1561",[858,5.259]],["name/1562",[205,51.28]],["parent/1562",[858,5.259]],["name/1563",[206,51.28]],["parent/1563",[858,5.259]],["name/1564",[207,48.038]],["parent/1564",[858,5.259]],["name/1565",[208,51.28]],["parent/1565",[858,5.259]],["name/1566",[209,51.28]],["parent/1566",[805,3.821]],["name/1567",[117,16.899]],["parent/1567",[859,7.871]],["name/1568",[193,44.243]],["parent/1568",[860,6.573]],["name/1569",[212,51.28]],["parent/1569",[860,6.573]],["name/1570",[191,42.868]],["parent/1570",[860,6.573]],["name/1571",[213,51.28]],["parent/1571",[860,6.573]],["name/1572",[214,49.006]],["parent/1572",[860,6.573]],["name/1573",[215,50.079]],["parent/1573",[601,5.211]],["name/1574",[216,50.079]],["parent/1574",[601,5.211]],["name/1575",[861,78.795]],["parent/1575",[601,5.211]],["name/1576",[2,50.079]],["parent/1576",[862,4.145]],["name/1577",[863,78.795]],["parent/1577",[862,4.145]],["name/1578",[52,49.351]],["parent/1578",[862,4.145]],["name/1579",[458,65.803]],["parent/1579",[862,4.145]],["name/1580",[117,16.899]],["parent/1580",[864,7.871]],["name/1581",[151,50.463]],["parent/1581",[862,4.145]],["name/1582",[152,50.463]],["parent/1582",[862,4.145]],["name/1583",[153,50.463]],["parent/1583",[862,4.145]],["name/1584",[154,51.28]],["parent/1584",[862,4.145]],["name/1585",[155,51.28]],["parent/1585",[862,4.145]],["name/1586",[156,50.463]],["parent/1586",[862,4.145]],["name/1587",[157,50.463]],["parent/1587",[862,4.145]],["name/1588",[158,50.463]],["parent/1588",[862,4.145]],["name/1589",[159,50.463]],["parent/1589",[862,4.145]],["name/1590",[117,16.899]],["parent/1590",[865,7.871]],["name/1591",[161,50.463]],["parent/1591",[862,4.145]],["name/1592",[117,16.899]],["parent/1592",[866,7.871]],["name/1593",[163,44.034]],["parent/1593",[862,4.145]],["name/1594",[117,16.899]],["parent/1594",[867,7.871]],["name/1595",[390,52.17]],["parent/1595",[862,4.145]],["name/1596",[117,16.899]],["parent/1596",[868,7.871]],["name/1597",[165,50.463]],["parent/1597",[862,4.145]],["name/1598",[117,16.899]],["parent/1598",[869,7.871]],["name/1599",[167,50.463]],["parent/1599",[862,4.145]],["name/1600",[168,50.463]],["parent/1600",[862,4.145]],["name/1601",[169,50.463]],["parent/1601",[862,4.145]],["name/1602",[170,50.463]],["parent/1602",[862,4.145]],["name/1603",[171,50.463]],["parent/1603",[862,4.145]],["name/1604",[172,50.463]],["parent/1604",[862,4.145]],["name/1605",[173,50.079]],["parent/1605",[862,4.145]],["name/1606",[174,50.463]],["parent/1606",[862,4.145]],["name/1607",[175,50.463]],["parent/1607",[862,4.145]],["name/1608",[176,50.463]],["parent/1608",[862,4.145]],["name/1609",[177,50.463]],["parent/1609",[862,4.145]],["name/1610",[178,50.463]],["parent/1610",[862,4.145]],["name/1611",[179,50.463]],["parent/1611",[862,4.145]],["name/1612",[180,50.463]],["parent/1612",[862,4.145]],["name/1613",[181,50.463]],["parent/1613",[862,4.145]],["name/1614",[182,50.463]],["parent/1614",[862,4.145]],["name/1615",[183,50.079]],["parent/1615",[862,4.145]],["name/1616",[184,50.463]],["parent/1616",[862,4.145]],["name/1617",[185,50.463]],["parent/1617",[862,4.145]],["name/1618",[186,51.28]],["parent/1618",[862,4.145]],["name/1619",[187,51.28]],["parent/1619",[862,4.145]],["name/1620",[117,16.899]],["parent/1620",[870,7.871]],["name/1621",[189,51.28]],["parent/1621",[871,5.259]],["name/1622",[191,42.868]],["parent/1622",[871,5.259]],["name/1623",[192,50.079]],["parent/1623",[871,5.259]],["name/1624",[193,44.243]],["parent/1624",[871,5.259]],["name/1625",[194,51.28]],["parent/1625",[871,5.259]],["name/1626",[195,51.28]],["parent/1626",[871,5.259]],["name/1627",[196,51.28]],["parent/1627",[871,5.259]],["name/1628",[197,50.463]],["parent/1628",[871,5.259]],["name/1629",[198,51.28]],["parent/1629",[871,5.259]],["name/1630",[199,50.463]],["parent/1630",[871,5.259]],["name/1631",[200,51.28]],["parent/1631",[871,5.259]],["name/1632",[201,51.28]],["parent/1632",[871,5.259]],["name/1633",[202,51.28]],["parent/1633",[871,5.259]],["name/1634",[203,51.28]],["parent/1634",[871,5.259]],["name/1635",[163,44.034]],["parent/1635",[871,5.259]],["name/1636",[204,51.28]],["parent/1636",[871,5.259]],["name/1637",[205,51.28]],["parent/1637",[871,5.259]],["name/1638",[206,51.28]],["parent/1638",[871,5.259]],["name/1639",[207,48.038]],["parent/1639",[871,5.259]],["name/1640",[208,51.28]],["parent/1640",[871,5.259]],["name/1641",[209,51.28]],["parent/1641",[862,4.145]],["name/1642",[117,16.899]],["parent/1642",[872,7.871]],["name/1643",[193,44.243]],["parent/1643",[873,6.573]],["name/1644",[212,51.28]],["parent/1644",[873,6.573]],["name/1645",[191,42.868]],["parent/1645",[873,6.573]],["name/1646",[213,51.28]],["parent/1646",[873,6.573]],["name/1647",[214,49.006]],["parent/1647",[873,6.573]],["name/1648",[874,78.795]],["parent/1648",[862,4.145]],["name/1649",[241,57.593]],["parent/1649",[862,4.145]],["name/1650",[117,16.899]],["parent/1650",[875,7.871]],["name/1651",[634,61.449]],["parent/1651",[862,4.145]],["name/1652",[117,16.899]],["parent/1652",[876,7.871]],["name/1653",[625,62.701]],["parent/1653",[862,4.145]],["name/1654",[117,16.899]],["parent/1654",[877,7.871]],["name/1655",[93,50.079]],["parent/1655",[862,4.145]],["name/1656",[397,51.28]],["parent/1656",[862,4.145]],["name/1657",[398,51.28]],["parent/1657",[862,4.145]],["name/1658",[117,16.899]],["parent/1658",[878,7.871]],["name/1659",[129,50.079]],["parent/1659",[862,4.145]],["name/1660",[117,16.899]],["parent/1660",[879,7.871]],["name/1661",[401,51.28]],["parent/1661",[862,4.145]],["name/1662",[117,16.899]],["parent/1662",[880,7.871]],["name/1663",[131,50.079]],["parent/1663",[862,4.145]],["name/1664",[117,16.899]],["parent/1664",[881,7.871]],["name/1665",[133,50.079]],["parent/1665",[862,4.145]],["name/1666",[117,16.899]],["parent/1666",[882,7.871]],["name/1667",[135,50.079]],["parent/1667",[862,4.145]],["name/1668",[117,16.899]],["parent/1668",[883,7.871]],["name/1669",[137,50.079]],["parent/1669",[862,4.145]],["name/1670",[117,16.899]],["parent/1670",[884,7.871]],["name/1671",[139,50.079]],["parent/1671",[862,4.145]],["name/1672",[117,16.899]],["parent/1672",[885,7.871]],["name/1673",[141,50.079]],["parent/1673",[862,4.145]],["name/1674",[117,16.899]],["parent/1674",[886,7.871]],["name/1675",[143,50.079]],["parent/1675",[862,4.145]],["name/1676",[117,16.899]],["parent/1676",[887,7.871]],["name/1677",[145,50.079]],["parent/1677",[862,4.145]],["name/1678",[117,16.899]],["parent/1678",[888,7.871]],["name/1679",[147,50.079]],["parent/1679",[862,4.145]],["name/1680",[117,16.899]],["parent/1680",[889,7.871]],["name/1681",[149,50.079]],["parent/1681",[862,4.145]],["name/1682",[117,16.899]],["parent/1682",[890,7.871]],["name/1683",[413,51.28]],["parent/1683",[862,4.145]],["name/1684",[117,16.899]],["parent/1684",[891,7.871]],["name/1685",[415,51.28]],["parent/1685",[862,4.145]],["name/1686",[117,16.899]],["parent/1686",[892,7.871]],["name/1687",[417,51.28]],["parent/1687",[862,4.145]],["name/1688",[418,51.28]],["parent/1688",[862,4.145]],["name/1689",[215,50.079]],["parent/1689",[601,5.211]],["name/1690",[216,50.079]],["parent/1690",[601,5.211]],["name/1691",[893,78.795]],["parent/1691",[601,5.211]],["name/1692",[2,50.079]],["parent/1692",[894,4.441]],["name/1693",[895,78.795]],["parent/1693",[894,4.441]],["name/1694",[896,78.795]],["parent/1694",[894,4.441]],["name/1695",[897,78.795]],["parent/1695",[894,4.441]],["name/1696",[898,78.795]],["parent/1696",[894,4.441]],["name/1697",[899,78.795]],["parent/1697",[894,4.441]],["name/1698",[900,78.795]],["parent/1698",[894,4.441]],["name/1699",[901,78.795]],["parent/1699",[894,4.441]],["name/1700",[902,78.795]],["parent/1700",[894,4.441]],["name/1701",[903,78.795]],["parent/1701",[894,4.441]],["name/1702",[904,78.795]],["parent/1702",[894,4.441]],["name/1703",[905,78.795]],["parent/1703",[894,4.441]],["name/1704",[906,78.795]],["parent/1704",[894,4.441]],["name/1705",[907,78.795]],["parent/1705",[894,4.441]],["name/1706",[908,78.795]],["parent/1706",[894,4.441]],["name/1707",[52,49.351]],["parent/1707",[894,4.441]],["name/1708",[909,78.795]],["parent/1708",[894,4.441]],["name/1709",[910,78.795]],["parent/1709",[894,4.441]],["name/1710",[911,78.795]],["parent/1710",[894,4.441]],["name/1711",[912,78.795]],["parent/1711",[894,4.441]],["name/1712",[913,78.795]],["parent/1712",[894,4.441]],["name/1713",[914,78.795]],["parent/1713",[894,4.441]],["name/1714",[915,78.795]],["parent/1714",[894,4.441]],["name/1715",[916,78.795]],["parent/1715",[894,4.441]],["name/1716",[917,78.795]],["parent/1716",[894,4.441]],["name/1717",[918,78.795]],["parent/1717",[894,4.441]],["name/1718",[93,50.079]],["parent/1718",[894,4.441]],["name/1719",[397,51.28]],["parent/1719",[894,4.441]],["name/1720",[398,51.28]],["parent/1720",[894,4.441]],["name/1721",[117,16.899]],["parent/1721",[919,7.871]],["name/1722",[129,50.079]],["parent/1722",[894,4.441]],["name/1723",[117,16.899]],["parent/1723",[920,7.871]],["name/1724",[401,51.28]],["parent/1724",[894,4.441]],["name/1725",[117,16.899]],["parent/1725",[921,7.871]],["name/1726",[131,50.079]],["parent/1726",[894,4.441]],["name/1727",[117,16.899]],["parent/1727",[922,7.871]],["name/1728",[133,50.079]],["parent/1728",[894,4.441]],["name/1729",[117,16.899]],["parent/1729",[923,7.871]],["name/1730",[135,50.079]],["parent/1730",[894,4.441]],["name/1731",[117,16.899]],["parent/1731",[924,7.871]],["name/1732",[137,50.079]],["parent/1732",[894,4.441]],["name/1733",[117,16.899]],["parent/1733",[925,7.871]],["name/1734",[139,50.079]],["parent/1734",[894,4.441]],["name/1735",[117,16.899]],["parent/1735",[926,7.871]],["name/1736",[141,50.079]],["parent/1736",[894,4.441]],["name/1737",[117,16.899]],["parent/1737",[927,7.871]],["name/1738",[143,50.079]],["parent/1738",[894,4.441]],["name/1739",[117,16.899]],["parent/1739",[928,7.871]],["name/1740",[145,50.079]],["parent/1740",[894,4.441]],["name/1741",[117,16.899]],["parent/1741",[929,7.871]],["name/1742",[147,50.079]],["parent/1742",[894,4.441]],["name/1743",[117,16.899]],["parent/1743",[930,7.871]],["name/1744",[183,50.079]],["parent/1744",[894,4.441]],["name/1745",[117,16.899]],["parent/1745",[931,7.871]],["name/1746",[149,50.079]],["parent/1746",[894,4.441]],["name/1747",[117,16.899]],["parent/1747",[932,7.871]],["name/1748",[413,51.28]],["parent/1748",[894,4.441]],["name/1749",[117,16.899]],["parent/1749",[933,7.871]],["name/1750",[415,51.28]],["parent/1750",[894,4.441]],["name/1751",[117,16.899]],["parent/1751",[934,7.871]],["name/1752",[417,51.28]],["parent/1752",[894,4.441]],["name/1753",[418,51.28]],["parent/1753",[894,4.441]],["name/1754",[215,50.079]],["parent/1754",[601,5.211]],["name/1755",[216,50.079]],["parent/1755",[601,5.211]],["name/1756",[935,62.701]],["parent/1756",[]],["name/1757",[936,78.795]],["parent/1757",[935,6.263]],["name/1758",[2,50.079]],["parent/1758",[937,3.722]],["name/1759",[938,78.795]],["parent/1759",[937,3.722]],["name/1760",[939,78.795]],["parent/1760",[937,3.722]],["name/1761",[52,49.351]],["parent/1761",[937,3.722]],["name/1762",[93,50.079]],["parent/1762",[937,3.722]],["name/1763",[129,50.079]],["parent/1763",[937,3.722]],["name/1764",[117,16.899]],["parent/1764",[940,7.871]],["name/1765",[131,50.079]],["parent/1765",[937,3.722]],["name/1766",[117,16.899]],["parent/1766",[941,7.871]],["name/1767",[133,50.079]],["parent/1767",[937,3.722]],["name/1768",[117,16.899]],["parent/1768",[942,7.871]],["name/1769",[135,50.079]],["parent/1769",[937,3.722]],["name/1770",[117,16.899]],["parent/1770",[943,7.871]],["name/1771",[137,50.079]],["parent/1771",[937,3.722]],["name/1772",[117,16.899]],["parent/1772",[944,7.871]],["name/1773",[139,50.079]],["parent/1773",[937,3.722]],["name/1774",[117,16.899]],["parent/1774",[945,7.871]],["name/1775",[141,50.079]],["parent/1775",[937,3.722]],["name/1776",[117,16.899]],["parent/1776",[946,7.871]],["name/1777",[143,50.079]],["parent/1777",[937,3.722]],["name/1778",[117,16.899]],["parent/1778",[947,7.871]],["name/1779",[145,50.079]],["parent/1779",[937,3.722]],["name/1780",[117,16.899]],["parent/1780",[948,7.871]],["name/1781",[147,50.079]],["parent/1781",[937,3.722]],["name/1782",[117,16.899]],["parent/1782",[949,7.871]],["name/1783",[149,50.079]],["parent/1783",[937,3.722]],["name/1784",[117,16.899]],["parent/1784",[950,7.871]],["name/1785",[151,50.463]],["parent/1785",[937,3.722]],["name/1786",[152,50.463]],["parent/1786",[937,3.722]],["name/1787",[153,50.463]],["parent/1787",[937,3.722]],["name/1788",[156,50.463]],["parent/1788",[937,3.722]],["name/1789",[157,50.463]],["parent/1789",[937,3.722]],["name/1790",[158,50.463]],["parent/1790",[937,3.722]],["name/1791",[159,50.463]],["parent/1791",[937,3.722]],["name/1792",[117,16.899]],["parent/1792",[951,7.871]],["name/1793",[161,50.463]],["parent/1793",[937,3.722]],["name/1794",[117,16.899]],["parent/1794",[952,7.871]],["name/1795",[163,44.034]],["parent/1795",[937,3.722]],["name/1796",[117,16.899]],["parent/1796",[953,7.871]],["name/1797",[165,50.463]],["parent/1797",[937,3.722]],["name/1798",[117,16.899]],["parent/1798",[954,7.871]],["name/1799",[167,50.463]],["parent/1799",[937,3.722]],["name/1800",[168,50.463]],["parent/1800",[937,3.722]],["name/1801",[169,50.463]],["parent/1801",[937,3.722]],["name/1802",[170,50.463]],["parent/1802",[937,3.722]],["name/1803",[171,50.463]],["parent/1803",[937,3.722]],["name/1804",[172,50.463]],["parent/1804",[937,3.722]],["name/1805",[173,50.079]],["parent/1805",[937,3.722]],["name/1806",[174,50.463]],["parent/1806",[937,3.722]],["name/1807",[175,50.463]],["parent/1807",[937,3.722]],["name/1808",[176,50.463]],["parent/1808",[937,3.722]],["name/1809",[177,50.463]],["parent/1809",[937,3.722]],["name/1810",[178,50.463]],["parent/1810",[937,3.722]],["name/1811",[179,50.463]],["parent/1811",[937,3.722]],["name/1812",[180,50.463]],["parent/1812",[937,3.722]],["name/1813",[181,50.463]],["parent/1813",[937,3.722]],["name/1814",[182,50.463]],["parent/1814",[937,3.722]],["name/1815",[183,50.079]],["parent/1815",[937,3.722]],["name/1816",[184,50.463]],["parent/1816",[937,3.722]],["name/1817",[185,50.463]],["parent/1817",[937,3.722]],["name/1818",[955,78.795]],["parent/1818",[937,3.722]],["name/1819",[956,78.795]],["parent/1819",[937,3.722]],["name/1820",[957,78.795]],["parent/1820",[937,3.722]],["name/1821",[958,78.795]],["parent/1821",[937,3.722]],["name/1822",[117,16.899]],["parent/1822",[959,7.871]],["name/1823",[960,78.795]],["parent/1823",[937,3.722]],["name/1824",[117,16.899]],["parent/1824",[961,7.871]],["name/1825",[962,78.795]],["parent/1825",[937,3.722]],["name/1826",[117,16.899]],["parent/1826",[963,7.871]],["name/1827",[964,78.795]],["parent/1827",[937,3.722]],["name/1828",[117,16.899]],["parent/1828",[965,7.871]],["name/1829",[966,70.322]],["parent/1829",[937,3.722]],["name/1830",[117,16.899]],["parent/1830",[967,7.871]],["name/1831",[968,78.795]],["parent/1831",[969,7.871]],["name/1832",[970,78.795]],["parent/1832",[937,3.722]],["name/1833",[117,16.899]],["parent/1833",[971,7.871]],["name/1834",[966,70.322]],["parent/1834",[972,7.871]],["name/1835",[973,78.795]],["parent/1835",[937,3.722]],["name/1836",[117,16.899]],["parent/1836",[974,7.871]],["name/1837",[975,78.795]],["parent/1837",[976,7.024]],["name/1838",[966,70.322]],["parent/1838",[976,7.024]],["name/1839",[977,78.795]],["parent/1839",[976,7.024]],["name/1840",[978,78.795]],["parent/1840",[937,3.722]],["name/1841",[117,16.899]],["parent/1841",[979,7.871]],["name/1842",[980,78.795]],["parent/1842",[937,3.722]],["name/1843",[117,16.899]],["parent/1843",[981,7.871]],["name/1844",[982,78.795]],["parent/1844",[937,3.722]],["name/1845",[117,16.899]],["parent/1845",[983,7.871]],["name/1846",[984,78.795]],["parent/1846",[937,3.722]],["name/1847",[117,16.899]],["parent/1847",[985,7.871]],["name/1848",[986,78.795]],["parent/1848",[937,3.722]],["name/1849",[117,16.899]],["parent/1849",[987,7.871]],["name/1850",[207,48.038]],["parent/1850",[988,6.773]],["name/1851",[484,64.132]],["parent/1851",[988,6.773]],["name/1852",[989,73.687]],["parent/1852",[988,6.773]],["name/1853",[990,73.687]],["parent/1853",[988,6.773]],["name/1854",[625,62.701]],["parent/1854",[937,3.722]],["name/1855",[117,16.899]],["parent/1855",[991,7.871]],["name/1856",[992,78.795]],["parent/1856",[937,3.722]],["name/1857",[117,16.899]],["parent/1857",[993,7.871]],["name/1858",[994,78.795]],["parent/1858",[937,3.722]],["name/1859",[117,16.899]],["parent/1859",[995,7.871]],["name/1860",[241,57.593]],["parent/1860",[937,3.722]],["name/1861",[117,16.899]],["parent/1861",[996,7.871]],["name/1862",[997,78.795]],["parent/1862",[937,3.722]],["name/1863",[117,16.899]],["parent/1863",[998,7.871]],["name/1864",[999,78.795]],["parent/1864",[937,3.722]],["name/1865",[117,16.899]],["parent/1865",[1000,7.871]],["name/1866",[1001,78.795]],["parent/1866",[937,3.722]],["name/1867",[117,16.899]],["parent/1867",[1002,7.871]],["name/1868",[1003,78.795]],["parent/1868",[1004,6.573]],["name/1869",[207,48.038]],["parent/1869",[1004,6.573]],["name/1870",[484,64.132]],["parent/1870",[1004,6.573]],["name/1871",[989,73.687]],["parent/1871",[1004,6.573]],["name/1872",[990,73.687]],["parent/1872",[1004,6.573]],["name/1873",[1005,78.795]],["parent/1873",[937,3.722]],["name/1874",[117,16.899]],["parent/1874",[1006,7.871]],["name/1875",[1007,78.795]],["parent/1875",[937,3.722]],["name/1876",[117,16.899]],["parent/1876",[1008,7.871]],["name/1877",[214,49.006]],["parent/1877",[1009,6.773]],["name/1878",[1010,73.687]],["parent/1878",[1009,6.773]],["name/1879",[1011,70.322]],["parent/1879",[1009,6.773]],["name/1880",[1012,70.322]],["parent/1880",[1009,6.773]],["name/1881",[1012,70.322]],["parent/1881",[937,3.722]],["name/1882",[1013,78.795]],["parent/1882",[937,3.722]],["name/1883",[117,16.899]],["parent/1883",[1014,7.871]],["name/1884",[214,49.006]],["parent/1884",[1015,6.773]],["name/1885",[1010,73.687]],["parent/1885",[1015,6.773]],["name/1886",[1011,70.322]],["parent/1886",[1015,6.773]],["name/1887",[1012,70.322]],["parent/1887",[1015,6.773]],["name/1888",[1016,78.795]],["parent/1888",[937,3.722]],["name/1889",[117,16.899]],["parent/1889",[1017,7.871]],["name/1890",[1018,78.795]],["parent/1890",[1019,6.406]],["name/1891",[1020,73.687]],["parent/1891",[1019,6.406]],["name/1892",[1021,78.795]],["parent/1892",[1019,6.406]],["name/1893",[1022,78.795]],["parent/1893",[1019,6.406]],["name/1894",[1023,78.795]],["parent/1894",[1019,6.406]],["name/1895",[1024,78.795]],["parent/1895",[1019,6.406]],["name/1896",[1025,78.795]],["parent/1896",[937,3.722]],["name/1897",[117,16.899]],["parent/1897",[1026,7.871]],["name/1898",[173,50.079]],["parent/1898",[1027,6.263]],["name/1899",[1028,78.795]],["parent/1899",[1027,6.263]],["name/1900",[1029,73.687]],["parent/1900",[1027,6.263]],["name/1901",[1030,73.687]],["parent/1901",[1027,6.263]],["name/1902",[1020,73.687]],["parent/1902",[1027,6.263]],["name/1903",[1031,73.687]],["parent/1903",[1027,6.263]],["name/1904",[1032,73.687]],["parent/1904",[1027,6.263]],["name/1905",[1011,70.322]],["parent/1905",[937,3.722]],["name/1906",[1033,78.795]],["parent/1906",[937,3.722]],["name/1907",[1034,78.795]],["parent/1907",[937,3.722]],["name/1908",[117,16.899]],["parent/1908",[1035,7.871]],["name/1909",[1036,73.687]],["parent/1909",[1037,7.024]],["name/1910",[1038,62.701]],["parent/1910",[1037,7.024]],["name/1911",[1039,73.687]],["parent/1911",[1037,7.024]],["name/1912",[1040,78.795]],["parent/1912",[937,3.722]],["name/1913",[117,16.899]],["parent/1913",[1041,7.871]],["name/1914",[199,50.463]],["parent/1914",[1042,6.773]],["name/1915",[197,50.463]],["parent/1915",[1042,6.773]],["name/1916",[1038,62.701]],["parent/1916",[1042,6.773]],["name/1917",[1039,73.687]],["parent/1917",[1042,6.773]],["name/1918",[1043,78.795]],["parent/1918",[937,3.722]],["name/1919",[117,16.899]],["parent/1919",[1044,7.871]],["name/1920",[1036,73.687]],["parent/1920",[1045,7.024]],["name/1921",[1038,62.701]],["parent/1921",[1045,7.024]],["name/1922",[1046,70.322]],["parent/1922",[1045,7.024]],["name/1923",[1047,78.795]],["parent/1923",[937,3.722]],["name/1924",[1048,78.795]],["parent/1924",[937,3.722]],["name/1925",[117,16.899]],["parent/1925",[1049,7.871]],["name/1926",[1050,78.795]],["parent/1926",[937,3.722]],["name/1927",[117,16.899]],["parent/1927",[1051,7.871]],["name/1928",[199,50.463]],["parent/1928",[1052,6.773]],["name/1929",[197,50.463]],["parent/1929",[1052,6.773]],["name/1930",[1038,62.701]],["parent/1930",[1052,6.773]],["name/1931",[1046,70.322]],["parent/1931",[1052,6.773]],["name/1932",[1053,78.795]],["parent/1932",[937,3.722]],["name/1933",[117,16.899]],["parent/1933",[1054,7.871]],["name/1934",[1055,78.795]],["parent/1934",[1056,7.024]],["name/1935",[1038,62.701]],["parent/1935",[1056,7.024]],["name/1936",[1046,70.322]],["parent/1936",[1056,7.024]],["name/1937",[1031,73.687]],["parent/1937",[937,3.722]],["name/1938",[1057,78.795]],["parent/1938",[937,3.722]],["name/1939",[1058,78.795]],["parent/1939",[937,3.722]],["name/1940",[1032,73.687]],["parent/1940",[937,3.722]],["name/1941",[1059,78.795]],["parent/1941",[937,3.722]],["name/1942",[117,16.899]],["parent/1942",[1060,7.871]],["name/1943",[1038,62.701]],["parent/1943",[1061,7.024]],["name/1944",[1062,78.795]],["parent/1944",[1061,7.024]],["name/1945",[1063,78.795]],["parent/1945",[1061,7.024]],["name/1946",[1064,78.795]],["parent/1946",[937,3.722]],["name/1947",[117,16.899]],["parent/1947",[1065,7.871]],["name/1948",[1030,73.687]],["parent/1948",[937,3.722]],["name/1949",[1066,78.795]],["parent/1949",[937,3.722]],["name/1950",[117,16.899]],["parent/1950",[1067,7.871]],["name/1951",[1038,62.701]],["parent/1951",[1068,7.024]],["name/1952",[1029,73.687]],["parent/1952",[1068,7.024]],["name/1953",[1069,78.795]],["parent/1953",[1068,7.024]],["name/1954",[1070,78.795]],["parent/1954",[937,3.722]],["name/1955",[1071,78.795]],["parent/1955",[937,3.722]],["name/1956",[1072,78.795]],["parent/1956",[937,3.722]],["name/1957",[117,16.899]],["parent/1957",[1073,7.871]],["name/1958",[1074,78.795]],["parent/1958",[1075,6.573]],["name/1959",[1076,78.795]],["parent/1959",[1075,6.573]],["name/1960",[1077,78.795]],["parent/1960",[1075,6.573]],["name/1961",[1078,78.795]],["parent/1961",[1075,6.573]],["name/1962",[1079,78.795]],["parent/1962",[1075,6.573]],["name/1963",[1080,70.322]],["parent/1963",[937,3.722]],["name/1964",[117,16.899]],["parent/1964",[1081,7.871]],["name/1965",[1082,78.795]],["parent/1965",[1083,7.871]],["name/1966",[1084,78.795]],["parent/1966",[937,3.722]],["name/1967",[117,16.899]],["parent/1967",[1085,7.871]],["name/1968",[1086,78.795]],["parent/1968",[1087,7.024]],["name/1969",[1088,78.795]],["parent/1969",[1087,7.024]],["name/1970",[1089,78.795]],["parent/1970",[1087,7.024]],["name/1971",[215,50.079]],["parent/1971",[935,6.263]],["name/1972",[216,50.079]],["parent/1972",[935,6.263]],["name/1973",[1090,73.687]],["parent/1973",[935,6.263]],["name/1974",[2,50.079]],["parent/1974",[1091,3.809]],["name/1975",[1092,73.687]],["parent/1975",[1091,3.809]],["name/1976",[1093,73.687]],["parent/1976",[1091,3.809]],["name/1977",[52,49.351]],["parent/1977",[1091,3.809]],["name/1978",[151,50.463]],["parent/1978",[1091,3.809]],["name/1979",[152,50.463]],["parent/1979",[1091,3.809]],["name/1980",[153,50.463]],["parent/1980",[1091,3.809]],["name/1981",[154,51.28]],["parent/1981",[1091,3.809]],["name/1982",[155,51.28]],["parent/1982",[1091,3.809]],["name/1983",[156,50.463]],["parent/1983",[1091,3.809]],["name/1984",[157,50.463]],["parent/1984",[1091,3.809]],["name/1985",[158,50.463]],["parent/1985",[1091,3.809]],["name/1986",[159,50.463]],["parent/1986",[1091,3.809]],["name/1987",[117,16.899]],["parent/1987",[1094,7.871]],["name/1988",[161,50.463]],["parent/1988",[1091,3.809]],["name/1989",[117,16.899]],["parent/1989",[1095,7.871]],["name/1990",[163,44.034]],["parent/1990",[1091,3.809]],["name/1991",[117,16.899]],["parent/1991",[1096,7.871]],["name/1992",[390,52.17]],["parent/1992",[1091,3.809]],["name/1993",[117,16.899]],["parent/1993",[1097,7.871]],["name/1994",[165,50.463]],["parent/1994",[1091,3.809]],["name/1995",[117,16.899]],["parent/1995",[1098,7.871]],["name/1996",[167,50.463]],["parent/1996",[1091,3.809]],["name/1997",[168,50.463]],["parent/1997",[1091,3.809]],["name/1998",[169,50.463]],["parent/1998",[1091,3.809]],["name/1999",[170,50.463]],["parent/1999",[1091,3.809]],["name/2000",[171,50.463]],["parent/2000",[1091,3.809]],["name/2001",[172,50.463]],["parent/2001",[1091,3.809]],["name/2002",[173,50.079]],["parent/2002",[1091,3.809]],["name/2003",[174,50.463]],["parent/2003",[1091,3.809]],["name/2004",[175,50.463]],["parent/2004",[1091,3.809]],["name/2005",[176,50.463]],["parent/2005",[1091,3.809]],["name/2006",[177,50.463]],["parent/2006",[1091,3.809]],["name/2007",[178,50.463]],["parent/2007",[1091,3.809]],["name/2008",[179,50.463]],["parent/2008",[1091,3.809]],["name/2009",[180,50.463]],["parent/2009",[1091,3.809]],["name/2010",[181,50.463]],["parent/2010",[1091,3.809]],["name/2011",[182,50.463]],["parent/2011",[1091,3.809]],["name/2012",[183,50.079]],["parent/2012",[1091,3.809]],["name/2013",[184,50.463]],["parent/2013",[1091,3.809]],["name/2014",[185,50.463]],["parent/2014",[1091,3.809]],["name/2015",[186,51.28]],["parent/2015",[1091,3.809]],["name/2016",[187,51.28]],["parent/2016",[1091,3.809]],["name/2017",[117,16.899]],["parent/2017",[1099,7.871]],["name/2018",[189,51.28]],["parent/2018",[1100,5.259]],["name/2019",[191,42.868]],["parent/2019",[1100,5.259]],["name/2020",[192,50.079]],["parent/2020",[1100,5.259]],["name/2021",[193,44.243]],["parent/2021",[1100,5.259]],["name/2022",[194,51.28]],["parent/2022",[1100,5.259]],["name/2023",[195,51.28]],["parent/2023",[1100,5.259]],["name/2024",[196,51.28]],["parent/2024",[1100,5.259]],["name/2025",[197,50.463]],["parent/2025",[1100,5.259]],["name/2026",[198,51.28]],["parent/2026",[1100,5.259]],["name/2027",[199,50.463]],["parent/2027",[1100,5.259]],["name/2028",[200,51.28]],["parent/2028",[1100,5.259]],["name/2029",[201,51.28]],["parent/2029",[1100,5.259]],["name/2030",[202,51.28]],["parent/2030",[1100,5.259]],["name/2031",[203,51.28]],["parent/2031",[1100,5.259]],["name/2032",[163,44.034]],["parent/2032",[1100,5.259]],["name/2033",[204,51.28]],["parent/2033",[1100,5.259]],["name/2034",[205,51.28]],["parent/2034",[1100,5.259]],["name/2035",[206,51.28]],["parent/2035",[1100,5.259]],["name/2036",[207,48.038]],["parent/2036",[1100,5.259]],["name/2037",[208,51.28]],["parent/2037",[1100,5.259]],["name/2038",[209,51.28]],["parent/2038",[1091,3.809]],["name/2039",[117,16.899]],["parent/2039",[1101,7.871]],["name/2040",[193,44.243]],["parent/2040",[1102,6.573]],["name/2041",[212,51.28]],["parent/2041",[1102,6.573]],["name/2042",[191,42.868]],["parent/2042",[1102,6.573]],["name/2043",[213,51.28]],["parent/2043",[1102,6.573]],["name/2044",[214,49.006]],["parent/2044",[1102,6.573]],["name/2045",[93,50.079]],["parent/2045",[1091,3.809]],["name/2046",[397,51.28]],["parent/2046",[1091,3.809]],["name/2047",[398,51.28]],["parent/2047",[1091,3.809]],["name/2048",[117,16.899]],["parent/2048",[1103,7.871]],["name/2049",[129,50.079]],["parent/2049",[1091,3.809]],["name/2050",[117,16.899]],["parent/2050",[1104,7.871]],["name/2051",[401,51.28]],["parent/2051",[1091,3.809]],["name/2052",[117,16.899]],["parent/2052",[1105,7.871]],["name/2053",[131,50.079]],["parent/2053",[1091,3.809]],["name/2054",[117,16.899]],["parent/2054",[1106,7.871]],["name/2055",[133,50.079]],["parent/2055",[1091,3.809]],["name/2056",[117,16.899]],["parent/2056",[1107,7.871]],["name/2057",[135,50.079]],["parent/2057",[1091,3.809]],["name/2058",[117,16.899]],["parent/2058",[1108,7.871]],["name/2059",[137,50.079]],["parent/2059",[1091,3.809]],["name/2060",[117,16.899]],["parent/2060",[1109,7.871]],["name/2061",[139,50.079]],["parent/2061",[1091,3.809]],["name/2062",[117,16.899]],["parent/2062",[1110,7.871]],["name/2063",[141,50.079]],["parent/2063",[1091,3.809]],["name/2064",[117,16.899]],["parent/2064",[1111,7.871]],["name/2065",[143,50.079]],["parent/2065",[1091,3.809]],["name/2066",[117,16.899]],["parent/2066",[1112,7.871]],["name/2067",[145,50.079]],["parent/2067",[1091,3.809]],["name/2068",[117,16.899]],["parent/2068",[1113,7.871]],["name/2069",[147,50.079]],["parent/2069",[1091,3.809]],["name/2070",[117,16.899]],["parent/2070",[1114,7.871]],["name/2071",[149,50.079]],["parent/2071",[1091,3.809]],["name/2072",[117,16.899]],["parent/2072",[1115,7.871]],["name/2073",[413,51.28]],["parent/2073",[1091,3.809]],["name/2074",[117,16.899]],["parent/2074",[1116,7.871]],["name/2075",[415,51.28]],["parent/2075",[1091,3.809]],["name/2076",[117,16.899]],["parent/2076",[1117,7.871]],["name/2077",[417,51.28]],["parent/2077",[1091,3.809]],["name/2078",[418,51.28]],["parent/2078",[1091,3.809]],["name/2079",[1118,73.687]],["parent/2079",[1091,3.809]],["name/2080",[1119,73.687]],["parent/2080",[1091,3.809]],["name/2081",[1120,73.687]],["parent/2081",[1091,3.809]],["name/2082",[1121,73.687]],["parent/2082",[1091,3.809]],["name/2083",[1122,73.687]],["parent/2083",[1091,3.809]],["name/2084",[1123,73.687]],["parent/2084",[1091,3.809]],["name/2085",[1124,73.687]],["parent/2085",[1091,3.809]],["name/2086",[732,64.132]],["parent/2086",[1091,3.809]],["name/2087",[1125,73.687]],["parent/2087",[1091,3.809]],["name/2088",[1126,73.687]],["parent/2088",[1091,3.809]],["name/2089",[738,64.132]],["parent/2089",[1091,3.809]],["name/2090",[741,65.803]],["parent/2090",[1091,3.809]],["name/2091",[743,65.803]],["parent/2091",[1091,3.809]],["name/2092",[1127,73.687]],["parent/2092",[1091,3.809]],["name/2093",[1128,73.687]],["parent/2093",[1091,3.809]],["name/2094",[1129,73.687]],["parent/2094",[1091,3.809]],["name/2095",[753,65.803]],["parent/2095",[1091,3.809]],["name/2096",[1130,73.687]],["parent/2096",[1091,3.809]],["name/2097",[1131,73.687]],["parent/2097",[1091,3.809]],["name/2098",[1132,73.687]],["parent/2098",[1091,3.809]],["name/2099",[1133,73.687]],["parent/2099",[1091,3.809]],["name/2100",[1134,70.322]],["parent/2100",[1091,3.809]],["name/2101",[765,67.809]],["parent/2101",[1091,3.809]],["name/2102",[766,64.132]],["parent/2102",[1091,3.809]],["name/2103",[767,70.322]],["parent/2103",[1091,3.809]],["name/2104",[1080,70.322]],["parent/2104",[1091,3.809]],["name/2105",[1135,73.687]],["parent/2105",[1091,3.809]],["name/2106",[634,61.449]],["parent/2106",[1091,3.809]],["name/2107",[117,16.899]],["parent/2107",[1136,7.871]],["name/2108",[241,57.593]],["parent/2108",[1091,3.809]],["name/2109",[117,16.899]],["parent/2109",[1137,7.871]],["name/2110",[215,50.079]],["parent/2110",[935,6.263]],["name/2111",[216,50.079]],["parent/2111",[935,6.263]],["name/2112",[1138,67.809]],["parent/2112",[]],["name/2113",[1139,78.795]],["parent/2113",[1138,6.773]],["name/2114",[2,50.079]],["parent/2114",[1140,4.068]],["name/2115",[1141,78.795]],["parent/2115",[1140,4.068]],["name/2116",[1142,78.795]],["parent/2116",[1140,4.068]],["name/2117",[52,49.351]],["parent/2117",[1140,4.068]],["name/2118",[1143,78.795]],["parent/2118",[1140,4.068]],["name/2119",[1144,78.795]],["parent/2119",[1140,4.068]],["name/2120",[1145,78.795]],["parent/2120",[1140,4.068]],["name/2121",[1146,78.795]],["parent/2121",[1140,4.068]],["name/2122",[93,50.079]],["parent/2122",[1140,4.068]],["name/2123",[397,51.28]],["parent/2123",[1140,4.068]],["name/2124",[398,51.28]],["parent/2124",[1140,4.068]],["name/2125",[117,16.899]],["parent/2125",[1147,7.871]],["name/2126",[129,50.079]],["parent/2126",[1140,4.068]],["name/2127",[117,16.899]],["parent/2127",[1148,7.871]],["name/2128",[401,51.28]],["parent/2128",[1140,4.068]],["name/2129",[117,16.899]],["parent/2129",[1149,7.871]],["name/2130",[131,50.079]],["parent/2130",[1140,4.068]],["name/2131",[117,16.899]],["parent/2131",[1150,7.871]],["name/2132",[133,50.079]],["parent/2132",[1140,4.068]],["name/2133",[117,16.899]],["parent/2133",[1151,7.871]],["name/2134",[135,50.079]],["parent/2134",[1140,4.068]],["name/2135",[117,16.899]],["parent/2135",[1152,7.871]],["name/2136",[137,50.079]],["parent/2136",[1140,4.068]],["name/2137",[117,16.899]],["parent/2137",[1153,7.871]],["name/2138",[139,50.079]],["parent/2138",[1140,4.068]],["name/2139",[117,16.899]],["parent/2139",[1154,7.871]],["name/2140",[141,50.079]],["parent/2140",[1140,4.068]],["name/2141",[117,16.899]],["parent/2141",[1155,7.871]],["name/2142",[143,50.079]],["parent/2142",[1140,4.068]],["name/2143",[117,16.899]],["parent/2143",[1156,7.871]],["name/2144",[145,50.079]],["parent/2144",[1140,4.068]],["name/2145",[117,16.899]],["parent/2145",[1157,7.871]],["name/2146",[147,50.079]],["parent/2146",[1140,4.068]],["name/2147",[117,16.899]],["parent/2147",[1158,7.871]],["name/2148",[183,50.079]],["parent/2148",[1140,4.068]],["name/2149",[117,16.899]],["parent/2149",[1159,7.871]],["name/2150",[149,50.079]],["parent/2150",[1140,4.068]],["name/2151",[117,16.899]],["parent/2151",[1160,7.871]],["name/2152",[413,51.28]],["parent/2152",[1140,4.068]],["name/2153",[117,16.899]],["parent/2153",[1161,7.871]],["name/2154",[415,51.28]],["parent/2154",[1140,4.068]],["name/2155",[117,16.899]],["parent/2155",[1162,7.871]],["name/2156",[417,51.28]],["parent/2156",[1140,4.068]],["name/2157",[418,51.28]],["parent/2157",[1140,4.068]],["name/2158",[151,50.463]],["parent/2158",[1140,4.068]],["name/2159",[152,50.463]],["parent/2159",[1140,4.068]],["name/2160",[153,50.463]],["parent/2160",[1140,4.068]],["name/2161",[154,51.28]],["parent/2161",[1140,4.068]],["name/2162",[155,51.28]],["parent/2162",[1140,4.068]],["name/2163",[156,50.463]],["parent/2163",[1140,4.068]],["name/2164",[157,50.463]],["parent/2164",[1140,4.068]],["name/2165",[158,50.463]],["parent/2165",[1140,4.068]],["name/2166",[159,50.463]],["parent/2166",[1140,4.068]],["name/2167",[117,16.899]],["parent/2167",[1163,7.871]],["name/2168",[161,50.463]],["parent/2168",[1140,4.068]],["name/2169",[117,16.899]],["parent/2169",[1164,7.871]],["name/2170",[163,44.034]],["parent/2170",[1140,4.068]],["name/2171",[117,16.899]],["parent/2171",[1165,7.871]],["name/2172",[390,52.17]],["parent/2172",[1140,4.068]],["name/2173",[117,16.899]],["parent/2173",[1166,7.871]],["name/2174",[165,50.463]],["parent/2174",[1140,4.068]],["name/2175",[117,16.899]],["parent/2175",[1167,7.871]],["name/2176",[167,50.463]],["parent/2176",[1140,4.068]],["name/2177",[168,50.463]],["parent/2177",[1140,4.068]],["name/2178",[169,50.463]],["parent/2178",[1140,4.068]],["name/2179",[170,50.463]],["parent/2179",[1140,4.068]],["name/2180",[171,50.463]],["parent/2180",[1140,4.068]],["name/2181",[172,50.463]],["parent/2181",[1140,4.068]],["name/2182",[173,50.079]],["parent/2182",[1140,4.068]],["name/2183",[174,50.463]],["parent/2183",[1140,4.068]],["name/2184",[175,50.463]],["parent/2184",[1140,4.068]],["name/2185",[176,50.463]],["parent/2185",[1140,4.068]],["name/2186",[177,50.463]],["parent/2186",[1140,4.068]],["name/2187",[178,50.463]],["parent/2187",[1140,4.068]],["name/2188",[179,50.463]],["parent/2188",[1140,4.068]],["name/2189",[180,50.463]],["parent/2189",[1140,4.068]],["name/2190",[181,50.463]],["parent/2190",[1140,4.068]],["name/2191",[182,50.463]],["parent/2191",[1140,4.068]],["name/2192",[184,50.463]],["parent/2192",[1140,4.068]],["name/2193",[185,50.463]],["parent/2193",[1140,4.068]],["name/2194",[186,51.28]],["parent/2194",[1140,4.068]],["name/2195",[187,51.28]],["parent/2195",[1140,4.068]],["name/2196",[117,16.899]],["parent/2196",[1168,7.871]],["name/2197",[189,51.28]],["parent/2197",[1169,5.259]],["name/2198",[191,42.868]],["parent/2198",[1169,5.259]],["name/2199",[192,50.079]],["parent/2199",[1169,5.259]],["name/2200",[193,44.243]],["parent/2200",[1169,5.259]],["name/2201",[194,51.28]],["parent/2201",[1169,5.259]],["name/2202",[195,51.28]],["parent/2202",[1169,5.259]],["name/2203",[196,51.28]],["parent/2203",[1169,5.259]],["name/2204",[197,50.463]],["parent/2204",[1169,5.259]],["name/2205",[198,51.28]],["parent/2205",[1169,5.259]],["name/2206",[199,50.463]],["parent/2206",[1169,5.259]],["name/2207",[200,51.28]],["parent/2207",[1169,5.259]],["name/2208",[201,51.28]],["parent/2208",[1169,5.259]],["name/2209",[202,51.28]],["parent/2209",[1169,5.259]],["name/2210",[203,51.28]],["parent/2210",[1169,5.259]],["name/2211",[163,44.034]],["parent/2211",[1169,5.259]],["name/2212",[204,51.28]],["parent/2212",[1169,5.259]],["name/2213",[205,51.28]],["parent/2213",[1169,5.259]],["name/2214",[206,51.28]],["parent/2214",[1169,5.259]],["name/2215",[207,48.038]],["parent/2215",[1169,5.259]],["name/2216",[208,51.28]],["parent/2216",[1169,5.259]],["name/2217",[209,51.28]],["parent/2217",[1140,4.068]],["name/2218",[117,16.899]],["parent/2218",[1170,7.871]],["name/2219",[193,44.243]],["parent/2219",[1171,6.573]],["name/2220",[212,51.28]],["parent/2220",[1171,6.573]],["name/2221",[191,42.868]],["parent/2221",[1171,6.573]],["name/2222",[213,51.28]],["parent/2222",[1171,6.573]],["name/2223",[214,49.006]],["parent/2223",[1171,6.573]],["name/2224",[1172,78.795]],["parent/2224",[1140,4.068]],["name/2225",[117,16.899]],["parent/2225",[1173,7.871]],["name/2226",[1174,78.795]],["parent/2226",[1140,4.068]],["name/2227",[117,16.899]],["parent/2227",[1175,7.871]],["name/2228",[1176,78.795]],["parent/2228",[1140,4.068]],["name/2229",[117,16.899]],["parent/2229",[1177,7.871]],["name/2230",[1178,78.795]],["parent/2230",[1140,4.068]],["name/2231",[117,16.899]],["parent/2231",[1179,7.871]],["name/2232",[458,65.803]],["parent/2232",[1140,4.068]],["name/2233",[117,16.899]],["parent/2233",[1180,7.871]],["name/2234",[215,50.079]],["parent/2234",[1138,6.773]],["name/2235",[216,50.079]],["parent/2235",[1138,6.773]],["name/2236",[1181,51.28]],["parent/2236",[]],["name/2237",[1182,78.795]],["parent/2237",[1181,5.122]],["name/2238",[1183,78.795]],["parent/2238",[1181,5.122]],["name/2239",[1184,78.795]],["parent/2239",[1181,5.122]],["name/2240",[117,16.899]],["parent/2240",[1185,7.871]],["name/2241",[1186,78.795]],["parent/2241",[1187,6.573]],["name/2242",[1188,78.795]],["parent/2242",[1187,6.573]],["name/2243",[1189,78.795]],["parent/2243",[1187,6.573]],["name/2244",[1190,78.795]],["parent/2244",[1187,6.573]],["name/2245",[1191,78.795]],["parent/2245",[1187,6.573]],["name/2246",[1192,73.687]],["parent/2246",[1181,5.122]],["name/2247",[1193,78.795]],["parent/2247",[1181,5.122]],["name/2248",[806,73.687]],["parent/2248",[1194,6.573]],["name/2249",[809,73.687]],["parent/2249",[1194,6.573]],["name/2250",[810,73.687]],["parent/2250",[1194,6.573]],["name/2251",[808,73.687]],["parent/2251",[1194,6.573]],["name/2252",[52,49.351]],["parent/2252",[1194,6.573]],["name/2253",[822,73.687]],["parent/2253",[1181,5.122]],["name/2254",[832,73.687]],["parent/2254",[1181,5.122]],["name/2255",[831,73.687]],["parent/2255",[1181,5.122]],["name/2256",[1195,78.795]],["parent/2256",[1181,5.122]],["name/2257",[1196,78.795]],["parent/2257",[1181,5.122]],["name/2258",[1197,78.795]],["parent/2258",[1181,5.122]],["name/2259",[1198,78.795]],["parent/2259",[1181,5.122]],["name/2260",[1199,78.795]],["parent/2260",[1181,5.122]],["name/2261",[1200,78.795]],["parent/2261",[1181,5.122]],["name/2262",[1201,78.795]],["parent/2262",[1181,5.122]],["name/2263",[1202,78.795]],["parent/2263",[1181,5.122]],["name/2264",[1203,78.795]],["parent/2264",[1181,5.122]],["name/2265",[1204,78.795]],["parent/2265",[1181,5.122]],["name/2266",[1205,78.795]],["parent/2266",[1181,5.122]],["name/2267",[1206,78.795]],["parent/2267",[1181,5.122]],["name/2268",[1181,51.28]],["parent/2268",[1181,5.122]],["name/2269",[1192,73.687]],["parent/2269",[1207,7.871]],["name/2270",[1208,50.463]],["parent/2270",[]],["name/2271",[1209,78.795]],["parent/2271",[1208,5.041]],["name/2272",[2,50.079]],["parent/2272",[1210,4.068]],["name/2273",[1211,78.795]],["parent/2273",[1210,4.068]],["name/2274",[52,49.351]],["parent/2274",[1210,4.068]],["name/2275",[1212,73.687]],["parent/2275",[1210,4.068]],["name/2276",[1213,70.322]],["parent/2276",[1210,4.068]],["name/2277",[1214,73.687]],["parent/2277",[1210,4.068]],["name/2278",[1215,73.687]],["parent/2278",[1210,4.068]],["name/2279",[1216,70.322]],["parent/2279",[1210,4.068]],["name/2280",[1217,73.687]],["parent/2280",[1210,4.068]],["name/2281",[1218,73.687]],["parent/2281",[1210,4.068]],["name/2282",[1219,78.795]],["parent/2282",[1210,4.068]],["name/2283",[1220,73.687]],["parent/2283",[1210,4.068]],["name/2284",[1221,73.687]],["parent/2284",[1210,4.068]],["name/2285",[93,50.079]],["parent/2285",[1210,4.068]],["name/2286",[397,51.28]],["parent/2286",[1210,4.068]],["name/2287",[398,51.28]],["parent/2287",[1210,4.068]],["name/2288",[117,16.899]],["parent/2288",[1222,7.871]],["name/2289",[129,50.079]],["parent/2289",[1210,4.068]],["name/2290",[117,16.899]],["parent/2290",[1223,7.871]],["name/2291",[401,51.28]],["parent/2291",[1210,4.068]],["name/2292",[117,16.899]],["parent/2292",[1224,7.871]],["name/2293",[131,50.079]],["parent/2293",[1210,4.068]],["name/2294",[117,16.899]],["parent/2294",[1225,7.871]],["name/2295",[133,50.079]],["parent/2295",[1210,4.068]],["name/2296",[117,16.899]],["parent/2296",[1226,7.871]],["name/2297",[135,50.079]],["parent/2297",[1210,4.068]],["name/2298",[117,16.899]],["parent/2298",[1227,7.871]],["name/2299",[137,50.079]],["parent/2299",[1210,4.068]],["name/2300",[117,16.899]],["parent/2300",[1228,7.871]],["name/2301",[139,50.079]],["parent/2301",[1210,4.068]],["name/2302",[117,16.899]],["parent/2302",[1229,7.871]],["name/2303",[141,50.079]],["parent/2303",[1210,4.068]],["name/2304",[117,16.899]],["parent/2304",[1230,7.871]],["name/2305",[143,50.079]],["parent/2305",[1210,4.068]],["name/2306",[117,16.899]],["parent/2306",[1231,7.871]],["name/2307",[145,50.079]],["parent/2307",[1210,4.068]],["name/2308",[117,16.899]],["parent/2308",[1232,7.871]],["name/2309",[147,50.079]],["parent/2309",[1210,4.068]],["name/2310",[117,16.899]],["parent/2310",[1233,7.871]],["name/2311",[183,50.079]],["parent/2311",[1210,4.068]],["name/2312",[117,16.899]],["parent/2312",[1234,7.871]],["name/2313",[149,50.079]],["parent/2313",[1210,4.068]],["name/2314",[117,16.899]],["parent/2314",[1235,7.871]],["name/2315",[413,51.28]],["parent/2315",[1210,4.068]],["name/2316",[117,16.899]],["parent/2316",[1236,7.871]],["name/2317",[415,51.28]],["parent/2317",[1210,4.068]],["name/2318",[117,16.899]],["parent/2318",[1237,7.871]],["name/2319",[417,51.28]],["parent/2319",[1210,4.068]],["name/2320",[418,51.28]],["parent/2320",[1210,4.068]],["name/2321",[151,50.463]],["parent/2321",[1210,4.068]],["name/2322",[152,50.463]],["parent/2322",[1210,4.068]],["name/2323",[153,50.463]],["parent/2323",[1210,4.068]],["name/2324",[154,51.28]],["parent/2324",[1210,4.068]],["name/2325",[155,51.28]],["parent/2325",[1210,4.068]],["name/2326",[156,50.463]],["parent/2326",[1210,4.068]],["name/2327",[157,50.463]],["parent/2327",[1210,4.068]],["name/2328",[158,50.463]],["parent/2328",[1210,4.068]],["name/2329",[159,50.463]],["parent/2329",[1210,4.068]],["name/2330",[117,16.899]],["parent/2330",[1238,7.871]],["name/2331",[161,50.463]],["parent/2331",[1210,4.068]],["name/2332",[117,16.899]],["parent/2332",[1239,7.871]],["name/2333",[163,44.034]],["parent/2333",[1210,4.068]],["name/2334",[117,16.899]],["parent/2334",[1240,7.871]],["name/2335",[390,52.17]],["parent/2335",[1210,4.068]],["name/2336",[117,16.899]],["parent/2336",[1241,7.871]],["name/2337",[165,50.463]],["parent/2337",[1210,4.068]],["name/2338",[117,16.899]],["parent/2338",[1242,7.871]],["name/2339",[167,50.463]],["parent/2339",[1210,4.068]],["name/2340",[168,50.463]],["parent/2340",[1210,4.068]],["name/2341",[169,50.463]],["parent/2341",[1210,4.068]],["name/2342",[170,50.463]],["parent/2342",[1210,4.068]],["name/2343",[171,50.463]],["parent/2343",[1210,4.068]],["name/2344",[172,50.463]],["parent/2344",[1210,4.068]],["name/2345",[173,50.079]],["parent/2345",[1210,4.068]],["name/2346",[174,50.463]],["parent/2346",[1210,4.068]],["name/2347",[175,50.463]],["parent/2347",[1210,4.068]],["name/2348",[176,50.463]],["parent/2348",[1210,4.068]],["name/2349",[177,50.463]],["parent/2349",[1210,4.068]],["name/2350",[178,50.463]],["parent/2350",[1210,4.068]],["name/2351",[179,50.463]],["parent/2351",[1210,4.068]],["name/2352",[180,50.463]],["parent/2352",[1210,4.068]],["name/2353",[181,50.463]],["parent/2353",[1210,4.068]],["name/2354",[182,50.463]],["parent/2354",[1210,4.068]],["name/2355",[184,50.463]],["parent/2355",[1210,4.068]],["name/2356",[185,50.463]],["parent/2356",[1210,4.068]],["name/2357",[186,51.28]],["parent/2357",[1210,4.068]],["name/2358",[187,51.28]],["parent/2358",[1210,4.068]],["name/2359",[117,16.899]],["parent/2359",[1243,7.871]],["name/2360",[189,51.28]],["parent/2360",[1244,5.259]],["name/2361",[191,42.868]],["parent/2361",[1244,5.259]],["name/2362",[192,50.079]],["parent/2362",[1244,5.259]],["name/2363",[193,44.243]],["parent/2363",[1244,5.259]],["name/2364",[194,51.28]],["parent/2364",[1244,5.259]],["name/2365",[195,51.28]],["parent/2365",[1244,5.259]],["name/2366",[196,51.28]],["parent/2366",[1244,5.259]],["name/2367",[197,50.463]],["parent/2367",[1244,5.259]],["name/2368",[198,51.28]],["parent/2368",[1244,5.259]],["name/2369",[199,50.463]],["parent/2369",[1244,5.259]],["name/2370",[200,51.28]],["parent/2370",[1244,5.259]],["name/2371",[201,51.28]],["parent/2371",[1244,5.259]],["name/2372",[202,51.28]],["parent/2372",[1244,5.259]],["name/2373",[203,51.28]],["parent/2373",[1244,5.259]],["name/2374",[163,44.034]],["parent/2374",[1244,5.259]],["name/2375",[204,51.28]],["parent/2375",[1244,5.259]],["name/2376",[205,51.28]],["parent/2376",[1244,5.259]],["name/2377",[206,51.28]],["parent/2377",[1244,5.259]],["name/2378",[207,48.038]],["parent/2378",[1244,5.259]],["name/2379",[208,51.28]],["parent/2379",[1244,5.259]],["name/2380",[209,51.28]],["parent/2380",[1210,4.068]],["name/2381",[117,16.899]],["parent/2381",[1245,7.871]],["name/2382",[193,44.243]],["parent/2382",[1246,6.573]],["name/2383",[212,51.28]],["parent/2383",[1246,6.573]],["name/2384",[191,42.868]],["parent/2384",[1246,6.573]],["name/2385",[213,51.28]],["parent/2385",[1246,6.573]],["name/2386",[214,49.006]],["parent/2386",[1246,6.573]],["name/2387",[215,50.079]],["parent/2387",[1208,5.041]],["name/2388",[216,50.079]],["parent/2388",[1208,5.041]],["name/2389",[1247,78.795]],["parent/2389",[1208,5.041]],["name/2390",[2,50.079]],["parent/2390",[1248,4.083]],["name/2391",[1249,78.795]],["parent/2391",[1248,4.083]],["name/2392",[1250,78.795]],["parent/2392",[1248,4.083]],["name/2393",[1251,78.795]],["parent/2393",[1248,4.083]],["name/2394",[1252,78.795]],["parent/2394",[1248,4.083]],["name/2395",[1253,78.795]],["parent/2395",[1248,4.083]],["name/2396",[52,49.351]],["parent/2396",[1248,4.083]],["name/2397",[1254,78.795]],["parent/2397",[1248,4.083]],["name/2398",[1213,70.322]],["parent/2398",[1248,4.083]],["name/2399",[93,50.079]],["parent/2399",[1248,4.083]],["name/2400",[397,51.28]],["parent/2400",[1248,4.083]],["name/2401",[398,51.28]],["parent/2401",[1248,4.083]],["name/2402",[117,16.899]],["parent/2402",[1255,7.871]],["name/2403",[129,50.079]],["parent/2403",[1248,4.083]],["name/2404",[117,16.899]],["parent/2404",[1256,7.871]],["name/2405",[401,51.28]],["parent/2405",[1248,4.083]],["name/2406",[117,16.899]],["parent/2406",[1257,7.871]],["name/2407",[131,50.079]],["parent/2407",[1248,4.083]],["name/2408",[117,16.899]],["parent/2408",[1258,7.871]],["name/2409",[133,50.079]],["parent/2409",[1248,4.083]],["name/2410",[117,16.899]],["parent/2410",[1259,7.871]],["name/2411",[135,50.079]],["parent/2411",[1248,4.083]],["name/2412",[117,16.899]],["parent/2412",[1260,7.871]],["name/2413",[137,50.079]],["parent/2413",[1248,4.083]],["name/2414",[117,16.899]],["parent/2414",[1261,7.871]],["name/2415",[139,50.079]],["parent/2415",[1248,4.083]],["name/2416",[117,16.899]],["parent/2416",[1262,7.871]],["name/2417",[141,50.079]],["parent/2417",[1248,4.083]],["name/2418",[117,16.899]],["parent/2418",[1263,7.871]],["name/2419",[143,50.079]],["parent/2419",[1248,4.083]],["name/2420",[117,16.899]],["parent/2420",[1264,7.871]],["name/2421",[145,50.079]],["parent/2421",[1248,4.083]],["name/2422",[117,16.899]],["parent/2422",[1265,7.871]],["name/2423",[147,50.079]],["parent/2423",[1248,4.083]],["name/2424",[117,16.899]],["parent/2424",[1266,7.871]],["name/2425",[183,50.079]],["parent/2425",[1248,4.083]],["name/2426",[117,16.899]],["parent/2426",[1267,7.871]],["name/2427",[149,50.079]],["parent/2427",[1248,4.083]],["name/2428",[117,16.899]],["parent/2428",[1268,7.871]],["name/2429",[413,51.28]],["parent/2429",[1248,4.083]],["name/2430",[117,16.899]],["parent/2430",[1269,7.871]],["name/2431",[415,51.28]],["parent/2431",[1248,4.083]],["name/2432",[117,16.899]],["parent/2432",[1270,7.871]],["name/2433",[417,51.28]],["parent/2433",[1248,4.083]],["name/2434",[418,51.28]],["parent/2434",[1248,4.083]],["name/2435",[151,50.463]],["parent/2435",[1248,4.083]],["name/2436",[152,50.463]],["parent/2436",[1248,4.083]],["name/2437",[153,50.463]],["parent/2437",[1248,4.083]],["name/2438",[154,51.28]],["parent/2438",[1248,4.083]],["name/2439",[155,51.28]],["parent/2439",[1248,4.083]],["name/2440",[156,50.463]],["parent/2440",[1248,4.083]],["name/2441",[157,50.463]],["parent/2441",[1248,4.083]],["name/2442",[158,50.463]],["parent/2442",[1248,4.083]],["name/2443",[159,50.463]],["parent/2443",[1248,4.083]],["name/2444",[117,16.899]],["parent/2444",[1271,7.871]],["name/2445",[161,50.463]],["parent/2445",[1248,4.083]],["name/2446",[117,16.899]],["parent/2446",[1272,7.871]],["name/2447",[163,44.034]],["parent/2447",[1248,4.083]],["name/2448",[117,16.899]],["parent/2448",[1273,7.871]],["name/2449",[390,52.17]],["parent/2449",[1248,4.083]],["name/2450",[117,16.899]],["parent/2450",[1274,7.871]],["name/2451",[165,50.463]],["parent/2451",[1248,4.083]],["name/2452",[117,16.899]],["parent/2452",[1275,7.871]],["name/2453",[167,50.463]],["parent/2453",[1248,4.083]],["name/2454",[168,50.463]],["parent/2454",[1248,4.083]],["name/2455",[169,50.463]],["parent/2455",[1248,4.083]],["name/2456",[170,50.463]],["parent/2456",[1248,4.083]],["name/2457",[171,50.463]],["parent/2457",[1248,4.083]],["name/2458",[172,50.463]],["parent/2458",[1248,4.083]],["name/2459",[173,50.079]],["parent/2459",[1248,4.083]],["name/2460",[174,50.463]],["parent/2460",[1248,4.083]],["name/2461",[175,50.463]],["parent/2461",[1248,4.083]],["name/2462",[176,50.463]],["parent/2462",[1248,4.083]],["name/2463",[177,50.463]],["parent/2463",[1248,4.083]],["name/2464",[178,50.463]],["parent/2464",[1248,4.083]],["name/2465",[179,50.463]],["parent/2465",[1248,4.083]],["name/2466",[180,50.463]],["parent/2466",[1248,4.083]],["name/2467",[181,50.463]],["parent/2467",[1248,4.083]],["name/2468",[182,50.463]],["parent/2468",[1248,4.083]],["name/2469",[184,50.463]],["parent/2469",[1248,4.083]],["name/2470",[185,50.463]],["parent/2470",[1248,4.083]],["name/2471",[186,51.28]],["parent/2471",[1248,4.083]],["name/2472",[187,51.28]],["parent/2472",[1248,4.083]],["name/2473",[117,16.899]],["parent/2473",[1276,7.871]],["name/2474",[189,51.28]],["parent/2474",[1277,5.259]],["name/2475",[191,42.868]],["parent/2475",[1277,5.259]],["name/2476",[192,50.079]],["parent/2476",[1277,5.259]],["name/2477",[193,44.243]],["parent/2477",[1277,5.259]],["name/2478",[194,51.28]],["parent/2478",[1277,5.259]],["name/2479",[195,51.28]],["parent/2479",[1277,5.259]],["name/2480",[196,51.28]],["parent/2480",[1277,5.259]],["name/2481",[197,50.463]],["parent/2481",[1277,5.259]],["name/2482",[198,51.28]],["parent/2482",[1277,5.259]],["name/2483",[199,50.463]],["parent/2483",[1277,5.259]],["name/2484",[200,51.28]],["parent/2484",[1277,5.259]],["name/2485",[201,51.28]],["parent/2485",[1277,5.259]],["name/2486",[202,51.28]],["parent/2486",[1277,5.259]],["name/2487",[203,51.28]],["parent/2487",[1277,5.259]],["name/2488",[163,44.034]],["parent/2488",[1277,5.259]],["name/2489",[204,51.28]],["parent/2489",[1277,5.259]],["name/2490",[205,51.28]],["parent/2490",[1277,5.259]],["name/2491",[206,51.28]],["parent/2491",[1277,5.259]],["name/2492",[207,48.038]],["parent/2492",[1277,5.259]],["name/2493",[208,51.28]],["parent/2493",[1277,5.259]],["name/2494",[209,51.28]],["parent/2494",[1248,4.083]],["name/2495",[117,16.899]],["parent/2495",[1278,7.871]],["name/2496",[193,44.243]],["parent/2496",[1279,6.573]],["name/2497",[212,51.28]],["parent/2497",[1279,6.573]],["name/2498",[191,42.868]],["parent/2498",[1279,6.573]],["name/2499",[213,51.28]],["parent/2499",[1279,6.573]],["name/2500",[214,49.006]],["parent/2500",[1279,6.573]],["name/2501",[1280,78.795]],["parent/2501",[1248,4.083]],["name/2502",[117,16.899]],["parent/2502",[1281,7.871]],["name/2503",[1282,78.795]],["parent/2503",[1248,4.083]],["name/2504",[117,16.899]],["parent/2504",[1283,7.871]],["name/2505",[1284,73.687]],["parent/2505",[1248,4.083]],["name/2506",[117,16.899]],["parent/2506",[1285,7.871]],["name/2507",[215,50.079]],["parent/2507",[1208,5.041]],["name/2508",[216,50.079]],["parent/2508",[1208,5.041]],["name/2509",[1286,78.795]],["parent/2509",[1208,5.041]],["name/2510",[2,50.079]],["parent/2510",[1287,3.93]],["name/2511",[1288,78.795]],["parent/2511",[1287,3.93]],["name/2512",[1289,78.795]],["parent/2512",[1287,3.93]],["name/2513",[1290,78.795]],["parent/2513",[1287,3.93]],["name/2514",[1291,78.795]],["parent/2514",[1287,3.93]],["name/2515",[1292,78.795]],["parent/2515",[1287,3.93]],["name/2516",[1293,78.795]],["parent/2516",[1287,3.93]],["name/2517",[1294,78.795]],["parent/2517",[1287,3.93]],["name/2518",[1295,78.795]],["parent/2518",[1287,3.93]],["name/2519",[1296,78.795]],["parent/2519",[1287,3.93]],["name/2520",[52,49.351]],["parent/2520",[1287,3.93]],["name/2521",[1297,78.795]],["parent/2521",[1287,3.93]],["name/2522",[1298,78.795]],["parent/2522",[1287,3.93]],["name/2523",[1299,78.795]],["parent/2523",[1287,3.93]],["name/2524",[1300,78.795]],["parent/2524",[1287,3.93]],["name/2525",[1301,78.795]],["parent/2525",[1287,3.93]],["name/2526",[1302,78.795]],["parent/2526",[1287,3.93]],["name/2527",[1303,78.795]],["parent/2527",[1287,3.93]],["name/2528",[1304,78.795]],["parent/2528",[1287,3.93]],["name/2529",[1305,78.795]],["parent/2529",[1287,3.93]],["name/2530",[1306,78.795]],["parent/2530",[1287,3.93]],["name/2531",[1307,78.795]],["parent/2531",[1287,3.93]],["name/2532",[1308,78.795]],["parent/2532",[1287,3.93]],["name/2533",[117,16.899]],["parent/2533",[1309,7.871]],["name/2534",[93,50.079]],["parent/2534",[1287,3.93]],["name/2535",[397,51.28]],["parent/2535",[1287,3.93]],["name/2536",[398,51.28]],["parent/2536",[1287,3.93]],["name/2537",[117,16.899]],["parent/2537",[1310,7.871]],["name/2538",[129,50.079]],["parent/2538",[1287,3.93]],["name/2539",[117,16.899]],["parent/2539",[1311,7.871]],["name/2540",[401,51.28]],["parent/2540",[1287,3.93]],["name/2541",[117,16.899]],["parent/2541",[1312,7.871]],["name/2542",[131,50.079]],["parent/2542",[1287,3.93]],["name/2543",[117,16.899]],["parent/2543",[1313,7.871]],["name/2544",[133,50.079]],["parent/2544",[1287,3.93]],["name/2545",[117,16.899]],["parent/2545",[1314,7.871]],["name/2546",[135,50.079]],["parent/2546",[1287,3.93]],["name/2547",[117,16.899]],["parent/2547",[1315,7.871]],["name/2548",[137,50.079]],["parent/2548",[1287,3.93]],["name/2549",[117,16.899]],["parent/2549",[1316,7.871]],["name/2550",[139,50.079]],["parent/2550",[1287,3.93]],["name/2551",[117,16.899]],["parent/2551",[1317,7.871]],["name/2552",[141,50.079]],["parent/2552",[1287,3.93]],["name/2553",[117,16.899]],["parent/2553",[1318,7.871]],["name/2554",[143,50.079]],["parent/2554",[1287,3.93]],["name/2555",[117,16.899]],["parent/2555",[1319,7.871]],["name/2556",[145,50.079]],["parent/2556",[1287,3.93]],["name/2557",[117,16.899]],["parent/2557",[1320,7.871]],["name/2558",[147,50.079]],["parent/2558",[1287,3.93]],["name/2559",[117,16.899]],["parent/2559",[1321,7.871]],["name/2560",[183,50.079]],["parent/2560",[1287,3.93]],["name/2561",[117,16.899]],["parent/2561",[1322,7.871]],["name/2562",[149,50.079]],["parent/2562",[1287,3.93]],["name/2563",[117,16.899]],["parent/2563",[1323,7.871]],["name/2564",[413,51.28]],["parent/2564",[1287,3.93]],["name/2565",[117,16.899]],["parent/2565",[1324,7.871]],["name/2566",[415,51.28]],["parent/2566",[1287,3.93]],["name/2567",[117,16.899]],["parent/2567",[1325,7.871]],["name/2568",[417,51.28]],["parent/2568",[1287,3.93]],["name/2569",[418,51.28]],["parent/2569",[1287,3.93]],["name/2570",[151,50.463]],["parent/2570",[1287,3.93]],["name/2571",[152,50.463]],["parent/2571",[1287,3.93]],["name/2572",[153,50.463]],["parent/2572",[1287,3.93]],["name/2573",[154,51.28]],["parent/2573",[1287,3.93]],["name/2574",[155,51.28]],["parent/2574",[1287,3.93]],["name/2575",[156,50.463]],["parent/2575",[1287,3.93]],["name/2576",[157,50.463]],["parent/2576",[1287,3.93]],["name/2577",[158,50.463]],["parent/2577",[1287,3.93]],["name/2578",[159,50.463]],["parent/2578",[1287,3.93]],["name/2579",[117,16.899]],["parent/2579",[1326,7.871]],["name/2580",[161,50.463]],["parent/2580",[1287,3.93]],["name/2581",[117,16.899]],["parent/2581",[1327,7.871]],["name/2582",[163,44.034]],["parent/2582",[1287,3.93]],["name/2583",[117,16.899]],["parent/2583",[1328,7.871]],["name/2584",[390,52.17]],["parent/2584",[1287,3.93]],["name/2585",[117,16.899]],["parent/2585",[1329,7.871]],["name/2586",[165,50.463]],["parent/2586",[1287,3.93]],["name/2587",[117,16.899]],["parent/2587",[1330,7.871]],["name/2588",[167,50.463]],["parent/2588",[1287,3.93]],["name/2589",[168,50.463]],["parent/2589",[1287,3.93]],["name/2590",[169,50.463]],["parent/2590",[1287,3.93]],["name/2591",[170,50.463]],["parent/2591",[1287,3.93]],["name/2592",[171,50.463]],["parent/2592",[1287,3.93]],["name/2593",[172,50.463]],["parent/2593",[1287,3.93]],["name/2594",[173,50.079]],["parent/2594",[1287,3.93]],["name/2595",[174,50.463]],["parent/2595",[1287,3.93]],["name/2596",[175,50.463]],["parent/2596",[1287,3.93]],["name/2597",[176,50.463]],["parent/2597",[1287,3.93]],["name/2598",[177,50.463]],["parent/2598",[1287,3.93]],["name/2599",[178,50.463]],["parent/2599",[1287,3.93]],["name/2600",[179,50.463]],["parent/2600",[1287,3.93]],["name/2601",[180,50.463]],["parent/2601",[1287,3.93]],["name/2602",[181,50.463]],["parent/2602",[1287,3.93]],["name/2603",[182,50.463]],["parent/2603",[1287,3.93]],["name/2604",[184,50.463]],["parent/2604",[1287,3.93]],["name/2605",[185,50.463]],["parent/2605",[1287,3.93]],["name/2606",[186,51.28]],["parent/2606",[1287,3.93]],["name/2607",[187,51.28]],["parent/2607",[1287,3.93]],["name/2608",[117,16.899]],["parent/2608",[1331,7.871]],["name/2609",[189,51.28]],["parent/2609",[1332,5.259]],["name/2610",[191,42.868]],["parent/2610",[1332,5.259]],["name/2611",[192,50.079]],["parent/2611",[1332,5.259]],["name/2612",[193,44.243]],["parent/2612",[1332,5.259]],["name/2613",[194,51.28]],["parent/2613",[1332,5.259]],["name/2614",[195,51.28]],["parent/2614",[1332,5.259]],["name/2615",[196,51.28]],["parent/2615",[1332,5.259]],["name/2616",[197,50.463]],["parent/2616",[1332,5.259]],["name/2617",[198,51.28]],["parent/2617",[1332,5.259]],["name/2618",[199,50.463]],["parent/2618",[1332,5.259]],["name/2619",[200,51.28]],["parent/2619",[1332,5.259]],["name/2620",[201,51.28]],["parent/2620",[1332,5.259]],["name/2621",[202,51.28]],["parent/2621",[1332,5.259]],["name/2622",[203,51.28]],["parent/2622",[1332,5.259]],["name/2623",[163,44.034]],["parent/2623",[1332,5.259]],["name/2624",[204,51.28]],["parent/2624",[1332,5.259]],["name/2625",[205,51.28]],["parent/2625",[1332,5.259]],["name/2626",[206,51.28]],["parent/2626",[1332,5.259]],["name/2627",[207,48.038]],["parent/2627",[1332,5.259]],["name/2628",[208,51.28]],["parent/2628",[1332,5.259]],["name/2629",[209,51.28]],["parent/2629",[1287,3.93]],["name/2630",[117,16.899]],["parent/2630",[1333,7.871]],["name/2631",[193,44.243]],["parent/2631",[1334,6.573]],["name/2632",[212,51.28]],["parent/2632",[1334,6.573]],["name/2633",[191,42.868]],["parent/2633",[1334,6.573]],["name/2634",[213,51.28]],["parent/2634",[1334,6.573]],["name/2635",[214,49.006]],["parent/2635",[1334,6.573]],["name/2636",[215,50.079]],["parent/2636",[1208,5.041]],["name/2637",[216,50.079]],["parent/2637",[1208,5.041]],["name/2638",[1335,73.687]],["parent/2638",[1208,5.041]],["name/2639",[2,50.079]],["parent/2639",[1336,3.983]],["name/2640",[1337,78.795]],["parent/2640",[1336,3.983]],["name/2641",[1338,78.795]],["parent/2641",[1336,3.983]],["name/2642",[1339,78.795]],["parent/2642",[1336,3.983]],["name/2643",[1340,73.687]],["parent/2643",[1336,3.983]],["name/2644",[1341,78.795]],["parent/2644",[1336,3.983]],["name/2645",[52,49.351]],["parent/2645",[1336,3.983]],["name/2646",[151,50.463]],["parent/2646",[1336,3.983]],["name/2647",[1342,73.687]],["parent/2647",[1336,3.983]],["name/2648",[1343,78.795]],["parent/2648",[1336,3.983]],["name/2649",[1344,78.795]],["parent/2649",[1336,3.983]],["name/2650",[1335,73.687]],["parent/2650",[1336,3.983]],["name/2651",[93,50.079]],["parent/2651",[1336,3.983]],["name/2652",[397,51.28]],["parent/2652",[1336,3.983]],["name/2653",[398,51.28]],["parent/2653",[1336,3.983]],["name/2654",[117,16.899]],["parent/2654",[1345,7.871]],["name/2655",[129,50.079]],["parent/2655",[1336,3.983]],["name/2656",[117,16.899]],["parent/2656",[1346,7.871]],["name/2657",[401,51.28]],["parent/2657",[1336,3.983]],["name/2658",[117,16.899]],["parent/2658",[1347,7.871]],["name/2659",[131,50.079]],["parent/2659",[1336,3.983]],["name/2660",[117,16.899]],["parent/2660",[1348,7.871]],["name/2661",[133,50.079]],["parent/2661",[1336,3.983]],["name/2662",[117,16.899]],["parent/2662",[1349,7.871]],["name/2663",[135,50.079]],["parent/2663",[1336,3.983]],["name/2664",[117,16.899]],["parent/2664",[1350,7.871]],["name/2665",[137,50.079]],["parent/2665",[1336,3.983]],["name/2666",[117,16.899]],["parent/2666",[1351,7.871]],["name/2667",[139,50.079]],["parent/2667",[1336,3.983]],["name/2668",[117,16.899]],["parent/2668",[1352,7.871]],["name/2669",[141,50.079]],["parent/2669",[1336,3.983]],["name/2670",[117,16.899]],["parent/2670",[1353,7.871]],["name/2671",[143,50.079]],["parent/2671",[1336,3.983]],["name/2672",[117,16.899]],["parent/2672",[1354,7.871]],["name/2673",[145,50.079]],["parent/2673",[1336,3.983]],["name/2674",[117,16.899]],["parent/2674",[1355,7.871]],["name/2675",[147,50.079]],["parent/2675",[1336,3.983]],["name/2676",[117,16.899]],["parent/2676",[1356,7.871]],["name/2677",[183,50.079]],["parent/2677",[1336,3.983]],["name/2678",[117,16.899]],["parent/2678",[1357,7.871]],["name/2679",[149,50.079]],["parent/2679",[1336,3.983]],["name/2680",[117,16.899]],["parent/2680",[1358,7.871]],["name/2681",[413,51.28]],["parent/2681",[1336,3.983]],["name/2682",[117,16.899]],["parent/2682",[1359,7.871]],["name/2683",[415,51.28]],["parent/2683",[1336,3.983]],["name/2684",[117,16.899]],["parent/2684",[1360,7.871]],["name/2685",[417,51.28]],["parent/2685",[1336,3.983]],["name/2686",[418,51.28]],["parent/2686",[1336,3.983]],["name/2687",[152,50.463]],["parent/2687",[1336,3.983]],["name/2688",[153,50.463]],["parent/2688",[1336,3.983]],["name/2689",[154,51.28]],["parent/2689",[1336,3.983]],["name/2690",[155,51.28]],["parent/2690",[1336,3.983]],["name/2691",[156,50.463]],["parent/2691",[1336,3.983]],["name/2692",[157,50.463]],["parent/2692",[1336,3.983]],["name/2693",[158,50.463]],["parent/2693",[1336,3.983]],["name/2694",[159,50.463]],["parent/2694",[1336,3.983]],["name/2695",[117,16.899]],["parent/2695",[1361,7.871]],["name/2696",[161,50.463]],["parent/2696",[1336,3.983]],["name/2697",[117,16.899]],["parent/2697",[1362,7.871]],["name/2698",[163,44.034]],["parent/2698",[1336,3.983]],["name/2699",[117,16.899]],["parent/2699",[1363,7.871]],["name/2700",[390,52.17]],["parent/2700",[1336,3.983]],["name/2701",[117,16.899]],["parent/2701",[1364,7.871]],["name/2702",[165,50.463]],["parent/2702",[1336,3.983]],["name/2703",[117,16.899]],["parent/2703",[1365,7.871]],["name/2704",[167,50.463]],["parent/2704",[1336,3.983]],["name/2705",[168,50.463]],["parent/2705",[1336,3.983]],["name/2706",[169,50.463]],["parent/2706",[1336,3.983]],["name/2707",[170,50.463]],["parent/2707",[1336,3.983]],["name/2708",[171,50.463]],["parent/2708",[1336,3.983]],["name/2709",[172,50.463]],["parent/2709",[1336,3.983]],["name/2710",[173,50.079]],["parent/2710",[1336,3.983]],["name/2711",[174,50.463]],["parent/2711",[1336,3.983]],["name/2712",[175,50.463]],["parent/2712",[1336,3.983]],["name/2713",[176,50.463]],["parent/2713",[1336,3.983]],["name/2714",[177,50.463]],["parent/2714",[1336,3.983]],["name/2715",[178,50.463]],["parent/2715",[1336,3.983]],["name/2716",[179,50.463]],["parent/2716",[1336,3.983]],["name/2717",[180,50.463]],["parent/2717",[1336,3.983]],["name/2718",[181,50.463]],["parent/2718",[1336,3.983]],["name/2719",[182,50.463]],["parent/2719",[1336,3.983]],["name/2720",[184,50.463]],["parent/2720",[1336,3.983]],["name/2721",[185,50.463]],["parent/2721",[1336,3.983]],["name/2722",[186,51.28]],["parent/2722",[1336,3.983]],["name/2723",[187,51.28]],["parent/2723",[1336,3.983]],["name/2724",[117,16.899]],["parent/2724",[1366,7.871]],["name/2725",[189,51.28]],["parent/2725",[1367,5.259]],["name/2726",[191,42.868]],["parent/2726",[1367,5.259]],["name/2727",[192,50.079]],["parent/2727",[1367,5.259]],["name/2728",[193,44.243]],["parent/2728",[1367,5.259]],["name/2729",[194,51.28]],["parent/2729",[1367,5.259]],["name/2730",[195,51.28]],["parent/2730",[1367,5.259]],["name/2731",[196,51.28]],["parent/2731",[1367,5.259]],["name/2732",[197,50.463]],["parent/2732",[1367,5.259]],["name/2733",[198,51.28]],["parent/2733",[1367,5.259]],["name/2734",[199,50.463]],["parent/2734",[1367,5.259]],["name/2735",[200,51.28]],["parent/2735",[1367,5.259]],["name/2736",[201,51.28]],["parent/2736",[1367,5.259]],["name/2737",[202,51.28]],["parent/2737",[1367,5.259]],["name/2738",[203,51.28]],["parent/2738",[1367,5.259]],["name/2739",[163,44.034]],["parent/2739",[1367,5.259]],["name/2740",[204,51.28]],["parent/2740",[1367,5.259]],["name/2741",[205,51.28]],["parent/2741",[1367,5.259]],["name/2742",[206,51.28]],["parent/2742",[1367,5.259]],["name/2743",[207,48.038]],["parent/2743",[1367,5.259]],["name/2744",[208,51.28]],["parent/2744",[1367,5.259]],["name/2745",[209,51.28]],["parent/2745",[1336,3.983]],["name/2746",[117,16.899]],["parent/2746",[1368,7.871]],["name/2747",[193,44.243]],["parent/2747",[1369,6.573]],["name/2748",[212,51.28]],["parent/2748",[1369,6.573]],["name/2749",[191,42.868]],["parent/2749",[1369,6.573]],["name/2750",[213,51.28]],["parent/2750",[1369,6.573]],["name/2751",[214,49.006]],["parent/2751",[1369,6.573]],["name/2752",[1370,78.795]],["parent/2752",[1336,3.983]],["name/2753",[117,16.899]],["parent/2753",[1371,7.871]],["name/2754",[1372,78.795]],["parent/2754",[1336,3.983]],["name/2755",[117,16.899]],["parent/2755",[1373,7.871]],["name/2756",[1374,78.795]],["parent/2756",[1336,3.983]],["name/2757",[117,16.899]],["parent/2757",[1375,7.871]],["name/2758",[1376,78.795]],["parent/2758",[1336,3.983]],["name/2759",[117,16.899]],["parent/2759",[1377,7.871]],["name/2760",[1378,78.795]],["parent/2760",[1336,3.983]],["name/2761",[117,16.899]],["parent/2761",[1379,7.871]],["name/2762",[1380,78.795]],["parent/2762",[1336,3.983]],["name/2763",[117,16.899]],["parent/2763",[1381,7.871]],["name/2764",[1382,78.795]],["parent/2764",[1336,3.983]],["name/2765",[117,16.899]],["parent/2765",[1383,7.871]],["name/2766",[1384,78.795]],["parent/2766",[1336,3.983]],["name/2767",[117,16.899]],["parent/2767",[1385,7.871]],["name/2768",[215,50.079]],["parent/2768",[1208,5.041]],["name/2769",[216,50.079]],["parent/2769",[1208,5.041]],["name/2770",[1386,78.795]],["parent/2770",[1208,5.041]],["name/2771",[2,50.079]],["parent/2771",[1387,3.983]],["name/2772",[1388,78.795]],["parent/2772",[1387,3.983]],["name/2773",[1389,78.795]],["parent/2773",[1387,3.983]],["name/2774",[1390,78.795]],["parent/2774",[1387,3.983]],["name/2775",[1391,78.795]],["parent/2775",[1387,3.983]],["name/2776",[1392,78.795]],["parent/2776",[1387,3.983]],["name/2777",[52,49.351]],["parent/2777",[1387,3.983]],["name/2778",[1393,78.795]],["parent/2778",[1387,3.983]],["name/2779",[1212,73.687]],["parent/2779",[1387,3.983]],["name/2780",[1213,70.322]],["parent/2780",[1387,3.983]],["name/2781",[1214,73.687]],["parent/2781",[1387,3.983]],["name/2782",[1215,73.687]],["parent/2782",[1387,3.983]],["name/2783",[1216,70.322]],["parent/2783",[1387,3.983]],["name/2784",[1217,73.687]],["parent/2784",[1387,3.983]],["name/2785",[1218,73.687]],["parent/2785",[1387,3.983]],["name/2786",[1220,73.687]],["parent/2786",[1387,3.983]],["name/2787",[1221,73.687]],["parent/2787",[1387,3.983]],["name/2788",[1394,73.687]],["parent/2788",[1387,3.983]],["name/2789",[117,16.899]],["parent/2789",[1395,7.871]],["name/2790",[1396,78.795]],["parent/2790",[1387,3.983]],["name/2791",[117,16.899]],["parent/2791",[1397,7.871]],["name/2792",[93,50.079]],["parent/2792",[1387,3.983]],["name/2793",[397,51.28]],["parent/2793",[1387,3.983]],["name/2794",[398,51.28]],["parent/2794",[1387,3.983]],["name/2795",[117,16.899]],["parent/2795",[1398,7.871]],["name/2796",[129,50.079]],["parent/2796",[1387,3.983]],["name/2797",[117,16.899]],["parent/2797",[1399,7.871]],["name/2798",[401,51.28]],["parent/2798",[1387,3.983]],["name/2799",[117,16.899]],["parent/2799",[1400,7.871]],["name/2800",[131,50.079]],["parent/2800",[1387,3.983]],["name/2801",[117,16.899]],["parent/2801",[1401,7.871]],["name/2802",[133,50.079]],["parent/2802",[1387,3.983]],["name/2803",[117,16.899]],["parent/2803",[1402,7.871]],["name/2804",[135,50.079]],["parent/2804",[1387,3.983]],["name/2805",[117,16.899]],["parent/2805",[1403,7.871]],["name/2806",[137,50.079]],["parent/2806",[1387,3.983]],["name/2807",[117,16.899]],["parent/2807",[1404,7.871]],["name/2808",[139,50.079]],["parent/2808",[1387,3.983]],["name/2809",[117,16.899]],["parent/2809",[1405,7.871]],["name/2810",[141,50.079]],["parent/2810",[1387,3.983]],["name/2811",[117,16.899]],["parent/2811",[1406,7.871]],["name/2812",[143,50.079]],["parent/2812",[1387,3.983]],["name/2813",[117,16.899]],["parent/2813",[1407,7.871]],["name/2814",[145,50.079]],["parent/2814",[1387,3.983]],["name/2815",[117,16.899]],["parent/2815",[1408,7.871]],["name/2816",[147,50.079]],["parent/2816",[1387,3.983]],["name/2817",[117,16.899]],["parent/2817",[1409,7.871]],["name/2818",[183,50.079]],["parent/2818",[1387,3.983]],["name/2819",[117,16.899]],["parent/2819",[1410,7.871]],["name/2820",[149,50.079]],["parent/2820",[1387,3.983]],["name/2821",[117,16.899]],["parent/2821",[1411,7.871]],["name/2822",[413,51.28]],["parent/2822",[1387,3.983]],["name/2823",[117,16.899]],["parent/2823",[1412,7.871]],["name/2824",[415,51.28]],["parent/2824",[1387,3.983]],["name/2825",[117,16.899]],["parent/2825",[1413,7.871]],["name/2826",[417,51.28]],["parent/2826",[1387,3.983]],["name/2827",[418,51.28]],["parent/2827",[1387,3.983]],["name/2828",[151,50.463]],["parent/2828",[1387,3.983]],["name/2829",[152,50.463]],["parent/2829",[1387,3.983]],["name/2830",[153,50.463]],["parent/2830",[1387,3.983]],["name/2831",[154,51.28]],["parent/2831",[1387,3.983]],["name/2832",[155,51.28]],["parent/2832",[1387,3.983]],["name/2833",[156,50.463]],["parent/2833",[1387,3.983]],["name/2834",[157,50.463]],["parent/2834",[1387,3.983]],["name/2835",[158,50.463]],["parent/2835",[1387,3.983]],["name/2836",[159,50.463]],["parent/2836",[1387,3.983]],["name/2837",[117,16.899]],["parent/2837",[1414,7.871]],["name/2838",[161,50.463]],["parent/2838",[1387,3.983]],["name/2839",[117,16.899]],["parent/2839",[1415,7.871]],["name/2840",[163,44.034]],["parent/2840",[1387,3.983]],["name/2841",[117,16.899]],["parent/2841",[1416,7.871]],["name/2842",[390,52.17]],["parent/2842",[1387,3.983]],["name/2843",[117,16.899]],["parent/2843",[1417,7.871]],["name/2844",[165,50.463]],["parent/2844",[1387,3.983]],["name/2845",[117,16.899]],["parent/2845",[1418,7.871]],["name/2846",[167,50.463]],["parent/2846",[1387,3.983]],["name/2847",[168,50.463]],["parent/2847",[1387,3.983]],["name/2848",[169,50.463]],["parent/2848",[1387,3.983]],["name/2849",[170,50.463]],["parent/2849",[1387,3.983]],["name/2850",[171,50.463]],["parent/2850",[1387,3.983]],["name/2851",[172,50.463]],["parent/2851",[1387,3.983]],["name/2852",[173,50.079]],["parent/2852",[1387,3.983]],["name/2853",[174,50.463]],["parent/2853",[1387,3.983]],["name/2854",[175,50.463]],["parent/2854",[1387,3.983]],["name/2855",[176,50.463]],["parent/2855",[1387,3.983]],["name/2856",[177,50.463]],["parent/2856",[1387,3.983]],["name/2857",[178,50.463]],["parent/2857",[1387,3.983]],["name/2858",[179,50.463]],["parent/2858",[1387,3.983]],["name/2859",[180,50.463]],["parent/2859",[1387,3.983]],["name/2860",[181,50.463]],["parent/2860",[1387,3.983]],["name/2861",[182,50.463]],["parent/2861",[1387,3.983]],["name/2862",[184,50.463]],["parent/2862",[1387,3.983]],["name/2863",[185,50.463]],["parent/2863",[1387,3.983]],["name/2864",[186,51.28]],["parent/2864",[1387,3.983]],["name/2865",[187,51.28]],["parent/2865",[1387,3.983]],["name/2866",[117,16.899]],["parent/2866",[1419,7.871]],["name/2867",[189,51.28]],["parent/2867",[1420,5.259]],["name/2868",[191,42.868]],["parent/2868",[1420,5.259]],["name/2869",[192,50.079]],["parent/2869",[1420,5.259]],["name/2870",[193,44.243]],["parent/2870",[1420,5.259]],["name/2871",[194,51.28]],["parent/2871",[1420,5.259]],["name/2872",[195,51.28]],["parent/2872",[1420,5.259]],["name/2873",[196,51.28]],["parent/2873",[1420,5.259]],["name/2874",[197,50.463]],["parent/2874",[1420,5.259]],["name/2875",[198,51.28]],["parent/2875",[1420,5.259]],["name/2876",[199,50.463]],["parent/2876",[1420,5.259]],["name/2877",[200,51.28]],["parent/2877",[1420,5.259]],["name/2878",[201,51.28]],["parent/2878",[1420,5.259]],["name/2879",[202,51.28]],["parent/2879",[1420,5.259]],["name/2880",[203,51.28]],["parent/2880",[1420,5.259]],["name/2881",[163,44.034]],["parent/2881",[1420,5.259]],["name/2882",[204,51.28]],["parent/2882",[1420,5.259]],["name/2883",[205,51.28]],["parent/2883",[1420,5.259]],["name/2884",[206,51.28]],["parent/2884",[1420,5.259]],["name/2885",[207,48.038]],["parent/2885",[1420,5.259]],["name/2886",[208,51.28]],["parent/2886",[1420,5.259]],["name/2887",[209,51.28]],["parent/2887",[1387,3.983]],["name/2888",[117,16.899]],["parent/2888",[1421,7.871]],["name/2889",[193,44.243]],["parent/2889",[1422,6.573]],["name/2890",[212,51.28]],["parent/2890",[1422,6.573]],["name/2891",[191,42.868]],["parent/2891",[1422,6.573]],["name/2892",[213,51.28]],["parent/2892",[1422,6.573]],["name/2893",[214,49.006]],["parent/2893",[1422,6.573]],["name/2894",[215,50.079]],["parent/2894",[1208,5.041]],["name/2895",[216,50.079]],["parent/2895",[1208,5.041]],["name/2896",[1423,78.795]],["parent/2896",[1208,5.041]],["name/2897",[2,50.079]],["parent/2897",[1424,4.178]],["name/2898",[1340,73.687]],["parent/2898",[1424,4.178]],["name/2899",[52,49.351]],["parent/2899",[1424,4.178]],["name/2900",[1342,73.687]],["parent/2900",[1424,4.178]],["name/2901",[1425,78.795]],["parent/2901",[1424,4.178]],["name/2902",[625,62.701]],["parent/2902",[1424,4.178]],["name/2903",[117,16.899]],["parent/2903",[1426,7.871]],["name/2904",[93,50.079]],["parent/2904",[1424,4.178]],["name/2905",[397,51.28]],["parent/2905",[1424,4.178]],["name/2906",[398,51.28]],["parent/2906",[1424,4.178]],["name/2907",[117,16.899]],["parent/2907",[1427,7.871]],["name/2908",[129,50.079]],["parent/2908",[1424,4.178]],["name/2909",[117,16.899]],["parent/2909",[1428,7.871]],["name/2910",[401,51.28]],["parent/2910",[1424,4.178]],["name/2911",[117,16.899]],["parent/2911",[1429,7.871]],["name/2912",[131,50.079]],["parent/2912",[1424,4.178]],["name/2913",[117,16.899]],["parent/2913",[1430,7.871]],["name/2914",[133,50.079]],["parent/2914",[1424,4.178]],["name/2915",[117,16.899]],["parent/2915",[1431,7.871]],["name/2916",[135,50.079]],["parent/2916",[1424,4.178]],["name/2917",[117,16.899]],["parent/2917",[1432,7.871]],["name/2918",[137,50.079]],["parent/2918",[1424,4.178]],["name/2919",[117,16.899]],["parent/2919",[1433,7.871]],["name/2920",[139,50.079]],["parent/2920",[1424,4.178]],["name/2921",[117,16.899]],["parent/2921",[1434,7.871]],["name/2922",[141,50.079]],["parent/2922",[1424,4.178]],["name/2923",[117,16.899]],["parent/2923",[1435,7.871]],["name/2924",[143,50.079]],["parent/2924",[1424,4.178]],["name/2925",[117,16.899]],["parent/2925",[1436,7.871]],["name/2926",[145,50.079]],["parent/2926",[1424,4.178]],["name/2927",[117,16.899]],["parent/2927",[1437,7.871]],["name/2928",[147,50.079]],["parent/2928",[1424,4.178]],["name/2929",[117,16.899]],["parent/2929",[1438,7.871]],["name/2930",[183,50.079]],["parent/2930",[1424,4.178]],["name/2931",[117,16.899]],["parent/2931",[1439,7.871]],["name/2932",[149,50.079]],["parent/2932",[1424,4.178]],["name/2933",[117,16.899]],["parent/2933",[1440,7.871]],["name/2934",[413,51.28]],["parent/2934",[1424,4.178]],["name/2935",[117,16.899]],["parent/2935",[1441,7.871]],["name/2936",[415,51.28]],["parent/2936",[1424,4.178]],["name/2937",[117,16.899]],["parent/2937",[1442,7.871]],["name/2938",[417,51.28]],["parent/2938",[1424,4.178]],["name/2939",[418,51.28]],["parent/2939",[1424,4.178]],["name/2940",[151,50.463]],["parent/2940",[1424,4.178]],["name/2941",[152,50.463]],["parent/2941",[1424,4.178]],["name/2942",[153,50.463]],["parent/2942",[1424,4.178]],["name/2943",[154,51.28]],["parent/2943",[1424,4.178]],["name/2944",[155,51.28]],["parent/2944",[1424,4.178]],["name/2945",[156,50.463]],["parent/2945",[1424,4.178]],["name/2946",[157,50.463]],["parent/2946",[1424,4.178]],["name/2947",[158,50.463]],["parent/2947",[1424,4.178]],["name/2948",[159,50.463]],["parent/2948",[1424,4.178]],["name/2949",[117,16.899]],["parent/2949",[1443,7.871]],["name/2950",[161,50.463]],["parent/2950",[1424,4.178]],["name/2951",[117,16.899]],["parent/2951",[1444,7.871]],["name/2952",[163,44.034]],["parent/2952",[1424,4.178]],["name/2953",[117,16.899]],["parent/2953",[1445,7.871]],["name/2954",[390,52.17]],["parent/2954",[1424,4.178]],["name/2955",[117,16.899]],["parent/2955",[1446,7.871]],["name/2956",[165,50.463]],["parent/2956",[1424,4.178]],["name/2957",[117,16.899]],["parent/2957",[1447,7.871]],["name/2958",[167,50.463]],["parent/2958",[1424,4.178]],["name/2959",[168,50.463]],["parent/2959",[1424,4.178]],["name/2960",[169,50.463]],["parent/2960",[1424,4.178]],["name/2961",[170,50.463]],["parent/2961",[1424,4.178]],["name/2962",[171,50.463]],["parent/2962",[1424,4.178]],["name/2963",[172,50.463]],["parent/2963",[1424,4.178]],["name/2964",[173,50.079]],["parent/2964",[1424,4.178]],["name/2965",[174,50.463]],["parent/2965",[1424,4.178]],["name/2966",[175,50.463]],["parent/2966",[1424,4.178]],["name/2967",[176,50.463]],["parent/2967",[1424,4.178]],["name/2968",[177,50.463]],["parent/2968",[1424,4.178]],["name/2969",[178,50.463]],["parent/2969",[1424,4.178]],["name/2970",[179,50.463]],["parent/2970",[1424,4.178]],["name/2971",[180,50.463]],["parent/2971",[1424,4.178]],["name/2972",[181,50.463]],["parent/2972",[1424,4.178]],["name/2973",[182,50.463]],["parent/2973",[1424,4.178]],["name/2974",[184,50.463]],["parent/2974",[1424,4.178]],["name/2975",[185,50.463]],["parent/2975",[1424,4.178]],["name/2976",[186,51.28]],["parent/2976",[1424,4.178]],["name/2977",[187,51.28]],["parent/2977",[1424,4.178]],["name/2978",[117,16.899]],["parent/2978",[1448,7.871]],["name/2979",[189,51.28]],["parent/2979",[1449,5.259]],["name/2980",[191,42.868]],["parent/2980",[1449,5.259]],["name/2981",[192,50.079]],["parent/2981",[1449,5.259]],["name/2982",[193,44.243]],["parent/2982",[1449,5.259]],["name/2983",[194,51.28]],["parent/2983",[1449,5.259]],["name/2984",[195,51.28]],["parent/2984",[1449,5.259]],["name/2985",[196,51.28]],["parent/2985",[1449,5.259]],["name/2986",[197,50.463]],["parent/2986",[1449,5.259]],["name/2987",[198,51.28]],["parent/2987",[1449,5.259]],["name/2988",[199,50.463]],["parent/2988",[1449,5.259]],["name/2989",[200,51.28]],["parent/2989",[1449,5.259]],["name/2990",[201,51.28]],["parent/2990",[1449,5.259]],["name/2991",[202,51.28]],["parent/2991",[1449,5.259]],["name/2992",[203,51.28]],["parent/2992",[1449,5.259]],["name/2993",[163,44.034]],["parent/2993",[1449,5.259]],["name/2994",[204,51.28]],["parent/2994",[1449,5.259]],["name/2995",[205,51.28]],["parent/2995",[1449,5.259]],["name/2996",[206,51.28]],["parent/2996",[1449,5.259]],["name/2997",[207,48.038]],["parent/2997",[1449,5.259]],["name/2998",[208,51.28]],["parent/2998",[1449,5.259]],["name/2999",[209,51.28]],["parent/2999",[1424,4.178]],["name/3000",[117,16.899]],["parent/3000",[1450,7.871]],["name/3001",[193,44.243]],["parent/3001",[1451,6.573]],["name/3002",[212,51.28]],["parent/3002",[1451,6.573]],["name/3003",[191,42.868]],["parent/3003",[1451,6.573]],["name/3004",[213,51.28]],["parent/3004",[1451,6.573]],["name/3005",[214,49.006]],["parent/3005",[1451,6.573]],["name/3006",[215,50.079]],["parent/3006",[1208,5.041]],["name/3007",[216,50.079]],["parent/3007",[1208,5.041]],["name/3008",[1452,78.795]],["parent/3008",[1208,5.041]],["name/3009",[2,50.079]],["parent/3009",[1453,4.145]],["name/3010",[1454,78.795]],["parent/3010",[1453,4.145]],["name/3011",[1455,78.795]],["parent/3011",[1453,4.145]],["name/3012",[52,49.351]],["parent/3012",[1453,4.145]],["name/3013",[1216,70.322]],["parent/3013",[1453,4.145]],["name/3014",[1456,78.795]],["parent/3014",[1453,4.145]],["name/3015",[418,51.28]],["parent/3015",[1453,4.145]],["name/3016",[1394,73.687]],["parent/3016",[1453,4.145]],["name/3017",[117,16.899]],["parent/3017",[1457,7.871]],["name/3018",[241,57.593]],["parent/3018",[1453,4.145]],["name/3019",[117,16.899]],["parent/3019",[1458,7.871]],["name/3020",[93,50.079]],["parent/3020",[1453,4.145]],["name/3021",[397,51.28]],["parent/3021",[1453,4.145]],["name/3022",[398,51.28]],["parent/3022",[1453,4.145]],["name/3023",[117,16.899]],["parent/3023",[1459,7.871]],["name/3024",[129,50.079]],["parent/3024",[1453,4.145]],["name/3025",[117,16.899]],["parent/3025",[1460,7.871]],["name/3026",[401,51.28]],["parent/3026",[1453,4.145]],["name/3027",[117,16.899]],["parent/3027",[1461,7.871]],["name/3028",[131,50.079]],["parent/3028",[1453,4.145]],["name/3029",[117,16.899]],["parent/3029",[1462,7.871]],["name/3030",[133,50.079]],["parent/3030",[1453,4.145]],["name/3031",[117,16.899]],["parent/3031",[1463,7.871]],["name/3032",[135,50.079]],["parent/3032",[1453,4.145]],["name/3033",[117,16.899]],["parent/3033",[1464,7.871]],["name/3034",[137,50.079]],["parent/3034",[1453,4.145]],["name/3035",[117,16.899]],["parent/3035",[1465,7.871]],["name/3036",[139,50.079]],["parent/3036",[1453,4.145]],["name/3037",[117,16.899]],["parent/3037",[1466,7.871]],["name/3038",[141,50.079]],["parent/3038",[1453,4.145]],["name/3039",[117,16.899]],["parent/3039",[1467,7.871]],["name/3040",[143,50.079]],["parent/3040",[1453,4.145]],["name/3041",[117,16.899]],["parent/3041",[1468,7.871]],["name/3042",[145,50.079]],["parent/3042",[1453,4.145]],["name/3043",[117,16.899]],["parent/3043",[1469,7.871]],["name/3044",[147,50.079]],["parent/3044",[1453,4.145]],["name/3045",[117,16.899]],["parent/3045",[1470,7.871]],["name/3046",[183,50.079]],["parent/3046",[1453,4.145]],["name/3047",[117,16.899]],["parent/3047",[1471,7.871]],["name/3048",[149,50.079]],["parent/3048",[1453,4.145]],["name/3049",[117,16.899]],["parent/3049",[1472,7.871]],["name/3050",[413,51.28]],["parent/3050",[1453,4.145]],["name/3051",[117,16.899]],["parent/3051",[1473,7.871]],["name/3052",[415,51.28]],["parent/3052",[1453,4.145]],["name/3053",[117,16.899]],["parent/3053",[1474,7.871]],["name/3054",[417,51.28]],["parent/3054",[1453,4.145]],["name/3055",[151,50.463]],["parent/3055",[1453,4.145]],["name/3056",[152,50.463]],["parent/3056",[1453,4.145]],["name/3057",[153,50.463]],["parent/3057",[1453,4.145]],["name/3058",[154,51.28]],["parent/3058",[1453,4.145]],["name/3059",[155,51.28]],["parent/3059",[1453,4.145]],["name/3060",[156,50.463]],["parent/3060",[1453,4.145]],["name/3061",[157,50.463]],["parent/3061",[1453,4.145]],["name/3062",[158,50.463]],["parent/3062",[1453,4.145]],["name/3063",[159,50.463]],["parent/3063",[1453,4.145]],["name/3064",[117,16.899]],["parent/3064",[1475,7.871]],["name/3065",[161,50.463]],["parent/3065",[1453,4.145]],["name/3066",[117,16.899]],["parent/3066",[1476,7.871]],["name/3067",[163,44.034]],["parent/3067",[1453,4.145]],["name/3068",[117,16.899]],["parent/3068",[1477,7.871]],["name/3069",[390,52.17]],["parent/3069",[1453,4.145]],["name/3070",[117,16.899]],["parent/3070",[1478,7.871]],["name/3071",[165,50.463]],["parent/3071",[1453,4.145]],["name/3072",[117,16.899]],["parent/3072",[1479,7.871]],["name/3073",[167,50.463]],["parent/3073",[1453,4.145]],["name/3074",[168,50.463]],["parent/3074",[1453,4.145]],["name/3075",[169,50.463]],["parent/3075",[1453,4.145]],["name/3076",[170,50.463]],["parent/3076",[1453,4.145]],["name/3077",[171,50.463]],["parent/3077",[1453,4.145]],["name/3078",[172,50.463]],["parent/3078",[1453,4.145]],["name/3079",[173,50.079]],["parent/3079",[1453,4.145]],["name/3080",[174,50.463]],["parent/3080",[1453,4.145]],["name/3081",[175,50.463]],["parent/3081",[1453,4.145]],["name/3082",[176,50.463]],["parent/3082",[1453,4.145]],["name/3083",[177,50.463]],["parent/3083",[1453,4.145]],["name/3084",[178,50.463]],["parent/3084",[1453,4.145]],["name/3085",[179,50.463]],["parent/3085",[1453,4.145]],["name/3086",[180,50.463]],["parent/3086",[1453,4.145]],["name/3087",[181,50.463]],["parent/3087",[1453,4.145]],["name/3088",[182,50.463]],["parent/3088",[1453,4.145]],["name/3089",[184,50.463]],["parent/3089",[1453,4.145]],["name/3090",[185,50.463]],["parent/3090",[1453,4.145]],["name/3091",[186,51.28]],["parent/3091",[1453,4.145]],["name/3092",[187,51.28]],["parent/3092",[1453,4.145]],["name/3093",[117,16.899]],["parent/3093",[1480,7.871]],["name/3094",[189,51.28]],["parent/3094",[1481,5.259]],["name/3095",[191,42.868]],["parent/3095",[1481,5.259]],["name/3096",[192,50.079]],["parent/3096",[1481,5.259]],["name/3097",[193,44.243]],["parent/3097",[1481,5.259]],["name/3098",[194,51.28]],["parent/3098",[1481,5.259]],["name/3099",[195,51.28]],["parent/3099",[1481,5.259]],["name/3100",[196,51.28]],["parent/3100",[1481,5.259]],["name/3101",[197,50.463]],["parent/3101",[1481,5.259]],["name/3102",[198,51.28]],["parent/3102",[1481,5.259]],["name/3103",[199,50.463]],["parent/3103",[1481,5.259]],["name/3104",[200,51.28]],["parent/3104",[1481,5.259]],["name/3105",[201,51.28]],["parent/3105",[1481,5.259]],["name/3106",[202,51.28]],["parent/3106",[1481,5.259]],["name/3107",[203,51.28]],["parent/3107",[1481,5.259]],["name/3108",[163,44.034]],["parent/3108",[1481,5.259]],["name/3109",[204,51.28]],["parent/3109",[1481,5.259]],["name/3110",[205,51.28]],["parent/3110",[1481,5.259]],["name/3111",[206,51.28]],["parent/3111",[1481,5.259]],["name/3112",[207,48.038]],["parent/3112",[1481,5.259]],["name/3113",[208,51.28]],["parent/3113",[1481,5.259]],["name/3114",[209,51.28]],["parent/3114",[1453,4.145]],["name/3115",[117,16.899]],["parent/3115",[1482,7.871]],["name/3116",[193,44.243]],["parent/3116",[1483,6.573]],["name/3117",[212,51.28]],["parent/3117",[1483,6.573]],["name/3118",[191,42.868]],["parent/3118",[1483,6.573]],["name/3119",[213,51.28]],["parent/3119",[1483,6.573]],["name/3120",[214,49.006]],["parent/3120",[1483,6.573]],["name/3121",[215,50.079]],["parent/3121",[1208,5.041]],["name/3122",[216,50.079]],["parent/3122",[1208,5.041]],["name/3123",[1484,78.795]],["parent/3123",[1208,5.041]],["name/3124",[2,50.079]],["parent/3124",[1485,4.039]],["name/3125",[1486,78.795]],["parent/3125",[1485,4.039]],["name/3126",[1487,78.795]],["parent/3126",[1485,4.039]],["name/3127",[1488,78.795]],["parent/3127",[1485,4.039]],["name/3128",[1489,78.795]],["parent/3128",[1485,4.039]],["name/3129",[1490,78.795]],["parent/3129",[1485,4.039]],["name/3130",[52,49.351]],["parent/3130",[1485,4.039]],["name/3131",[1491,78.795]],["parent/3131",[1485,4.039]],["name/3132",[1492,78.795]],["parent/3132",[1485,4.039]],["name/3133",[1493,78.795]],["parent/3133",[1485,4.039]],["name/3134",[1494,78.795]],["parent/3134",[1485,4.039]],["name/3135",[1495,78.795]],["parent/3135",[1485,4.039]],["name/3136",[117,16.899]],["parent/3136",[1496,7.871]],["name/3137",[1497,78.795]],["parent/3137",[1485,4.039]],["name/3138",[117,16.899]],["parent/3138",[1498,7.871]],["name/3139",[1284,73.687]],["parent/3139",[1485,4.039]],["name/3140",[117,16.899]],["parent/3140",[1499,7.871]],["name/3141",[1500,78.795]],["parent/3141",[1485,4.039]],["name/3142",[117,16.899]],["parent/3142",[1501,7.871]],["name/3143",[93,50.079]],["parent/3143",[1485,4.039]],["name/3144",[397,51.28]],["parent/3144",[1485,4.039]],["name/3145",[398,51.28]],["parent/3145",[1485,4.039]],["name/3146",[117,16.899]],["parent/3146",[1502,7.871]],["name/3147",[129,50.079]],["parent/3147",[1485,4.039]],["name/3148",[117,16.899]],["parent/3148",[1503,7.871]],["name/3149",[401,51.28]],["parent/3149",[1485,4.039]],["name/3150",[117,16.899]],["parent/3150",[1504,7.871]],["name/3151",[131,50.079]],["parent/3151",[1485,4.039]],["name/3152",[117,16.899]],["parent/3152",[1505,7.871]],["name/3153",[133,50.079]],["parent/3153",[1485,4.039]],["name/3154",[117,16.899]],["parent/3154",[1506,7.871]],["name/3155",[135,50.079]],["parent/3155",[1485,4.039]],["name/3156",[117,16.899]],["parent/3156",[1507,7.871]],["name/3157",[137,50.079]],["parent/3157",[1485,4.039]],["name/3158",[117,16.899]],["parent/3158",[1508,7.871]],["name/3159",[139,50.079]],["parent/3159",[1485,4.039]],["name/3160",[117,16.899]],["parent/3160",[1509,7.871]],["name/3161",[141,50.079]],["parent/3161",[1485,4.039]],["name/3162",[117,16.899]],["parent/3162",[1510,7.871]],["name/3163",[143,50.079]],["parent/3163",[1485,4.039]],["name/3164",[117,16.899]],["parent/3164",[1511,7.871]],["name/3165",[145,50.079]],["parent/3165",[1485,4.039]],["name/3166",[117,16.899]],["parent/3166",[1512,7.871]],["name/3167",[147,50.079]],["parent/3167",[1485,4.039]],["name/3168",[117,16.899]],["parent/3168",[1513,7.871]],["name/3169",[183,50.079]],["parent/3169",[1485,4.039]],["name/3170",[117,16.899]],["parent/3170",[1514,7.871]],["name/3171",[149,50.079]],["parent/3171",[1485,4.039]],["name/3172",[117,16.899]],["parent/3172",[1515,7.871]],["name/3173",[413,51.28]],["parent/3173",[1485,4.039]],["name/3174",[117,16.899]],["parent/3174",[1516,7.871]],["name/3175",[415,51.28]],["parent/3175",[1485,4.039]],["name/3176",[117,16.899]],["parent/3176",[1517,7.871]],["name/3177",[417,51.28]],["parent/3177",[1485,4.039]],["name/3178",[418,51.28]],["parent/3178",[1485,4.039]],["name/3179",[151,50.463]],["parent/3179",[1485,4.039]],["name/3180",[152,50.463]],["parent/3180",[1485,4.039]],["name/3181",[153,50.463]],["parent/3181",[1485,4.039]],["name/3182",[154,51.28]],["parent/3182",[1485,4.039]],["name/3183",[155,51.28]],["parent/3183",[1485,4.039]],["name/3184",[156,50.463]],["parent/3184",[1485,4.039]],["name/3185",[157,50.463]],["parent/3185",[1485,4.039]],["name/3186",[158,50.463]],["parent/3186",[1485,4.039]],["name/3187",[159,50.463]],["parent/3187",[1485,4.039]],["name/3188",[117,16.899]],["parent/3188",[1518,7.871]],["name/3189",[161,50.463]],["parent/3189",[1485,4.039]],["name/3190",[117,16.899]],["parent/3190",[1519,7.871]],["name/3191",[163,44.034]],["parent/3191",[1485,4.039]],["name/3192",[117,16.899]],["parent/3192",[1520,7.871]],["name/3193",[390,52.17]],["parent/3193",[1485,4.039]],["name/3194",[117,16.899]],["parent/3194",[1521,7.871]],["name/3195",[165,50.463]],["parent/3195",[1485,4.039]],["name/3196",[117,16.899]],["parent/3196",[1522,7.871]],["name/3197",[167,50.463]],["parent/3197",[1485,4.039]],["name/3198",[168,50.463]],["parent/3198",[1485,4.039]],["name/3199",[169,50.463]],["parent/3199",[1485,4.039]],["name/3200",[170,50.463]],["parent/3200",[1485,4.039]],["name/3201",[171,50.463]],["parent/3201",[1485,4.039]],["name/3202",[172,50.463]],["parent/3202",[1485,4.039]],["name/3203",[173,50.079]],["parent/3203",[1485,4.039]],["name/3204",[174,50.463]],["parent/3204",[1485,4.039]],["name/3205",[175,50.463]],["parent/3205",[1485,4.039]],["name/3206",[176,50.463]],["parent/3206",[1485,4.039]],["name/3207",[177,50.463]],["parent/3207",[1485,4.039]],["name/3208",[178,50.463]],["parent/3208",[1485,4.039]],["name/3209",[179,50.463]],["parent/3209",[1485,4.039]],["name/3210",[180,50.463]],["parent/3210",[1485,4.039]],["name/3211",[181,50.463]],["parent/3211",[1485,4.039]],["name/3212",[182,50.463]],["parent/3212",[1485,4.039]],["name/3213",[184,50.463]],["parent/3213",[1485,4.039]],["name/3214",[185,50.463]],["parent/3214",[1485,4.039]],["name/3215",[186,51.28]],["parent/3215",[1485,4.039]],["name/3216",[187,51.28]],["parent/3216",[1485,4.039]],["name/3217",[117,16.899]],["parent/3217",[1523,7.871]],["name/3218",[189,51.28]],["parent/3218",[1524,5.259]],["name/3219",[191,42.868]],["parent/3219",[1524,5.259]],["name/3220",[192,50.079]],["parent/3220",[1524,5.259]],["name/3221",[193,44.243]],["parent/3221",[1524,5.259]],["name/3222",[194,51.28]],["parent/3222",[1524,5.259]],["name/3223",[195,51.28]],["parent/3223",[1524,5.259]],["name/3224",[196,51.28]],["parent/3224",[1524,5.259]],["name/3225",[197,50.463]],["parent/3225",[1524,5.259]],["name/3226",[198,51.28]],["parent/3226",[1524,5.259]],["name/3227",[199,50.463]],["parent/3227",[1524,5.259]],["name/3228",[200,51.28]],["parent/3228",[1524,5.259]],["name/3229",[201,51.28]],["parent/3229",[1524,5.259]],["name/3230",[202,51.28]],["parent/3230",[1524,5.259]],["name/3231",[203,51.28]],["parent/3231",[1524,5.259]],["name/3232",[163,44.034]],["parent/3232",[1524,5.259]],["name/3233",[204,51.28]],["parent/3233",[1524,5.259]],["name/3234",[205,51.28]],["parent/3234",[1524,5.259]],["name/3235",[206,51.28]],["parent/3235",[1524,5.259]],["name/3236",[207,48.038]],["parent/3236",[1524,5.259]],["name/3237",[208,51.28]],["parent/3237",[1524,5.259]],["name/3238",[209,51.28]],["parent/3238",[1485,4.039]],["name/3239",[117,16.899]],["parent/3239",[1525,7.871]],["name/3240",[193,44.243]],["parent/3240",[1526,6.573]],["name/3241",[212,51.28]],["parent/3241",[1526,6.573]],["name/3242",[191,42.868]],["parent/3242",[1526,6.573]],["name/3243",[213,51.28]],["parent/3243",[1526,6.573]],["name/3244",[214,49.006]],["parent/3244",[1526,6.573]],["name/3245",[215,50.079]],["parent/3245",[1208,5.041]],["name/3246",[216,50.079]],["parent/3246",[1208,5.041]],["name/3247",[383,55.442]],["parent/3247",[]],["name/3248",[1527,73.687]],["parent/3248",[383,5.538]],["name/3249",[2,50.079]],["parent/3249",[1528,3.365]],["name/3250",[1529,78.795]],["parent/3250",[1528,3.365]],["name/3251",[1530,78.795]],["parent/3251",[1528,3.365]],["name/3252",[1531,78.795]],["parent/3252",[1528,3.365]],["name/3253",[1532,78.795]],["parent/3253",[1528,3.365]],["name/3254",[1533,78.795]],["parent/3254",[1528,3.365]],["name/3255",[1534,78.795]],["parent/3255",[1528,3.365]],["name/3256",[1535,78.795]],["parent/3256",[1528,3.365]],["name/3257",[1536,78.795]],["parent/3257",[1528,3.365]],["name/3258",[1537,78.795]],["parent/3258",[1528,3.365]],["name/3259",[1538,78.795]],["parent/3259",[1528,3.365]],["name/3260",[1539,78.795]],["parent/3260",[1528,3.365]],["name/3261",[1540,78.795]],["parent/3261",[1528,3.365]],["name/3262",[1541,78.795]],["parent/3262",[1528,3.365]],["name/3263",[1542,78.795]],["parent/3263",[1528,3.365]],["name/3264",[1543,78.795]],["parent/3264",[1528,3.365]],["name/3265",[1544,78.795]],["parent/3265",[1528,3.365]],["name/3266",[1545,78.795]],["parent/3266",[1528,3.365]],["name/3267",[1546,78.795]],["parent/3267",[1528,3.365]],["name/3268",[1547,78.795]],["parent/3268",[1528,3.365]],["name/3269",[1548,78.795]],["parent/3269",[1528,3.365]],["name/3270",[1549,78.795]],["parent/3270",[1528,3.365]],["name/3271",[1550,78.795]],["parent/3271",[1528,3.365]],["name/3272",[1551,78.795]],["parent/3272",[1528,3.365]],["name/3273",[1552,78.795]],["parent/3273",[1528,3.365]],["name/3274",[1553,78.795]],["parent/3274",[1528,3.365]],["name/3275",[1554,78.795]],["parent/3275",[1528,3.365]],["name/3276",[1555,78.795]],["parent/3276",[1528,3.365]],["name/3277",[1556,78.795]],["parent/3277",[1528,3.365]],["name/3278",[1557,78.795]],["parent/3278",[1528,3.365]],["name/3279",[1558,78.795]],["parent/3279",[1528,3.365]],["name/3280",[1559,78.795]],["parent/3280",[1528,3.365]],["name/3281",[1560,78.795]],["parent/3281",[1528,3.365]],["name/3282",[52,49.351]],["parent/3282",[1528,3.365]],["name/3283",[151,50.463]],["parent/3283",[1528,3.365]],["name/3284",[1561,78.795]],["parent/3284",[1528,3.365]],["name/3285",[1562,78.795]],["parent/3285",[1528,3.365]],["name/3286",[1563,78.795]],["parent/3286",[1528,3.365]],["name/3287",[1564,73.687]],["parent/3287",[1528,3.365]],["name/3288",[726,67.809]],["parent/3288",[1528,3.365]],["name/3289",[1565,78.795]],["parent/3289",[1528,3.365]],["name/3290",[1566,73.687]],["parent/3290",[1528,3.365]],["name/3291",[1567,78.795]],["parent/3291",[1528,3.365]],["name/3292",[1568,78.795]],["parent/3292",[1528,3.365]],["name/3293",[732,64.132]],["parent/3293",[1528,3.365]],["name/3294",[1569,73.687]],["parent/3294",[1528,3.365]],["name/3295",[1570,78.795]],["parent/3295",[1528,3.365]],["name/3296",[1571,78.795]],["parent/3296",[1528,3.365]],["name/3297",[1572,78.795]],["parent/3297",[1528,3.365]],["name/3298",[1573,78.795]],["parent/3298",[1528,3.365]],["name/3299",[738,64.132]],["parent/3299",[1528,3.365]],["name/3300",[1574,78.795]],["parent/3300",[1528,3.365]],["name/3301",[741,65.803]],["parent/3301",[1528,3.365]],["name/3302",[743,65.803]],["parent/3302",[1528,3.365]],["name/3303",[1575,73.687]],["parent/3303",[1528,3.365]],["name/3304",[1576,73.687]],["parent/3304",[1528,3.365]],["name/3305",[1577,78.795]],["parent/3305",[1528,3.365]],["name/3306",[1578,78.795]],["parent/3306",[1528,3.365]],["name/3307",[1579,73.687]],["parent/3307",[1528,3.365]],["name/3308",[1580,78.795]],["parent/3308",[1528,3.365]],["name/3309",[753,65.803]],["parent/3309",[1528,3.365]],["name/3310",[1527,73.687]],["parent/3310",[1528,3.365]],["name/3311",[1581,78.795]],["parent/3311",[1528,3.365]],["name/3312",[1582,73.687]],["parent/3312",[1528,3.365]],["name/3313",[1583,73.687]],["parent/3313",[1528,3.365]],["name/3314",[1584,78.795]],["parent/3314",[1528,3.365]],["name/3315",[1585,78.795]],["parent/3315",[1528,3.365]],["name/3316",[1586,73.687]],["parent/3316",[1528,3.365]],["name/3317",[383,55.442]],["parent/3317",[1528,3.365]],["name/3318",[1587,78.795]],["parent/3318",[1528,3.365]],["name/3319",[1588,78.795]],["parent/3319",[1528,3.365]],["name/3320",[766,64.132]],["parent/3320",[1528,3.365]],["name/3321",[1589,73.687]],["parent/3321",[1528,3.365]],["name/3322",[1590,78.795]],["parent/3322",[1528,3.365]],["name/3323",[1591,73.687]],["parent/3323",[1528,3.365]],["name/3324",[1592,78.795]],["parent/3324",[1528,3.365]],["name/3325",[1593,78.795]],["parent/3325",[1528,3.365]],["name/3326",[1594,78.795]],["parent/3326",[1528,3.365]],["name/3327",[93,50.079]],["parent/3327",[1528,3.365]],["name/3328",[1595,78.795]],["parent/3328",[1528,3.365]],["name/3329",[117,16.899]],["parent/3329",[1596,7.871]],["name/3330",[625,62.701]],["parent/3330",[1528,3.365]],["name/3331",[117,16.899]],["parent/3331",[1597,7.871]],["name/3332",[131,50.079]],["parent/3332",[1528,3.365]],["name/3333",[117,16.899]],["parent/3333",[1598,7.871]],["name/3334",[241,57.593]],["parent/3334",[1528,3.365]],["name/3335",[117,16.899]],["parent/3335",[1599,7.871]],["name/3336",[137,50.079]],["parent/3336",[1528,3.365]],["name/3337",[117,16.899]],["parent/3337",[1600,7.871]],["name/3338",[1601,78.795]],["parent/3338",[1528,3.365]],["name/3339",[117,16.899]],["parent/3339",[1602,7.871]],["name/3340",[634,61.449]],["parent/3340",[1528,3.365]],["name/3341",[117,16.899]],["parent/3341",[1603,7.871]],["name/3342",[149,50.079]],["parent/3342",[1528,3.365]],["name/3343",[117,16.899]],["parent/3343",[1604,7.871]],["name/3344",[397,51.28]],["parent/3344",[1528,3.365]],["name/3345",[398,51.28]],["parent/3345",[1528,3.365]],["name/3346",[117,16.899]],["parent/3346",[1605,7.871]],["name/3347",[129,50.079]],["parent/3347",[1528,3.365]],["name/3348",[117,16.899]],["parent/3348",[1606,7.871]],["name/3349",[401,51.28]],["parent/3349",[1528,3.365]],["name/3350",[117,16.899]],["parent/3350",[1607,7.871]],["name/3351",[133,50.079]],["parent/3351",[1528,3.365]],["name/3352",[117,16.899]],["parent/3352",[1608,7.871]],["name/3353",[135,50.079]],["parent/3353",[1528,3.365]],["name/3354",[117,16.899]],["parent/3354",[1609,7.871]],["name/3355",[139,50.079]],["parent/3355",[1528,3.365]],["name/3356",[117,16.899]],["parent/3356",[1610,7.871]],["name/3357",[141,50.079]],["parent/3357",[1528,3.365]],["name/3358",[117,16.899]],["parent/3358",[1611,7.871]],["name/3359",[143,50.079]],["parent/3359",[1528,3.365]],["name/3360",[117,16.899]],["parent/3360",[1612,7.871]],["name/3361",[145,50.079]],["parent/3361",[1528,3.365]],["name/3362",[117,16.899]],["parent/3362",[1613,7.871]],["name/3363",[147,50.079]],["parent/3363",[1528,3.365]],["name/3364",[117,16.899]],["parent/3364",[1614,7.871]],["name/3365",[183,50.079]],["parent/3365",[1528,3.365]],["name/3366",[117,16.899]],["parent/3366",[1615,7.871]],["name/3367",[413,51.28]],["parent/3367",[1528,3.365]],["name/3368",[117,16.899]],["parent/3368",[1616,7.871]],["name/3369",[415,51.28]],["parent/3369",[1528,3.365]],["name/3370",[117,16.899]],["parent/3370",[1617,7.871]],["name/3371",[417,51.28]],["parent/3371",[1528,3.365]],["name/3372",[418,51.28]],["parent/3372",[1528,3.365]],["name/3373",[152,50.463]],["parent/3373",[1528,3.365]],["name/3374",[153,50.463]],["parent/3374",[1528,3.365]],["name/3375",[154,51.28]],["parent/3375",[1528,3.365]],["name/3376",[155,51.28]],["parent/3376",[1528,3.365]],["name/3377",[156,50.463]],["parent/3377",[1528,3.365]],["name/3378",[157,50.463]],["parent/3378",[1528,3.365]],["name/3379",[158,50.463]],["parent/3379",[1528,3.365]],["name/3380",[159,50.463]],["parent/3380",[1528,3.365]],["name/3381",[117,16.899]],["parent/3381",[1618,7.871]],["name/3382",[161,50.463]],["parent/3382",[1528,3.365]],["name/3383",[117,16.899]],["parent/3383",[1619,7.871]],["name/3384",[163,44.034]],["parent/3384",[1528,3.365]],["name/3385",[117,16.899]],["parent/3385",[1620,7.871]],["name/3386",[390,52.17]],["parent/3386",[1528,3.365]],["name/3387",[117,16.899]],["parent/3387",[1621,7.871]],["name/3388",[165,50.463]],["parent/3388",[1528,3.365]],["name/3389",[117,16.899]],["parent/3389",[1622,7.871]],["name/3390",[167,50.463]],["parent/3390",[1528,3.365]],["name/3391",[168,50.463]],["parent/3391",[1528,3.365]],["name/3392",[169,50.463]],["parent/3392",[1528,3.365]],["name/3393",[170,50.463]],["parent/3393",[1528,3.365]],["name/3394",[171,50.463]],["parent/3394",[1528,3.365]],["name/3395",[172,50.463]],["parent/3395",[1528,3.365]],["name/3396",[173,50.079]],["parent/3396",[1528,3.365]],["name/3397",[174,50.463]],["parent/3397",[1528,3.365]],["name/3398",[175,50.463]],["parent/3398",[1528,3.365]],["name/3399",[176,50.463]],["parent/3399",[1528,3.365]],["name/3400",[177,50.463]],["parent/3400",[1528,3.365]],["name/3401",[178,50.463]],["parent/3401",[1528,3.365]],["name/3402",[179,50.463]],["parent/3402",[1528,3.365]],["name/3403",[180,50.463]],["parent/3403",[1528,3.365]],["name/3404",[181,50.463]],["parent/3404",[1528,3.365]],["name/3405",[182,50.463]],["parent/3405",[1528,3.365]],["name/3406",[184,50.463]],["parent/3406",[1528,3.365]],["name/3407",[185,50.463]],["parent/3407",[1528,3.365]],["name/3408",[186,51.28]],["parent/3408",[1528,3.365]],["name/3409",[187,51.28]],["parent/3409",[1528,3.365]],["name/3410",[117,16.899]],["parent/3410",[1623,7.871]],["name/3411",[189,51.28]],["parent/3411",[1624,5.259]],["name/3412",[191,42.868]],["parent/3412",[1624,5.259]],["name/3413",[192,50.079]],["parent/3413",[1624,5.259]],["name/3414",[193,44.243]],["parent/3414",[1624,5.259]],["name/3415",[194,51.28]],["parent/3415",[1624,5.259]],["name/3416",[195,51.28]],["parent/3416",[1624,5.259]],["name/3417",[196,51.28]],["parent/3417",[1624,5.259]],["name/3418",[197,50.463]],["parent/3418",[1624,5.259]],["name/3419",[198,51.28]],["parent/3419",[1624,5.259]],["name/3420",[199,50.463]],["parent/3420",[1624,5.259]],["name/3421",[200,51.28]],["parent/3421",[1624,5.259]],["name/3422",[201,51.28]],["parent/3422",[1624,5.259]],["name/3423",[202,51.28]],["parent/3423",[1624,5.259]],["name/3424",[203,51.28]],["parent/3424",[1624,5.259]],["name/3425",[163,44.034]],["parent/3425",[1624,5.259]],["name/3426",[204,51.28]],["parent/3426",[1624,5.259]],["name/3427",[205,51.28]],["parent/3427",[1624,5.259]],["name/3428",[206,51.28]],["parent/3428",[1624,5.259]],["name/3429",[207,48.038]],["parent/3429",[1624,5.259]],["name/3430",[208,51.28]],["parent/3430",[1624,5.259]],["name/3431",[209,51.28]],["parent/3431",[1528,3.365]],["name/3432",[117,16.899]],["parent/3432",[1625,7.871]],["name/3433",[193,44.243]],["parent/3433",[1626,6.573]],["name/3434",[212,51.28]],["parent/3434",[1626,6.573]],["name/3435",[191,42.868]],["parent/3435",[1626,6.573]],["name/3436",[213,51.28]],["parent/3436",[1626,6.573]],["name/3437",[214,49.006]],["parent/3437",[1626,6.573]],["name/3438",[215,50.079]],["parent/3438",[383,5.538]],["name/3439",[216,50.079]],["parent/3439",[383,5.538]],["name/3440",[1627,78.795]],["parent/3440",[383,5.538]],["name/3441",[2,50.079]],["parent/3441",[1628,3.515]],["name/3442",[1629,78.795]],["parent/3442",[1628,3.515]],["name/3443",[1630,73.687]],["parent/3443",[1628,3.515]],["name/3444",[1631,78.795]],["parent/3444",[1628,3.515]],["name/3445",[1632,78.795]],["parent/3445",[1628,3.515]],["name/3446",[1633,78.795]],["parent/3446",[1628,3.515]],["name/3447",[1634,78.795]],["parent/3447",[1628,3.515]],["name/3448",[1635,78.795]],["parent/3448",[1628,3.515]],["name/3449",[1636,78.795]],["parent/3449",[1628,3.515]],["name/3450",[1637,78.795]],["parent/3450",[1628,3.515]],["name/3451",[1638,78.795]],["parent/3451",[1628,3.515]],["name/3452",[1639,78.795]],["parent/3452",[1628,3.515]],["name/3453",[1640,78.795]],["parent/3453",[1628,3.515]],["name/3454",[1641,78.795]],["parent/3454",[1628,3.515]],["name/3455",[1642,78.795]],["parent/3455",[1628,3.515]],["name/3456",[1643,78.795]],["parent/3456",[1628,3.515]],["name/3457",[1644,78.795]],["parent/3457",[1628,3.515]],["name/3458",[1645,78.795]],["parent/3458",[1628,3.515]],["name/3459",[1646,78.795]],["parent/3459",[1628,3.515]],["name/3460",[1647,78.795]],["parent/3460",[1628,3.515]],["name/3461",[1648,78.795]],["parent/3461",[1628,3.515]],["name/3462",[1649,78.795]],["parent/3462",[1628,3.515]],["name/3463",[1650,78.795]],["parent/3463",[1628,3.515]],["name/3464",[1651,78.795]],["parent/3464",[1628,3.515]],["name/3465",[1652,78.795]],["parent/3465",[1628,3.515]],["name/3466",[1653,78.795]],["parent/3466",[1628,3.515]],["name/3467",[1654,78.795]],["parent/3467",[1628,3.515]],["name/3468",[1655,78.795]],["parent/3468",[1628,3.515]],["name/3469",[1656,78.795]],["parent/3469",[1628,3.515]],["name/3470",[1657,78.795]],["parent/3470",[1628,3.515]],["name/3471",[1658,78.795]],["parent/3471",[1628,3.515]],["name/3472",[1659,78.795]],["parent/3472",[1628,3.515]],["name/3473",[1660,78.795]],["parent/3473",[1628,3.515]],["name/3474",[1661,78.795]],["parent/3474",[1628,3.515]],["name/3475",[1662,78.795]],["parent/3475",[1628,3.515]],["name/3476",[1663,78.795]],["parent/3476",[1628,3.515]],["name/3477",[52,49.351]],["parent/3477",[1628,3.515]],["name/3478",[151,50.463]],["parent/3478",[1628,3.515]],["name/3479",[1664,78.795]],["parent/3479",[1628,3.515]],["name/3480",[1564,73.687]],["parent/3480",[1628,3.515]],["name/3481",[726,67.809]],["parent/3481",[1628,3.515]],["name/3482",[1665,78.795]],["parent/3482",[1628,3.515]],["name/3483",[732,64.132]],["parent/3483",[1628,3.515]],["name/3484",[1569,73.687]],["parent/3484",[1628,3.515]],["name/3485",[1666,78.795]],["parent/3485",[1628,3.515]],["name/3486",[738,64.132]],["parent/3486",[1628,3.515]],["name/3487",[741,65.803]],["parent/3487",[1628,3.515]],["name/3488",[743,65.803]],["parent/3488",[1628,3.515]],["name/3489",[1575,73.687]],["parent/3489",[1628,3.515]],["name/3490",[1576,73.687]],["parent/3490",[1628,3.515]],["name/3491",[1579,73.687]],["parent/3491",[1628,3.515]],["name/3492",[753,65.803]],["parent/3492",[1628,3.515]],["name/3493",[1582,73.687]],["parent/3493",[1628,3.515]],["name/3494",[1583,73.687]],["parent/3494",[1628,3.515]],["name/3495",[1134,70.322]],["parent/3495",[1628,3.515]],["name/3496",[1586,73.687]],["parent/3496",[1628,3.515]],["name/3497",[383,55.442]],["parent/3497",[1628,3.515]],["name/3498",[1667,78.795]],["parent/3498",[1628,3.515]],["name/3499",[766,64.132]],["parent/3499",[1628,3.515]],["name/3500",[1589,73.687]],["parent/3500",[1628,3.515]],["name/3501",[1668,78.795]],["parent/3501",[1628,3.515]],["name/3502",[93,50.079]],["parent/3502",[1628,3.515]],["name/3503",[634,61.449]],["parent/3503",[1628,3.515]],["name/3504",[117,16.899]],["parent/3504",[1669,7.871]],["name/3505",[241,57.593]],["parent/3505",[1628,3.515]],["name/3506",[117,16.899]],["parent/3506",[1670,7.871]],["name/3507",[1671,78.795]],["parent/3507",[1628,3.515]],["name/3508",[117,16.899]],["parent/3508",[1672,7.871]],["name/3509",[397,51.28]],["parent/3509",[1628,3.515]],["name/3510",[398,51.28]],["parent/3510",[1628,3.515]],["name/3511",[117,16.899]],["parent/3511",[1673,7.871]],["name/3512",[129,50.079]],["parent/3512",[1628,3.515]],["name/3513",[117,16.899]],["parent/3513",[1674,7.871]],["name/3514",[401,51.28]],["parent/3514",[1628,3.515]],["name/3515",[117,16.899]],["parent/3515",[1675,7.871]],["name/3516",[131,50.079]],["parent/3516",[1628,3.515]],["name/3517",[117,16.899]],["parent/3517",[1676,7.871]],["name/3518",[133,50.079]],["parent/3518",[1628,3.515]],["name/3519",[117,16.899]],["parent/3519",[1677,7.871]],["name/3520",[135,50.079]],["parent/3520",[1628,3.515]],["name/3521",[117,16.899]],["parent/3521",[1678,7.871]],["name/3522",[137,50.079]],["parent/3522",[1628,3.515]],["name/3523",[117,16.899]],["parent/3523",[1679,7.871]],["name/3524",[139,50.079]],["parent/3524",[1628,3.515]],["name/3525",[117,16.899]],["parent/3525",[1680,7.871]],["name/3526",[141,50.079]],["parent/3526",[1628,3.515]],["name/3527",[117,16.899]],["parent/3527",[1681,7.871]],["name/3528",[143,50.079]],["parent/3528",[1628,3.515]],["name/3529",[117,16.899]],["parent/3529",[1682,7.871]],["name/3530",[145,50.079]],["parent/3530",[1628,3.515]],["name/3531",[117,16.899]],["parent/3531",[1683,7.871]],["name/3532",[147,50.079]],["parent/3532",[1628,3.515]],["name/3533",[117,16.899]],["parent/3533",[1684,7.871]],["name/3534",[183,50.079]],["parent/3534",[1628,3.515]],["name/3535",[117,16.899]],["parent/3535",[1685,7.871]],["name/3536",[149,50.079]],["parent/3536",[1628,3.515]],["name/3537",[117,16.899]],["parent/3537",[1686,7.871]],["name/3538",[413,51.28]],["parent/3538",[1628,3.515]],["name/3539",[117,16.899]],["parent/3539",[1687,7.871]],["name/3540",[415,51.28]],["parent/3540",[1628,3.515]],["name/3541",[117,16.899]],["parent/3541",[1688,7.871]],["name/3542",[417,51.28]],["parent/3542",[1628,3.515]],["name/3543",[418,51.28]],["parent/3543",[1628,3.515]],["name/3544",[152,50.463]],["parent/3544",[1628,3.515]],["name/3545",[153,50.463]],["parent/3545",[1628,3.515]],["name/3546",[154,51.28]],["parent/3546",[1628,3.515]],["name/3547",[155,51.28]],["parent/3547",[1628,3.515]],["name/3548",[156,50.463]],["parent/3548",[1628,3.515]],["name/3549",[157,50.463]],["parent/3549",[1628,3.515]],["name/3550",[158,50.463]],["parent/3550",[1628,3.515]],["name/3551",[159,50.463]],["parent/3551",[1628,3.515]],["name/3552",[117,16.899]],["parent/3552",[1689,7.871]],["name/3553",[161,50.463]],["parent/3553",[1628,3.515]],["name/3554",[117,16.899]],["parent/3554",[1690,7.871]],["name/3555",[163,44.034]],["parent/3555",[1628,3.515]],["name/3556",[117,16.899]],["parent/3556",[1691,7.871]],["name/3557",[390,52.17]],["parent/3557",[1628,3.515]],["name/3558",[117,16.899]],["parent/3558",[1692,7.871]],["name/3559",[165,50.463]],["parent/3559",[1628,3.515]],["name/3560",[117,16.899]],["parent/3560",[1693,7.871]],["name/3561",[167,50.463]],["parent/3561",[1628,3.515]],["name/3562",[168,50.463]],["parent/3562",[1628,3.515]],["name/3563",[169,50.463]],["parent/3563",[1628,3.515]],["name/3564",[170,50.463]],["parent/3564",[1628,3.515]],["name/3565",[171,50.463]],["parent/3565",[1628,3.515]],["name/3566",[172,50.463]],["parent/3566",[1628,3.515]],["name/3567",[173,50.079]],["parent/3567",[1628,3.515]],["name/3568",[174,50.463]],["parent/3568",[1628,3.515]],["name/3569",[175,50.463]],["parent/3569",[1628,3.515]],["name/3570",[176,50.463]],["parent/3570",[1628,3.515]],["name/3571",[177,50.463]],["parent/3571",[1628,3.515]],["name/3572",[178,50.463]],["parent/3572",[1628,3.515]],["name/3573",[179,50.463]],["parent/3573",[1628,3.515]],["name/3574",[180,50.463]],["parent/3574",[1628,3.515]],["name/3575",[181,50.463]],["parent/3575",[1628,3.515]],["name/3576",[182,50.463]],["parent/3576",[1628,3.515]],["name/3577",[184,50.463]],["parent/3577",[1628,3.515]],["name/3578",[185,50.463]],["parent/3578",[1628,3.515]],["name/3579",[186,51.28]],["parent/3579",[1628,3.515]],["name/3580",[187,51.28]],["parent/3580",[1628,3.515]],["name/3581",[117,16.899]],["parent/3581",[1694,7.871]],["name/3582",[189,51.28]],["parent/3582",[1695,5.259]],["name/3583",[191,42.868]],["parent/3583",[1695,5.259]],["name/3584",[192,50.079]],["parent/3584",[1695,5.259]],["name/3585",[193,44.243]],["parent/3585",[1695,5.259]],["name/3586",[194,51.28]],["parent/3586",[1695,5.259]],["name/3587",[195,51.28]],["parent/3587",[1695,5.259]],["name/3588",[196,51.28]],["parent/3588",[1695,5.259]],["name/3589",[197,50.463]],["parent/3589",[1695,5.259]],["name/3590",[198,51.28]],["parent/3590",[1695,5.259]],["name/3591",[199,50.463]],["parent/3591",[1695,5.259]],["name/3592",[200,51.28]],["parent/3592",[1695,5.259]],["name/3593",[201,51.28]],["parent/3593",[1695,5.259]],["name/3594",[202,51.28]],["parent/3594",[1695,5.259]],["name/3595",[203,51.28]],["parent/3595",[1695,5.259]],["name/3596",[163,44.034]],["parent/3596",[1695,5.259]],["name/3597",[204,51.28]],["parent/3597",[1695,5.259]],["name/3598",[205,51.28]],["parent/3598",[1695,5.259]],["name/3599",[206,51.28]],["parent/3599",[1695,5.259]],["name/3600",[207,48.038]],["parent/3600",[1695,5.259]],["name/3601",[208,51.28]],["parent/3601",[1695,5.259]],["name/3602",[209,51.28]],["parent/3602",[1628,3.515]],["name/3603",[117,16.899]],["parent/3603",[1696,7.871]],["name/3604",[193,44.243]],["parent/3604",[1697,6.573]],["name/3605",[212,51.28]],["parent/3605",[1697,6.573]],["name/3606",[191,42.868]],["parent/3606",[1697,6.573]],["name/3607",[213,51.28]],["parent/3607",[1697,6.573]],["name/3608",[214,49.006]],["parent/3608",[1697,6.573]],["name/3609",[215,50.079]],["parent/3609",[383,5.538]],["name/3610",[216,50.079]],["parent/3610",[383,5.538]],["name/3611",[1698,78.795]],["parent/3611",[383,5.538]],["name/3612",[2,50.079]],["parent/3612",[1699,3.798]],["name/3613",[1700,78.795]],["parent/3613",[1699,3.798]],["name/3614",[1630,73.687]],["parent/3614",[1699,3.798]],["name/3615",[1701,78.795]],["parent/3615",[1699,3.798]],["name/3616",[1702,78.795]],["parent/3616",[1699,3.798]],["name/3617",[52,49.351]],["parent/3617",[1699,3.798]],["name/3618",[1118,73.687]],["parent/3618",[1699,3.798]],["name/3619",[1121,73.687]],["parent/3619",[1699,3.798]],["name/3620",[725,73.687]],["parent/3620",[1699,3.798]],["name/3621",[726,67.809]],["parent/3621",[1699,3.798]],["name/3622",[1566,73.687]],["parent/3622",[1699,3.798]],["name/3623",[1703,78.795]],["parent/3623",[1699,3.798]],["name/3624",[732,64.132]],["parent/3624",[1699,3.798]],["name/3625",[737,73.687]],["parent/3625",[1699,3.798]],["name/3626",[738,64.132]],["parent/3626",[1699,3.798]],["name/3627",[740,73.687]],["parent/3627",[1699,3.798]],["name/3628",[741,65.803]],["parent/3628",[1699,3.798]],["name/3629",[743,65.803]],["parent/3629",[1699,3.798]],["name/3630",[1704,78.795]],["parent/3630",[1699,3.798]],["name/3631",[746,73.687]],["parent/3631",[1699,3.798]],["name/3632",[750,73.687]],["parent/3632",[1699,3.798]],["name/3633",[753,65.803]],["parent/3633",[1699,3.798]],["name/3634",[756,73.687]],["parent/3634",[1699,3.798]],["name/3635",[383,55.442]],["parent/3635",[1699,3.798]],["name/3636",[765,67.809]],["parent/3636",[1699,3.798]],["name/3637",[766,64.132]],["parent/3637",[1699,3.798]],["name/3638",[767,70.322]],["parent/3638",[1699,3.798]],["name/3639",[1591,73.687]],["parent/3639",[1699,3.798]],["name/3640",[768,73.687]],["parent/3640",[1699,3.798]],["name/3641",[93,50.079]],["parent/3641",[1699,3.798]],["name/3642",[625,62.701]],["parent/3642",[1699,3.798]],["name/3643",[117,16.899]],["parent/3643",[1705,7.871]],["name/3644",[241,57.593]],["parent/3644",[1699,3.798]],["name/3645",[117,16.899]],["parent/3645",[1706,7.871]],["name/3646",[1707,78.795]],["parent/3646",[1699,3.798]],["name/3647",[117,16.899]],["parent/3647",[1708,7.871]],["name/3648",[634,61.449]],["parent/3648",[1699,3.798]],["name/3649",[117,16.899]],["parent/3649",[1709,7.871]],["name/3650",[1710,78.795]],["parent/3650",[1699,3.798]],["name/3651",[117,16.899]],["parent/3651",[1711,7.871]],["name/3652",[397,51.28]],["parent/3652",[1699,3.798]],["name/3653",[398,51.28]],["parent/3653",[1699,3.798]],["name/3654",[117,16.899]],["parent/3654",[1712,7.871]],["name/3655",[129,50.079]],["parent/3655",[1699,3.798]],["name/3656",[117,16.899]],["parent/3656",[1713,7.871]],["name/3657",[401,51.28]],["parent/3657",[1699,3.798]],["name/3658",[117,16.899]],["parent/3658",[1714,7.871]],["name/3659",[131,50.079]],["parent/3659",[1699,3.798]],["name/3660",[117,16.899]],["parent/3660",[1715,7.871]],["name/3661",[133,50.079]],["parent/3661",[1699,3.798]],["name/3662",[117,16.899]],["parent/3662",[1716,7.871]],["name/3663",[135,50.079]],["parent/3663",[1699,3.798]],["name/3664",[117,16.899]],["parent/3664",[1717,7.871]],["name/3665",[137,50.079]],["parent/3665",[1699,3.798]],["name/3666",[117,16.899]],["parent/3666",[1718,7.871]],["name/3667",[139,50.079]],["parent/3667",[1699,3.798]],["name/3668",[117,16.899]],["parent/3668",[1719,7.871]],["name/3669",[141,50.079]],["parent/3669",[1699,3.798]],["name/3670",[117,16.899]],["parent/3670",[1720,7.871]],["name/3671",[143,50.079]],["parent/3671",[1699,3.798]],["name/3672",[117,16.899]],["parent/3672",[1721,7.871]],["name/3673",[145,50.079]],["parent/3673",[1699,3.798]],["name/3674",[117,16.899]],["parent/3674",[1722,7.871]],["name/3675",[147,50.079]],["parent/3675",[1699,3.798]],["name/3676",[117,16.899]],["parent/3676",[1723,7.871]],["name/3677",[183,50.079]],["parent/3677",[1699,3.798]],["name/3678",[117,16.899]],["parent/3678",[1724,7.871]],["name/3679",[149,50.079]],["parent/3679",[1699,3.798]],["name/3680",[117,16.899]],["parent/3680",[1725,7.871]],["name/3681",[413,51.28]],["parent/3681",[1699,3.798]],["name/3682",[117,16.899]],["parent/3682",[1726,7.871]],["name/3683",[415,51.28]],["parent/3683",[1699,3.798]],["name/3684",[117,16.899]],["parent/3684",[1727,7.871]],["name/3685",[417,51.28]],["parent/3685",[1699,3.798]],["name/3686",[418,51.28]],["parent/3686",[1699,3.798]],["name/3687",[151,50.463]],["parent/3687",[1699,3.798]],["name/3688",[152,50.463]],["parent/3688",[1699,3.798]],["name/3689",[153,50.463]],["parent/3689",[1699,3.798]],["name/3690",[154,51.28]],["parent/3690",[1699,3.798]],["name/3691",[155,51.28]],["parent/3691",[1699,3.798]],["name/3692",[156,50.463]],["parent/3692",[1699,3.798]],["name/3693",[157,50.463]],["parent/3693",[1699,3.798]],["name/3694",[158,50.463]],["parent/3694",[1699,3.798]],["name/3695",[159,50.463]],["parent/3695",[1699,3.798]],["name/3696",[117,16.899]],["parent/3696",[1728,7.871]],["name/3697",[161,50.463]],["parent/3697",[1699,3.798]],["name/3698",[117,16.899]],["parent/3698",[1729,7.871]],["name/3699",[163,44.034]],["parent/3699",[1699,3.798]],["name/3700",[117,16.899]],["parent/3700",[1730,7.871]],["name/3701",[390,52.17]],["parent/3701",[1699,3.798]],["name/3702",[117,16.899]],["parent/3702",[1731,7.871]],["name/3703",[165,50.463]],["parent/3703",[1699,3.798]],["name/3704",[117,16.899]],["parent/3704",[1732,7.871]],["name/3705",[167,50.463]],["parent/3705",[1699,3.798]],["name/3706",[168,50.463]],["parent/3706",[1699,3.798]],["name/3707",[169,50.463]],["parent/3707",[1699,3.798]],["name/3708",[170,50.463]],["parent/3708",[1699,3.798]],["name/3709",[171,50.463]],["parent/3709",[1699,3.798]],["name/3710",[172,50.463]],["parent/3710",[1699,3.798]],["name/3711",[173,50.079]],["parent/3711",[1699,3.798]],["name/3712",[174,50.463]],["parent/3712",[1699,3.798]],["name/3713",[175,50.463]],["parent/3713",[1699,3.798]],["name/3714",[176,50.463]],["parent/3714",[1699,3.798]],["name/3715",[177,50.463]],["parent/3715",[1699,3.798]],["name/3716",[178,50.463]],["parent/3716",[1699,3.798]],["name/3717",[179,50.463]],["parent/3717",[1699,3.798]],["name/3718",[180,50.463]],["parent/3718",[1699,3.798]],["name/3719",[181,50.463]],["parent/3719",[1699,3.798]],["name/3720",[182,50.463]],["parent/3720",[1699,3.798]],["name/3721",[184,50.463]],["parent/3721",[1699,3.798]],["name/3722",[185,50.463]],["parent/3722",[1699,3.798]],["name/3723",[186,51.28]],["parent/3723",[1699,3.798]],["name/3724",[187,51.28]],["parent/3724",[1699,3.798]],["name/3725",[117,16.899]],["parent/3725",[1733,7.871]],["name/3726",[189,51.28]],["parent/3726",[1734,5.259]],["name/3727",[191,42.868]],["parent/3727",[1734,5.259]],["name/3728",[192,50.079]],["parent/3728",[1734,5.259]],["name/3729",[193,44.243]],["parent/3729",[1734,5.259]],["name/3730",[194,51.28]],["parent/3730",[1734,5.259]],["name/3731",[195,51.28]],["parent/3731",[1734,5.259]],["name/3732",[196,51.28]],["parent/3732",[1734,5.259]],["name/3733",[197,50.463]],["parent/3733",[1734,5.259]],["name/3734",[198,51.28]],["parent/3734",[1734,5.259]],["name/3735",[199,50.463]],["parent/3735",[1734,5.259]],["name/3736",[200,51.28]],["parent/3736",[1734,5.259]],["name/3737",[201,51.28]],["parent/3737",[1734,5.259]],["name/3738",[202,51.28]],["parent/3738",[1734,5.259]],["name/3739",[203,51.28]],["parent/3739",[1734,5.259]],["name/3740",[163,44.034]],["parent/3740",[1734,5.259]],["name/3741",[204,51.28]],["parent/3741",[1734,5.259]],["name/3742",[205,51.28]],["parent/3742",[1734,5.259]],["name/3743",[206,51.28]],["parent/3743",[1734,5.259]],["name/3744",[207,48.038]],["parent/3744",[1734,5.259]],["name/3745",[208,51.28]],["parent/3745",[1734,5.259]],["name/3746",[209,51.28]],["parent/3746",[1699,3.798]],["name/3747",[117,16.899]],["parent/3747",[1735,7.871]],["name/3748",[193,44.243]],["parent/3748",[1736,6.573]],["name/3749",[212,51.28]],["parent/3749",[1736,6.573]],["name/3750",[191,42.868]],["parent/3750",[1736,6.573]],["name/3751",[213,51.28]],["parent/3751",[1736,6.573]],["name/3752",[214,49.006]],["parent/3752",[1736,6.573]],["name/3753",[215,50.079]],["parent/3753",[383,5.538]],["name/3754",[216,50.079]],["parent/3754",[383,5.538]],["name/3755",[1737,67.809]],["parent/3755",[]],["name/3756",[1090,73.687]],["parent/3756",[1737,6.773]],["name/3757",[2,50.079]],["parent/3757",[1738,4.068]],["name/3758",[1092,73.687]],["parent/3758",[1738,4.068]],["name/3759",[1093,73.687]],["parent/3759",[1738,4.068]],["name/3760",[52,49.351]],["parent/3760",[1738,4.068]],["name/3761",[151,50.463]],["parent/3761",[1738,4.068]],["name/3762",[152,50.463]],["parent/3762",[1738,4.068]],["name/3763",[153,50.463]],["parent/3763",[1738,4.068]],["name/3764",[156,50.463]],["parent/3764",[1738,4.068]],["name/3765",[157,50.463]],["parent/3765",[1738,4.068]],["name/3766",[158,50.463]],["parent/3766",[1738,4.068]],["name/3767",[159,50.463]],["parent/3767",[1738,4.068]],["name/3768",[117,16.899]],["parent/3768",[1739,7.871]],["name/3769",[161,50.463]],["parent/3769",[1738,4.068]],["name/3770",[117,16.899]],["parent/3770",[1740,7.871]],["name/3771",[163,44.034]],["parent/3771",[1738,4.068]],["name/3772",[117,16.899]],["parent/3772",[1741,7.871]],["name/3773",[165,50.463]],["parent/3773",[1738,4.068]],["name/3774",[117,16.899]],["parent/3774",[1742,7.871]],["name/3775",[167,50.463]],["parent/3775",[1738,4.068]],["name/3776",[168,50.463]],["parent/3776",[1738,4.068]],["name/3777",[169,50.463]],["parent/3777",[1738,4.068]],["name/3778",[170,50.463]],["parent/3778",[1738,4.068]],["name/3779",[171,50.463]],["parent/3779",[1738,4.068]],["name/3780",[172,50.463]],["parent/3780",[1738,4.068]],["name/3781",[173,50.079]],["parent/3781",[1738,4.068]],["name/3782",[174,50.463]],["parent/3782",[1738,4.068]],["name/3783",[175,50.463]],["parent/3783",[1738,4.068]],["name/3784",[176,50.463]],["parent/3784",[1738,4.068]],["name/3785",[177,50.463]],["parent/3785",[1738,4.068]],["name/3786",[178,50.463]],["parent/3786",[1738,4.068]],["name/3787",[179,50.463]],["parent/3787",[1738,4.068]],["name/3788",[180,50.463]],["parent/3788",[1738,4.068]],["name/3789",[181,50.463]],["parent/3789",[1738,4.068]],["name/3790",[182,50.463]],["parent/3790",[1738,4.068]],["name/3791",[183,50.079]],["parent/3791",[1738,4.068]],["name/3792",[184,50.463]],["parent/3792",[1738,4.068]],["name/3793",[185,50.463]],["parent/3793",[1738,4.068]],["name/3794",[93,50.079]],["parent/3794",[1738,4.068]],["name/3795",[129,50.079]],["parent/3795",[1738,4.068]],["name/3796",[117,16.899]],["parent/3796",[1743,7.871]],["name/3797",[131,50.079]],["parent/3797",[1738,4.068]],["name/3798",[117,16.899]],["parent/3798",[1744,7.871]],["name/3799",[133,50.079]],["parent/3799",[1738,4.068]],["name/3800",[117,16.899]],["parent/3800",[1745,7.871]],["name/3801",[135,50.079]],["parent/3801",[1738,4.068]],["name/3802",[117,16.899]],["parent/3802",[1746,7.871]],["name/3803",[137,50.079]],["parent/3803",[1738,4.068]],["name/3804",[117,16.899]],["parent/3804",[1747,7.871]],["name/3805",[139,50.079]],["parent/3805",[1738,4.068]],["name/3806",[117,16.899]],["parent/3806",[1748,7.871]],["name/3807",[141,50.079]],["parent/3807",[1738,4.068]],["name/3808",[117,16.899]],["parent/3808",[1749,7.871]],["name/3809",[143,50.079]],["parent/3809",[1738,4.068]],["name/3810",[117,16.899]],["parent/3810",[1750,7.871]],["name/3811",[145,50.079]],["parent/3811",[1738,4.068]],["name/3812",[117,16.899]],["parent/3812",[1751,7.871]],["name/3813",[147,50.079]],["parent/3813",[1738,4.068]],["name/3814",[117,16.899]],["parent/3814",[1752,7.871]],["name/3815",[149,50.079]],["parent/3815",[1738,4.068]],["name/3816",[117,16.899]],["parent/3816",[1753,7.871]],["name/3817",[1119,73.687]],["parent/3817",[1738,4.068]],["name/3818",[1120,73.687]],["parent/3818",[1738,4.068]],["name/3819",[1122,73.687]],["parent/3819",[1738,4.068]],["name/3820",[1123,73.687]],["parent/3820",[1738,4.068]],["name/3821",[1124,73.687]],["parent/3821",[1738,4.068]],["name/3822",[732,64.132]],["parent/3822",[1738,4.068]],["name/3823",[1125,73.687]],["parent/3823",[1738,4.068]],["name/3824",[1126,73.687]],["parent/3824",[1738,4.068]],["name/3825",[738,64.132]],["parent/3825",[1738,4.068]],["name/3826",[1127,73.687]],["parent/3826",[1738,4.068]],["name/3827",[1128,73.687]],["parent/3827",[1738,4.068]],["name/3828",[1129,73.687]],["parent/3828",[1738,4.068]],["name/3829",[1130,73.687]],["parent/3829",[1738,4.068]],["name/3830",[1131,73.687]],["parent/3830",[1738,4.068]],["name/3831",[1132,73.687]],["parent/3831",[1738,4.068]],["name/3832",[1133,73.687]],["parent/3832",[1738,4.068]],["name/3833",[1134,70.322]],["parent/3833",[1738,4.068]],["name/3834",[765,67.809]],["parent/3834",[1738,4.068]],["name/3835",[766,64.132]],["parent/3835",[1738,4.068]],["name/3836",[1080,70.322]],["parent/3836",[1738,4.068]],["name/3837",[1135,73.687]],["parent/3837",[1738,4.068]],["name/3838",[241,57.593]],["parent/3838",[1738,4.068]],["name/3839",[117,16.899]],["parent/3839",[1754,7.871]],["name/3840",[215,50.079]],["parent/3840",[1737,6.773]],["name/3841",[216,50.079]],["parent/3841",[1737,6.773]],["name/3842",[1755,67.809]],["parent/3842",[]],["name/3843",[1756,78.795]],["parent/3843",[1755,6.773]],["name/3844",[2,50.079]],["parent/3844",[1757,4.129]],["name/3845",[1758,78.795]],["parent/3845",[1757,4.129]],["name/3846",[1759,78.795]],["parent/3846",[1757,4.129]],["name/3847",[52,49.351]],["parent/3847",[1757,4.129]],["name/3848",[458,65.803]],["parent/3848",[1757,4.129]],["name/3849",[117,16.899]],["parent/3849",[1760,7.871]],["name/3850",[151,50.463]],["parent/3850",[1757,4.129]],["name/3851",[152,50.463]],["parent/3851",[1757,4.129]],["name/3852",[153,50.463]],["parent/3852",[1757,4.129]],["name/3853",[154,51.28]],["parent/3853",[1757,4.129]],["name/3854",[155,51.28]],["parent/3854",[1757,4.129]],["name/3855",[156,50.463]],["parent/3855",[1757,4.129]],["name/3856",[157,50.463]],["parent/3856",[1757,4.129]],["name/3857",[158,50.463]],["parent/3857",[1757,4.129]],["name/3858",[159,50.463]],["parent/3858",[1757,4.129]],["name/3859",[117,16.899]],["parent/3859",[1761,7.871]],["name/3860",[161,50.463]],["parent/3860",[1757,4.129]],["name/3861",[117,16.899]],["parent/3861",[1762,7.871]],["name/3862",[163,44.034]],["parent/3862",[1757,4.129]],["name/3863",[117,16.899]],["parent/3863",[1763,7.871]],["name/3864",[390,52.17]],["parent/3864",[1757,4.129]],["name/3865",[117,16.899]],["parent/3865",[1764,7.871]],["name/3866",[165,50.463]],["parent/3866",[1757,4.129]],["name/3867",[117,16.899]],["parent/3867",[1765,7.871]],["name/3868",[167,50.463]],["parent/3868",[1757,4.129]],["name/3869",[168,50.463]],["parent/3869",[1757,4.129]],["name/3870",[169,50.463]],["parent/3870",[1757,4.129]],["name/3871",[170,50.463]],["parent/3871",[1757,4.129]],["name/3872",[171,50.463]],["parent/3872",[1757,4.129]],["name/3873",[172,50.463]],["parent/3873",[1757,4.129]],["name/3874",[173,50.079]],["parent/3874",[1757,4.129]],["name/3875",[174,50.463]],["parent/3875",[1757,4.129]],["name/3876",[175,50.463]],["parent/3876",[1757,4.129]],["name/3877",[176,50.463]],["parent/3877",[1757,4.129]],["name/3878",[177,50.463]],["parent/3878",[1757,4.129]],["name/3879",[178,50.463]],["parent/3879",[1757,4.129]],["name/3880",[179,50.463]],["parent/3880",[1757,4.129]],["name/3881",[180,50.463]],["parent/3881",[1757,4.129]],["name/3882",[181,50.463]],["parent/3882",[1757,4.129]],["name/3883",[182,50.463]],["parent/3883",[1757,4.129]],["name/3884",[183,50.079]],["parent/3884",[1757,4.129]],["name/3885",[184,50.463]],["parent/3885",[1757,4.129]],["name/3886",[185,50.463]],["parent/3886",[1757,4.129]],["name/3887",[186,51.28]],["parent/3887",[1757,4.129]],["name/3888",[187,51.28]],["parent/3888",[1757,4.129]],["name/3889",[117,16.899]],["parent/3889",[1766,7.871]],["name/3890",[189,51.28]],["parent/3890",[1767,5.259]],["name/3891",[191,42.868]],["parent/3891",[1767,5.259]],["name/3892",[192,50.079]],["parent/3892",[1767,5.259]],["name/3893",[193,44.243]],["parent/3893",[1767,5.259]],["name/3894",[194,51.28]],["parent/3894",[1767,5.259]],["name/3895",[195,51.28]],["parent/3895",[1767,5.259]],["name/3896",[196,51.28]],["parent/3896",[1767,5.259]],["name/3897",[197,50.463]],["parent/3897",[1767,5.259]],["name/3898",[198,51.28]],["parent/3898",[1767,5.259]],["name/3899",[199,50.463]],["parent/3899",[1767,5.259]],["name/3900",[200,51.28]],["parent/3900",[1767,5.259]],["name/3901",[201,51.28]],["parent/3901",[1767,5.259]],["name/3902",[202,51.28]],["parent/3902",[1767,5.259]],["name/3903",[203,51.28]],["parent/3903",[1767,5.259]],["name/3904",[163,44.034]],["parent/3904",[1767,5.259]],["name/3905",[204,51.28]],["parent/3905",[1767,5.259]],["name/3906",[205,51.28]],["parent/3906",[1767,5.259]],["name/3907",[206,51.28]],["parent/3907",[1767,5.259]],["name/3908",[207,48.038]],["parent/3908",[1767,5.259]],["name/3909",[208,51.28]],["parent/3909",[1767,5.259]],["name/3910",[209,51.28]],["parent/3910",[1757,4.129]],["name/3911",[117,16.899]],["parent/3911",[1768,7.871]],["name/3912",[193,44.243]],["parent/3912",[1769,6.573]],["name/3913",[212,51.28]],["parent/3913",[1769,6.573]],["name/3914",[191,42.868]],["parent/3914",[1769,6.573]],["name/3915",[213,51.28]],["parent/3915",[1769,6.573]],["name/3916",[214,49.006]],["parent/3916",[1769,6.573]],["name/3917",[93,50.079]],["parent/3917",[1757,4.129]],["name/3918",[397,51.28]],["parent/3918",[1757,4.129]],["name/3919",[398,51.28]],["parent/3919",[1757,4.129]],["name/3920",[117,16.899]],["parent/3920",[1770,7.871]],["name/3921",[129,50.079]],["parent/3921",[1757,4.129]],["name/3922",[117,16.899]],["parent/3922",[1771,7.871]],["name/3923",[401,51.28]],["parent/3923",[1757,4.129]],["name/3924",[117,16.899]],["parent/3924",[1772,7.871]],["name/3925",[131,50.079]],["parent/3925",[1757,4.129]],["name/3926",[117,16.899]],["parent/3926",[1773,7.871]],["name/3927",[133,50.079]],["parent/3927",[1757,4.129]],["name/3928",[117,16.899]],["parent/3928",[1774,7.871]],["name/3929",[135,50.079]],["parent/3929",[1757,4.129]],["name/3930",[117,16.899]],["parent/3930",[1775,7.871]],["name/3931",[137,50.079]],["parent/3931",[1757,4.129]],["name/3932",[117,16.899]],["parent/3932",[1776,7.871]],["name/3933",[139,50.079]],["parent/3933",[1757,4.129]],["name/3934",[117,16.899]],["parent/3934",[1777,7.871]],["name/3935",[141,50.079]],["parent/3935",[1757,4.129]],["name/3936",[117,16.899]],["parent/3936",[1778,7.871]],["name/3937",[143,50.079]],["parent/3937",[1757,4.129]],["name/3938",[117,16.899]],["parent/3938",[1779,7.871]],["name/3939",[145,50.079]],["parent/3939",[1757,4.129]],["name/3940",[117,16.899]],["parent/3940",[1780,7.871]],["name/3941",[147,50.079]],["parent/3941",[1757,4.129]],["name/3942",[117,16.899]],["parent/3942",[1781,7.871]],["name/3943",[149,50.079]],["parent/3943",[1757,4.129]],["name/3944",[117,16.899]],["parent/3944",[1782,7.871]],["name/3945",[413,51.28]],["parent/3945",[1757,4.129]],["name/3946",[117,16.899]],["parent/3946",[1783,7.871]],["name/3947",[415,51.28]],["parent/3947",[1757,4.129]],["name/3948",[117,16.899]],["parent/3948",[1784,7.871]],["name/3949",[417,51.28]],["parent/3949",[1757,4.129]],["name/3950",[418,51.28]],["parent/3950",[1757,4.129]],["name/3951",[1785,78.795]],["parent/3951",[1757,4.129]],["name/3952",[1786,78.795]],["parent/3952",[1757,4.129]],["name/3953",[241,57.593]],["parent/3953",[1757,4.129]],["name/3954",[117,16.899]],["parent/3954",[1787,7.871]],["name/3955",[634,61.449]],["parent/3955",[1757,4.129]],["name/3956",[117,16.899]],["parent/3956",[1788,7.871]],["name/3957",[215,50.079]],["parent/3957",[1755,6.773]],["name/3958",[216,50.079]],["parent/3958",[1755,6.773]],["name/3959",[1789,67.809]],["parent/3959",[]],["name/3960",[52,49.351]],["parent/3960",[1789,6.773]],["name/3961",[1790,78.795]],["parent/3961",[1789,6.773]],["name/3962",[1791,78.795]],["parent/3962",[1789,6.773]]],"invertedIndex":[["__type",{"_index":117,"name":{"116":{},"118":{},"120":{},"122":{},"124":{},"126":{},"128":{},"130":{},"132":{},"134":{},"136":{},"138":{},"140":{},"142":{},"144":{},"146":{},"148":{},"158":{},"160":{},"162":{},"164":{},"186":{},"208":{},"235":{},"237":{},"239":{},"241":{},"243":{},"245":{},"247":{},"249":{},"251":{},"253":{},"255":{},"257":{},"259":{},"261":{},"263":{},"265":{},"269":{},"272":{},"286":{},"292":{},"296":{},"302":{},"305":{},"312":{},"320":{},"325":{},"329":{},"334":{},"341":{},"344":{},"349":{},"353":{},"364":{},"371":{},"376":{},"394":{},"396":{},"398":{},"400":{},"402":{},"424":{},"446":{},"454":{},"456":{},"458":{},"460":{},"462":{},"464":{},"466":{},"468":{},"470":{},"472":{},"474":{},"476":{},"478":{},"480":{},"482":{},"529":{},"539":{},"541":{},"543":{},"545":{},"547":{},"569":{},"591":{},"602":{},"618":{},"626":{},"636":{},"644":{},"648":{},"656":{},"661":{},"668":{},"673":{},"685":{},"690":{},"695":{},"706":{},"708":{},"710":{},"712":{},"714":{},"716":{},"718":{},"720":{},"722":{},"724":{},"726":{},"728":{},"730":{},"732":{},"734":{},"752":{},"762":{},"764":{},"766":{},"768":{},"770":{},"792":{},"814":{},"825":{},"841":{},"849":{},"859":{},"867":{},"871":{},"879":{},"884":{},"891":{},"896":{},"908":{},"913":{},"918":{},"929":{},"931":{},"933":{},"935":{},"937":{},"939":{},"941":{},"943":{},"945":{},"947":{},"949":{},"951":{},"953":{},"955":{},"957":{},"990":{},"992":{},"994":{},"996":{},"998":{},"1000":{},"1003":{},"1005":{},"1007":{},"1009":{},"1011":{},"1013":{},"1015":{},"1017":{},"1019":{},"1021":{},"1023":{},"1025":{},"1027":{},"1029":{},"1031":{},"1033":{},"1045":{},"1047":{},"1049":{},"1051":{},"1053":{},"1074":{},"1096":{},"1115":{},"1117":{},"1119":{},"1121":{},"1123":{},"1125":{},"1127":{},"1129":{},"1131":{},"1133":{},"1135":{},"1137":{},"1139":{},"1141":{},"1143":{},"1145":{},"1157":{},"1159":{},"1161":{},"1163":{},"1165":{},"1186":{},"1208":{},"1309":{},"1325":{},"1327":{},"1329":{},"1331":{},"1333":{},"1335":{},"1337":{},"1339":{},"1341":{},"1343":{},"1345":{},"1347":{},"1349":{},"1351":{},"1353":{},"1355":{},"1359":{},"1361":{},"1363":{},"1365":{},"1367":{},"1369":{},"1379":{},"1381":{},"1383":{},"1385":{},"1387":{},"1408":{},"1430":{},"1472":{},"1476":{},"1478":{},"1480":{},"1482":{},"1484":{},"1486":{},"1488":{},"1490":{},"1492":{},"1494":{},"1496":{},"1498":{},"1500":{},"1502":{},"1504":{},"1506":{},"1518":{},"1520":{},"1522":{},"1524":{},"1545":{},"1567":{},"1580":{},"1590":{},"1592":{},"1594":{},"1596":{},"1598":{},"1620":{},"1642":{},"1650":{},"1652":{},"1654":{},"1658":{},"1660":{},"1662":{},"1664":{},"1666":{},"1668":{},"1670":{},"1672":{},"1674":{},"1676":{},"1678":{},"1680":{},"1682":{},"1684":{},"1686":{},"1721":{},"1723":{},"1725":{},"1727":{},"1729":{},"1731":{},"1733":{},"1735":{},"1737":{},"1739":{},"1741":{},"1743":{},"1745":{},"1747":{},"1749":{},"1751":{},"1764":{},"1766":{},"1768":{},"1770":{},"1772":{},"1774":{},"1776":{},"1778":{},"1780":{},"1782":{},"1784":{},"1792":{},"1794":{},"1796":{},"1798":{},"1822":{},"1824":{},"1826":{},"1828":{},"1830":{},"1833":{},"1836":{},"1841":{},"1843":{},"1845":{},"1847":{},"1849":{},"1855":{},"1857":{},"1859":{},"1861":{},"1863":{},"1865":{},"1867":{},"1874":{},"1876":{},"1883":{},"1889":{},"1897":{},"1908":{},"1913":{},"1919":{},"1925":{},"1927":{},"1933":{},"1942":{},"1947":{},"1950":{},"1957":{},"1964":{},"1967":{},"1987":{},"1989":{},"1991":{},"1993":{},"1995":{},"2017":{},"2039":{},"2048":{},"2050":{},"2052":{},"2054":{},"2056":{},"2058":{},"2060":{},"2062":{},"2064":{},"2066":{},"2068":{},"2070":{},"2072":{},"2074":{},"2076":{},"2107":{},"2109":{},"2125":{},"2127":{},"2129":{},"2131":{},"2133":{},"2135":{},"2137":{},"2139":{},"2141":{},"2143":{},"2145":{},"2147":{},"2149":{},"2151":{},"2153":{},"2155":{},"2167":{},"2169":{},"2171":{},"2173":{},"2175":{},"2196":{},"2218":{},"2225":{},"2227":{},"2229":{},"2231":{},"2233":{},"2240":{},"2288":{},"2290":{},"2292":{},"2294":{},"2296":{},"2298":{},"2300":{},"2302":{},"2304":{},"2306":{},"2308":{},"2310":{},"2312":{},"2314":{},"2316":{},"2318":{},"2330":{},"2332":{},"2334":{},"2336":{},"2338":{},"2359":{},"2381":{},"2402":{},"2404":{},"2406":{},"2408":{},"2410":{},"2412":{},"2414":{},"2416":{},"2418":{},"2420":{},"2422":{},"2424":{},"2426":{},"2428":{},"2430":{},"2432":{},"2444":{},"2446":{},"2448":{},"2450":{},"2452":{},"2473":{},"2495":{},"2502":{},"2504":{},"2506":{},"2533":{},"2537":{},"2539":{},"2541":{},"2543":{},"2545":{},"2547":{},"2549":{},"2551":{},"2553":{},"2555":{},"2557":{},"2559":{},"2561":{},"2563":{},"2565":{},"2567":{},"2579":{},"2581":{},"2583":{},"2585":{},"2587":{},"2608":{},"2630":{},"2654":{},"2656":{},"2658":{},"2660":{},"2662":{},"2664":{},"2666":{},"2668":{},"2670":{},"2672":{},"2674":{},"2676":{},"2678":{},"2680":{},"2682":{},"2684":{},"2695":{},"2697":{},"2699":{},"2701":{},"2703":{},"2724":{},"2746":{},"2753":{},"2755":{},"2757":{},"2759":{},"2761":{},"2763":{},"2765":{},"2767":{},"2789":{},"2791":{},"2795":{},"2797":{},"2799":{},"2801":{},"2803":{},"2805":{},"2807":{},"2809":{},"2811":{},"2813":{},"2815":{},"2817":{},"2819":{},"2821":{},"2823":{},"2825":{},"2837":{},"2839":{},"2841":{},"2843":{},"2845":{},"2866":{},"2888":{},"2903":{},"2907":{},"2909":{},"2911":{},"2913":{},"2915":{},"2917":{},"2919":{},"2921":{},"2923":{},"2925":{},"2927":{},"2929":{},"2931":{},"2933":{},"2935":{},"2937":{},"2949":{},"2951":{},"2953":{},"2955":{},"2957":{},"2978":{},"3000":{},"3017":{},"3019":{},"3023":{},"3025":{},"3027":{},"3029":{},"3031":{},"3033":{},"3035":{},"3037":{},"3039":{},"3041":{},"3043":{},"3045":{},"3047":{},"3049":{},"3051":{},"3053":{},"3064":{},"3066":{},"3068":{},"3070":{},"3072":{},"3093":{},"3115":{},"3136":{},"3138":{},"3140":{},"3142":{},"3146":{},"3148":{},"3150":{},"3152":{},"3154":{},"3156":{},"3158":{},"3160":{},"3162":{},"3164":{},"3166":{},"3168":{},"3170":{},"3172":{},"3174":{},"3176":{},"3188":{},"3190":{},"3192":{},"3194":{},"3196":{},"3217":{},"3239":{},"3329":{},"3331":{},"3333":{},"3335":{},"3337":{},"3339":{},"3341":{},"3343":{},"3346":{},"3348":{},"3350":{},"3352":{},"3354":{},"3356":{},"3358":{},"3360":{},"3362":{},"3364":{},"3366":{},"3368":{},"3370":{},"3381":{},"3383":{},"3385":{},"3387":{},"3389":{},"3410":{},"3432":{},"3504":{},"3506":{},"3508":{},"3511":{},"3513":{},"3515":{},"3517":{},"3519":{},"3521":{},"3523":{},"3525":{},"3527":{},"3529":{},"3531":{},"3533":{},"3535":{},"3537":{},"3539":{},"3541":{},"3552":{},"3554":{},"3556":{},"3558":{},"3560":{},"3581":{},"3603":{},"3643":{},"3645":{},"3647":{},"3649":{},"3651":{},"3654":{},"3656":{},"3658":{},"3660":{},"3662":{},"3664":{},"3666":{},"3668":{},"3670":{},"3672":{},"3674":{},"3676":{},"3678":{},"3680":{},"3682":{},"3684":{},"3696":{},"3698":{},"3700":{},"3702":{},"3704":{},"3725":{},"3747":{},"3768":{},"3770":{},"3772":{},"3774":{},"3796":{},"3798":{},"3800":{},"3802":{},"3804":{},"3806":{},"3808":{},"3810":{},"3812":{},"3814":{},"3816":{},"3839":{},"3849":{},"3859":{},"3861":{},"3863":{},"3865":{},"3867":{},"3889":{},"3911":{},"3920":{},"3922":{},"3924":{},"3926":{},"3928":{},"3930":{},"3932":{},"3934":{},"3936":{},"3938":{},"3940":{},"3942":{},"3944":{},"3946":{},"3948":{},"3954":{},"3956":{}},"parent":{}}],["abtestsegment",{"_index":332,"name":{"328":{}},"parent":{}}],["accounttransaction",{"_index":1344,"name":{"2649":{}},"parent":{}}],["addcertificateforzone",{"_index":23,"name":{"22":{}},"parent":{}}],["addcoupontobasket",{"_index":429,"name":{"497":{}},"parent":{}}],["addgiftcertificateitemtobasket",{"_index":432,"name":{"500":{}},"parent":{}}],["additemtobasket",{"_index":435,"name":{"503":{}},"parent":{}}],["addpaymentinstrumenttobasket",{"_index":440,"name":{"508":{}},"parent":{}}],["addpriceadjustmenttobasket",{"_index":444,"name":{"512":{}},"parent":{}}],["addpricebookstobasket",{"_index":448,"name":{"516":{}},"parent":{}}],["addproductstoexclusionlist",{"_index":1545,"name":{"3266":{}},"parent":{}}],["address",{"_index":295,"name":{"294":{}},"parent":{}}],["addtaxesforbasket",{"_index":457,"name":{"525":{}},"parent":{}}],["addtaxesforbasketitem",{"_index":439,"name":{"507":{}},"parent":{}}],["alreadyexists",{"_index":632,"name":{"997":{}},"parent":{}}],["amount",{"_index":288,"name":{"287":{}},"parent":{}}],["apiname",{"_index":1190,"name":{"2244":{}},"parent":{}}],["apiversion",{"_index":1191,"name":{"2245":{}},"parent":{}}],["aspectattributeinvalid",{"_index":1178,"name":{"2230":{}},"parent":{}}],["aspecttypenotfound",{"_index":1174,"name":{"2226":{}},"parent":{}}],["assignments",{"_index":1209,"name":{"2271":{}},"parent":{}}],["assignmentssearch",{"_index":1211,"name":{"2273":{}},"parent":{}}],["assignproducttocategory",{"_index":1541,"name":{"3262":{}},"parent":{}}],["assignvariationformasterproduct",{"_index":1643,"name":{"3456":{}},"parent":{}}],["assignvariationgrouptomasterproduct",{"_index":1638,"name":{"3451":{}},"parent":{}}],["asynccreated",{"_index":141,"name":{"139":{},"469":{},"721":{},"944":{},"1018":{},"1130":{},"1340":{},"1491":{},"1673":{},"1736":{},"1775":{},"2063":{},"2140":{},"2303":{},"2417":{},"2552":{},"2669":{},"2810":{},"2922":{},"3038":{},"3161":{},"3357":{},"3526":{},"3669":{},"3807":{},"3935":{}},"parent":{}}],["attributedefinition",{"_index":187,"name":{"185":{},"423":{},"568":{},"791":{},"1073":{},"1185":{},"1407":{},"1544":{},"1619":{},"2016":{},"2195":{},"2358":{},"2472":{},"2607":{},"2723":{},"2865":{},"2977":{},"3092":{},"3216":{},"3409":{},"3580":{},"3724":{},"3888":{}},"parent":{}}],["attributegrouping",{"_index":1066,"name":{"1949":{}},"parent":{}}],["attributeid",{"_index":1038,"name":{"1910":{},"1916":{},"1921":{},"1930":{},"1935":{},"1943":{},"1951":{}},"parent":{}}],["attributesorting",{"_index":1059,"name":{"1941":{}},"parent":{}}],["attributesquery",{"_index":1007,"name":{"1875":{}},"parent":{}}],["authenticatecustomer",{"_index":806,"name":{"1440":{},"2248":{}},"parent":{}}],["authenticationfailure",{"_index":984,"name":{"1846":{}},"parent":{}}],["authorizationfailure",{"_index":994,"name":{"1858":{}},"parent":{}}],["authorize",{"_index":1199,"name":{"2260":{}},"parent":{}}],["authorizecustomer",{"_index":809,"name":{"1443":{},"2249":{}},"parent":{}}],["authorizepasswordlesscustomer",{"_index":807,"name":{"1441":{}},"parent":{}}],["authrequest",{"_index":749,"name":{"1291":{}},"parent":{}}],["badrequest",{"_index":241,"name":{"242":{},"993":{},"1362":{},"1649":{},"1860":{},"2108":{},"3018":{},"3334":{},"3505":{},"3644":{},"3838":{},"3953":{}},"parent":{}}],["badrequest1",{"_index":1707,"name":{"3646":{}},"parent":{}}],["badrequest2",{"_index":1710,"name":{"3650":{}},"parent":{}}],["baseerror",{"_index":986,"name":{"1848":{}},"parent":{}}],["basket",{"_index":503,"name":{"659":{},"882":{},"1294":{}},"parent":{}}],["basketpaymentinstrumentrequest",{"_index":487,"name":{"634":{},"857":{}},"parent":{}}],["basketreopen",{"_index":259,"name":{"260":{}},"parent":{}}],["basketsresult",{"_index":728,"name":{"1255":{}},"parent":{}}],["bonusdiscountlineitem",{"_index":311,"name":{"308":{},"639":{},"862":{},"1276":{}},"parent":{}}],["boolfilter",{"_index":168,"name":{"166":{},"404":{},"549":{},"772":{},"1055":{},"1167":{},"1389":{},"1526":{},"1600":{},"1800":{},"1997":{},"2177":{},"2340":{},"2454":{},"2589":{},"2705":{},"2847":{},"2959":{},"3074":{},"3198":{},"3391":{},"3562":{},"3706":{},"3776":{},"3869":{}},"parent":{}}],["boolquery",{"_index":178,"name":{"176":{},"414":{},"559":{},"782":{},"1065":{},"1177":{},"1399":{},"1536":{},"1610":{},"1810":{},"2007":{},"2187":{},"2350":{},"2464":{},"2599":{},"2715":{},"2857":{},"2969":{},"3084":{},"3208":{},"3401":{},"3572":{},"3716":{},"3786":{},"3879":{}},"parent":{}}],["brandsuggestions",{"_index":1127,"name":{"2092":{},"3826":{}},"parent":{}}],["bundledproduct",{"_index":768,"name":{"1318":{},"3640":{}},"parent":{}}],["businessobjectidinvalid",{"_index":1172,"name":{"2224":{}},"parent":{}}],["cachepurge",{"_index":20,"name":{"19":{}},"parent":{}}],["cachepurgerequest",{"_index":54,"name":{"53":{}},"parent":{}}],["cachepurgeresponse",{"_index":112,"name":{"111":{}},"parent":{}}],["cachepurgeresponseenvelope",{"_index":55,"name":{"54":{}},"parent":{}}],["callcustomendpoint",{"_index":1192,"name":{"2246":{},"2269":{}},"parent":{}}],["calloutmsg",{"_index":481,"name":{"627":{},"850":{}},"parent":{}}],["campaign",{"_index":1213,"name":{"2276":{},"2398":{},"2780":{}},"parent":{}}],["campaignduplicate",{"_index":1280,"name":{"2501":{}},"parent":{}}],["campaignnotfound",{"_index":1282,"name":{"2503":{}},"parent":{}}],["campaigns",{"_index":1247,"name":{"2389":{}},"parent":{}}],["campaignsearchresult",{"_index":1254,"name":{"2397":{}},"parent":{}}],["campaignssearch",{"_index":1249,"name":{"2391":{}},"parent":{}}],["cancelorderconflict",{"_index":239,"name":{"240":{}},"parent":{}}],["cardtype",{"_index":273,"name":{"273":{},"603":{},"674":{},"826":{},"897":{}},"parent":{}}],["catalog",{"_index":1593,"name":{"3325":{}},"parent":{}}],["catalogcategoryid",{"_index":1569,"name":{"3294":{},"3484":{}},"parent":{}}],["catalogs",{"_index":1527,"name":{"3248":{},"3310":{}},"parent":{}}],["catalogsearchresult",{"_index":1584,"name":{"3314":{}},"parent":{}}],["categories",{"_index":1570,"name":{"3295":{}},"parent":{}}],["categorizationattributedefiniton",{"_index":1667,"name":{"3498":{}},"parent":{}}],["categorizationattributedefinitonsresult",{"_index":1666,"name":{"3485":{}},"parent":{}}],["category",{"_index":1566,"name":{"3290":{},"3622":{}},"parent":{}}],["categorylink",{"_index":1581,"name":{"3311":{}},"parent":{}}],["categorylinks",{"_index":1577,"name":{"3305":{}},"parent":{}}],["categoryproductassignment",{"_index":1588,"name":{"3319":{}},"parent":{}}],["categoryproductassignmentsearchresult",{"_index":1563,"name":{"3286":{}},"parent":{}}],["categoryresult",{"_index":1703,"name":{"3623":{}},"parent":{}}],["categorysearchresult",{"_index":1565,"name":{"3289":{}},"parent":{}}],["categorysuggestions",{"_index":1122,"name":{"2083":{},"3819":{}},"parent":{}}],["cdn",{"_index":0,"name":{"0":{}},"parent":{"1":{},"214":{},"215":{}}}],["cdn.cdnzones",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"117":{},"119":{},"121":{},"123":{},"125":{},"127":{},"129":{},"131":{},"133":{},"135":{},"137":{},"139":{},"141":{},"143":{},"145":{},"147":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"159":{},"161":{},"163":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"207":{}}}],["cdn.cdnzones.asynccreated",{"_index":142,"name":{},"parent":{"140":{}}}],["cdn.cdnzones.attributedefinition",{"_index":188,"name":{},"parent":{"186":{}}}],["cdn.cdnzones.attributedefinition.__type",{"_index":190,"name":{},"parent":{"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{}}}],["cdn.cdnzones.dateconditionalrequest",{"_index":136,"name":{},"parent":{"134":{}}}],["cdn.cdnzones.etagconditionalrequest",{"_index":140,"name":{},"parent":{"138":{}}}],["cdn.cdnzones.etagresponse",{"_index":130,"name":{},"parent":{"128":{}}}],["cdn.cdnzones.hasbadrequestresponse",{"_index":120,"name":{},"parent":{"118":{}}}],["cdn.cdnzones.hasconflictresponse",{"_index":122,"name":{},"parent":{"120":{}}}],["cdn.cdnzones.hasforbiddenaccessresponse",{"_index":124,"name":{},"parent":{"122":{}}}],["cdn.cdnzones.hasinternalservererrorresponse",{"_index":126,"name":{},"parent":{"124":{}}}],["cdn.cdnzones.hasresourcenotfoundresponse",{"_index":128,"name":{},"parent":{"126":{}}}],["cdn.cdnzones.hasunauthorizedresponse",{"_index":118,"name":{},"parent":{"116":{}}}],["cdn.cdnzones.nopropertiesallowed",{"_index":166,"name":{},"parent":{"164":{}}}],["cdn.cdnzones.offsetpaginated",{"_index":148,"name":{},"parent":{"146":{}}}],["cdn.cdnzones.propertyvaluedefinition",{"_index":210,"name":{},"parent":{"208":{}}}],["cdn.cdnzones.propertyvaluedefinition.__type",{"_index":211,"name":{},"parent":{"209":{},"210":{},"211":{},"212":{},"213":{}}}],["cdn.cdnzones.queryparamslimit",{"_index":160,"name":{},"parent":{"158":{}}}],["cdn.cdnzones.queryparamsoffset",{"_index":162,"name":{},"parent":{"160":{}}}],["cdn.cdnzones.ratelimited",{"_index":144,"name":{},"parent":{"142":{}}}],["cdn.cdnzones.ratelimited2",{"_index":146,"name":{},"parent":{"144":{}}}],["cdn.cdnzones.ratelimited3",{"_index":132,"name":{},"parent":{"130":{}}}],["cdn.cdnzones.ratelimited4",{"_index":150,"name":{},"parent":{"148":{}}}],["cdn.cdnzones.ratelimited5",{"_index":138,"name":{},"parent":{"136":{}}}],["cdn.cdnzones.sitespecific",{"_index":164,"name":{},"parent":{"162":{}}}],["cdn.cdnzones.synccreated",{"_index":134,"name":{},"parent":{"132":{}}}],["cdnzones",{"_index":1,"name":{"1":{}},"parent":{}}],["certificate",{"_index":109,"name":{"108":{}},"parent":{}}],["certificateenvelope",{"_index":103,"name":{"102":{}},"parent":{}}],["certificaterequest",{"_index":87,"name":{"86":{}},"parent":{}}],["certificatesenvelope",{"_index":71,"name":{"70":{}},"parent":{}}],["changecontrolled",{"_index":397,"name":{"452":{},"704":{},"927":{},"1001":{},"1113":{},"1323":{},"1474":{},"1656":{},"1719":{},"2046":{},"2123":{},"2286":{},"2400":{},"2535":{},"2652":{},"2793":{},"2905":{},"3021":{},"3144":{},"3344":{},"3509":{},"3652":{},"3918":{}},"parent":{}}],["changecontrolleddatatype",{"_index":417,"name":{"483":{},"735":{},"958":{},"1034":{},"1146":{},"1356":{},"1507":{},"1687":{},"1752":{},"2077":{},"2156":{},"2319":{},"2433":{},"2568":{},"2685":{},"2826":{},"2938":{},"3054":{},"3177":{},"3371":{},"3542":{},"3685":{},"3949":{}},"parent":{}}],["checkout",{"_index":217,"name":{"216":{}},"parent":{"217":{},"485":{},"486":{},"487":{},"737":{},"738":{},"739":{},"960":{},"961":{}}}],["checkout.orders",{"_index":219,"name":{},"parent":{"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"236":{},"238":{},"240":{},"242":{},"244":{},"246":{},"248":{},"250":{},"252":{},"254":{},"256":{},"258":{},"260":{},"262":{},"264":{},"266":{},"267":{},"268":{},"271":{},"284":{},"285":{},"291":{},"294":{},"295":{},"301":{},"304":{},"307":{},"308":{},"309":{},"310":{},"311":{},"318":{},"319":{},"322":{},"323":{},"324":{},"327":{},"328":{},"332":{},"333":{},"339":{},"340":{},"343":{},"346":{},"347":{},"348":{},"352":{},"359":{},"360":{},"361":{},"362":{},"363":{},"369":{},"370":{},"375":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"395":{},"397":{},"399":{},"401":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"445":{},"452":{},"453":{},"455":{},"457":{},"459":{},"461":{},"463":{},"465":{},"467":{},"469":{},"471":{},"473":{},"475":{},"477":{},"479":{},"481":{},"483":{},"484":{}}}],["checkout.orders.abtestsegment",{"_index":333,"name":{},"parent":{"329":{}}}],["checkout.orders.abtestsegment.__type",{"_index":335,"name":{},"parent":{"330":{},"331":{}}}],["checkout.orders.asynccreated",{"_index":408,"name":{},"parent":{"470":{}}}],["checkout.orders.attributedefinition",{"_index":393,"name":{},"parent":{"424":{}}}],["checkout.orders.attributedefinition.__type",{"_index":394,"name":{},"parent":{"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"443":{},"444":{}}}],["checkout.orders.badrequest",{"_index":242,"name":{},"parent":{"243":{}}}],["checkout.orders.basketreopen",{"_index":260,"name":{},"parent":{"261":{}}}],["checkout.orders.cancelorderconflict",{"_index":240,"name":{},"parent":{"241":{}}}],["checkout.orders.couponitem",{"_index":297,"name":{},"parent":{"296":{}}}],["checkout.orders.couponitem.__type",{"_index":299,"name":{},"parent":{"297":{},"298":{},"299":{},"300":{}}}],["checkout.orders.createordershipment",{"_index":360,"name":{},"parent":{"353":{}}}],["checkout.orders.createordershipment.__type",{"_index":362,"name":{},"parent":{"354":{},"355":{},"356":{},"357":{},"358":{}}}],["checkout.orders.customerinfo",{"_index":315,"name":{},"parent":{"312":{}}}],["checkout.orders.customerinfo.__type",{"_index":317,"name":{},"parent":{"313":{},"314":{},"315":{},"316":{},"317":{}}}],["checkout.orders.dateconditionalrequest",{"_index":405,"name":{},"parent":{"464":{}}}],["checkout.orders.daterangefilter",{"_index":399,"name":{},"parent":{"454":{}}}],["checkout.orders.datetimerangefilter",{"_index":416,"name":{},"parent":{"482":{}}}],["checkout.orders.discount",{"_index":287,"name":{},"parent":{"286":{}}}],["checkout.orders.discount.__type",{"_index":289,"name":{},"parent":{"287":{},"288":{},"289":{},"290":{}}}],["checkout.orders.etagconditionalrequest",{"_index":407,"name":{},"parent":{"468":{}}}],["checkout.orders.etagresponse",{"_index":400,"name":{},"parent":{"456":{}}}],["checkout.orders.integerrangefilter",{"_index":402,"name":{},"parent":{"458":{}}}],["checkout.orders.invalidcurrency",{"_index":258,"name":{},"parent":{"259":{}}}],["checkout.orders.invalidordertotal",{"_index":254,"name":{},"parent":{"255":{}}}],["checkout.orders.invalidtaxtotal",{"_index":248,"name":{},"parent":{"249":{}}}],["checkout.orders.nocontent",{"_index":262,"name":{},"parent":{"263":{}}}],["checkout.orders.nopropertiesallowed",{"_index":392,"name":{},"parent":{"402":{}}}],["checkout.orders.numericrangefilter",{"_index":414,"name":{},"parent":{"480":{}}}],["checkout.orders.offsetpaginated",{"_index":411,"name":{},"parent":{"476":{}}}],["checkout.orders.orderconfirmationstatusupdaterequest",{"_index":293,"name":{},"parent":{"292":{}}}],["checkout.orders.orderconfirmationstatusupdaterequest.__type",{"_index":294,"name":{},"parent":{"293":{}}}],["checkout.orders.ordercreated",{"_index":244,"name":{},"parent":{"245":{}}}],["checkout.orders.orderexportstatusupdaterequest",{"_index":347,"name":{},"parent":{"341":{}}}],["checkout.orders.orderexportstatusupdaterequest.__type",{"_index":348,"name":{},"parent":{"342":{}}}],["checkout.orders.orderexternalstatusupdaterequest",{"_index":324,"name":{},"parent":{"320":{}}}],["checkout.orders.orderexternalstatusupdaterequest.__type",{"_index":325,"name":{},"parent":{"321":{}}}],["checkout.orders.ordernote",{"_index":339,"name":{},"parent":{"334":{}}}],["checkout.orders.ordernote.__type",{"_index":341,"name":{},"parent":{"335":{},"336":{},"337":{},"338":{}}}],["checkout.orders.ordernotfound",{"_index":236,"name":{},"parent":{"237":{}}}],["checkout.orders.orderpaymentstatusupdaterequest",{"_index":268,"name":{},"parent":{"269":{}}}],["checkout.orders.orderpaymentstatusupdaterequest.__type",{"_index":270,"name":{},"parent":{"270":{}}}],["checkout.orders.ordershippingstatusupdaterequest",{"_index":329,"name":{},"parent":{"325":{}}}],["checkout.orders.ordershippingstatusupdaterequest.__type",{"_index":330,"name":{},"parent":{"326":{}}}],["checkout.orders.ordersresponse",{"_index":304,"name":{},"parent":{"302":{}}}],["checkout.orders.ordersresponse.__type",{"_index":306,"name":{},"parent":{"303":{}}}],["checkout.orders.orderstatusupdaterequest",{"_index":350,"name":{},"parent":{"344":{}}}],["checkout.orders.orderstatusupdaterequest.__type",{"_index":351,"name":{},"parent":{"345":{}}}],["checkout.orders.paymentcard",{"_index":272,"name":{},"parent":{"272":{}}}],["checkout.orders.paymentcard.__type",{"_index":274,"name":{},"parent":{"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{}}}],["checkout.orders.paymentinstrumentnotfound",{"_index":250,"name":{},"parent":{"251":{}}}],["checkout.orders.placeorderconflict",{"_index":256,"name":{},"parent":{"257":{}}}],["checkout.orders.productlistitemreference",{"_index":380,"name":{},"parent":{"376":{}}}],["checkout.orders.productlistitemreference.__type",{"_index":381,"name":{},"parent":{"377":{},"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{}}}],["checkout.orders.productlistreference",{"_index":372,"name":{},"parent":{"364":{}}}],["checkout.orders.productlistreference.__type",{"_index":373,"name":{},"parent":{"365":{},"366":{},"367":{},"368":{}}}],["checkout.orders.productreference",{"_index":355,"name":{},"parent":{"349":{}}}],["checkout.orders.productreference.__type",{"_index":357,"name":{},"parent":{"350":{},"351":{}}}],["checkout.orders.propertyvaluedefinition",{"_index":395,"name":{},"parent":{"446":{}}}],["checkout.orders.propertyvaluedefinition.__type",{"_index":396,"name":{},"parent":{"447":{},"448":{},"449":{},"450":{},"451":{}}}],["checkout.orders.queryparamslimit",{"_index":387,"name":{},"parent":{"394":{}}}],["checkout.orders.queryparamsoffset",{"_index":388,"name":{},"parent":{"396":{}}}],["checkout.orders.ratelimited",{"_index":409,"name":{},"parent":{"472":{}}}],["checkout.orders.ratelimited2",{"_index":410,"name":{},"parent":{"474":{}}}],["checkout.orders.ratelimited3",{"_index":403,"name":{},"parent":{"460":{}}}],["checkout.orders.ratelimited4",{"_index":412,"name":{},"parent":{"478":{}}}],["checkout.orders.ratelimited5",{"_index":406,"name":{},"parent":{"466":{}}}],["checkout.orders.selectable",{"_index":391,"name":{},"parent":{"400":{}}}],["checkout.orders.shipmentnotfound",{"_index":246,"name":{},"parent":{"247":{}}}],["checkout.orders.shippingmethodreference",{"_index":308,"name":{},"parent":{"305":{}}}],["checkout.orders.shippingmethodreference.__type",{"_index":309,"name":{},"parent":{"306":{}}}],["checkout.orders.sitenotfound",{"_index":234,"name":{},"parent":{"235":{}}}],["checkout.orders.sitespecific",{"_index":389,"name":{},"parent":{"398":{}}}],["checkout.orders.status",{"_index":376,"name":{},"parent":{"371":{}}}],["checkout.orders.status.__type",{"_index":377,"name":{},"parent":{"372":{},"373":{},"374":{}}}],["checkout.orders.statustransitionconflict",{"_index":238,"name":{},"parent":{"239":{}}}],["checkout.orders.synccreated",{"_index":404,"name":{},"parent":{"462":{}}}],["checkout.orders.undocancelorderconflict",{"_index":252,"name":{},"parent":{"253":{}}}],["checkout.orders.undofailorderconflict",{"_index":264,"name":{},"parent":{"265":{}}}],["checkout.shopperbaskets",{"_index":420,"name":{},"parent":{"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"540":{},"542":{},"544":{},"546":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"590":{},"597":{},"598":{},"599":{},"600":{},"601":{},"614":{},"615":{},"616":{},"617":{},"624":{},"625":{},"631":{},"632":{},"633":{},"634":{},"635":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"645":{},"646":{},"647":{},"653":{},"654":{},"655":{},"659":{},"660":{},"664":{},"665":{},"666":{},"667":{},"671":{},"672":{},"683":{},"684":{},"689":{},"694":{},"704":{},"705":{},"707":{},"709":{},"711":{},"713":{},"715":{},"717":{},"719":{},"721":{},"723":{},"725":{},"727":{},"729":{},"731":{},"733":{},"735":{},"736":{}}}],["checkout.shopperbaskets.asynccreated",{"_index":535,"name":{},"parent":{"722":{}}}],["checkout.shopperbaskets.attributedefinition",{"_index":465,"name":{},"parent":{"569":{}}}],["checkout.shopperbaskets.attributedefinition.__type",{"_index":466,"name":{},"parent":{"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["checkout.shopperbaskets.dateconditionalrequest",{"_index":532,"name":{},"parent":{"716":{}}}],["checkout.shopperbaskets.daterangefilter",{"_index":527,"name":{},"parent":{"706":{}}}],["checkout.shopperbaskets.datetimerangefilter",{"_index":541,"name":{},"parent":{"734":{}}}],["checkout.shopperbaskets.discountrequest",{"_index":501,"name":{},"parent":{"656":{}}}],["checkout.shopperbaskets.discountrequest.__type",{"_index":502,"name":{},"parent":{"657":{},"658":{}}}],["checkout.shopperbaskets.etagconditionalrequest",{"_index":534,"name":{},"parent":{"720":{}}}],["checkout.shopperbaskets.etagresponse",{"_index":528,"name":{},"parent":{"708":{}}}],["checkout.shopperbaskets.groupedtaxitem",{"_index":511,"name":{},"parent":{"668":{}}}],["checkout.shopperbaskets.groupedtaxitem.__type",{"_index":513,"name":{},"parent":{"669":{},"670":{}}}],["checkout.shopperbaskets.integerrangefilter",{"_index":529,"name":{},"parent":{"710":{}}}],["checkout.shopperbaskets.localespecific",{"_index":459,"name":{},"parent":{"529":{}}}],["checkout.shopperbaskets.nopropertiesallowed",{"_index":464,"name":{},"parent":{"547":{}}}],["checkout.shopperbaskets.note",{"_index":477,"name":{},"parent":{"618":{}}}],["checkout.shopperbaskets.note.__type",{"_index":478,"name":{},"parent":{"619":{},"620":{},"621":{},"622":{},"623":{}}}],["checkout.shopperbaskets.numericrangefilter",{"_index":540,"name":{},"parent":{"732":{}}}],["checkout.shopperbaskets.offsetpaginated",{"_index":538,"name":{},"parent":{"728":{}}}],["checkout.shopperbaskets.orderlookuprequest",{"_index":505,"name":{},"parent":{"661":{}}}],["checkout.shopperbaskets.orderlookuprequest.__type",{"_index":506,"name":{},"parent":{"662":{},"663":{}}}],["checkout.shopperbaskets.orderpaymentcardrequest",{"_index":516,"name":{},"parent":{"673":{}}}],["checkout.shopperbaskets.orderpaymentcardrequest.__type",{"_index":517,"name":{},"parent":{"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{}}}],["checkout.shopperbaskets.paymentcard",{"_index":473,"name":{},"parent":{"602":{}}}],["checkout.shopperbaskets.paymentcard.__type",{"_index":474,"name":{},"parent":{"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{}}}],["checkout.shopperbaskets.productdetailslink",{"_index":497,"name":{},"parent":{"648":{}}}],["checkout.shopperbaskets.productdetailslink.__type",{"_index":499,"name":{},"parent":{"649":{},"650":{},"651":{},"652":{}}}],["checkout.shopperbaskets.productlistitemreference",{"_index":525,"name":{},"parent":{"695":{}}}],["checkout.shopperbaskets.productlistitemreference.__type",{"_index":526,"name":{},"parent":{"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{}}}],["checkout.shopperbaskets.promotionlink",{"_index":480,"name":{},"parent":{"626":{}}}],["checkout.shopperbaskets.promotionlink.__type",{"_index":482,"name":{},"parent":{"627":{},"628":{},"629":{},"630":{}}}],["checkout.shopperbaskets.propertyvaluedefinition",{"_index":467,"name":{},"parent":{"591":{}}}],["checkout.shopperbaskets.propertyvaluedefinition.__type",{"_index":468,"name":{},"parent":{"592":{},"593":{},"594":{},"595":{},"596":{}}}],["checkout.shopperbaskets.queryparamslimit",{"_index":460,"name":{},"parent":{"539":{}}}],["checkout.shopperbaskets.queryparamsoffset",{"_index":461,"name":{},"parent":{"541":{}}}],["checkout.shopperbaskets.ratelimited",{"_index":536,"name":{},"parent":{"724":{}}}],["checkout.shopperbaskets.ratelimited2",{"_index":537,"name":{},"parent":{"726":{}}}],["checkout.shopperbaskets.ratelimited3",{"_index":530,"name":{},"parent":{"712":{}}}],["checkout.shopperbaskets.ratelimited4",{"_index":539,"name":{},"parent":{"730":{}}}],["checkout.shopperbaskets.ratelimited5",{"_index":533,"name":{},"parent":{"718":{}}}],["checkout.shopperbaskets.selectable",{"_index":463,"name":{},"parent":{"545":{}}}],["checkout.shopperbaskets.simplelink",{"_index":494,"name":{},"parent":{"644":{}}}],["checkout.shopperbaskets.sitespecific",{"_index":462,"name":{},"parent":{"543":{}}}],["checkout.shopperbaskets.status",{"_index":523,"name":{},"parent":{"690":{}}}],["checkout.shopperbaskets.status.__type",{"_index":524,"name":{},"parent":{"691":{},"692":{},"693":{}}}],["checkout.shopperbaskets.synccreated",{"_index":531,"name":{},"parent":{"714":{}}}],["checkout.shopperbaskets.taxes",{"_index":489,"name":{},"parent":{"636":{}}}],["checkout.shopperbaskets.taxes.__type",{"_index":490,"name":{},"parent":{"637":{}}}],["checkout.shopperbaskets.taxitem",{"_index":520,"name":{},"parent":{"685":{}}}],["checkout.shopperbaskets.taxitem.__type",{"_index":521,"name":{},"parent":{"686":{},"687":{},"688":{}}}],["checkout.shopperorders",{"_index":543,"name":{},"parent":{"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"763":{},"765":{},"767":{},"769":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{},"791":{},"813":{},"820":{},"821":{},"822":{},"823":{},"824":{},"837":{},"838":{},"839":{},"840":{},"847":{},"848":{},"854":{},"855":{},"856":{},"857":{},"858":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"868":{},"869":{},"870":{},"876":{},"877":{},"878":{},"882":{},"883":{},"887":{},"888":{},"889":{},"890":{},"894":{},"895":{},"906":{},"907":{},"912":{},"917":{},"927":{},"928":{},"930":{},"932":{},"934":{},"936":{},"938":{},"940":{},"942":{},"944":{},"946":{},"948":{},"950":{},"952":{},"954":{},"956":{},"958":{},"959":{}}}],["checkout.shopperorders.asynccreated",{"_index":594,"name":{},"parent":{"945":{}}}],["checkout.shopperorders.attributedefinition",{"_index":557,"name":{},"parent":{"792":{}}}],["checkout.shopperorders.attributedefinition.__type",{"_index":558,"name":{},"parent":{"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{},"811":{},"812":{}}}],["checkout.shopperorders.dateconditionalrequest",{"_index":591,"name":{},"parent":{"939":{}}}],["checkout.shopperorders.daterangefilter",{"_index":586,"name":{},"parent":{"929":{}}}],["checkout.shopperorders.datetimerangefilter",{"_index":600,"name":{},"parent":{"957":{}}}],["checkout.shopperorders.discountrequest",{"_index":572,"name":{},"parent":{"879":{}}}],["checkout.shopperorders.discountrequest.__type",{"_index":573,"name":{},"parent":{"880":{},"881":{}}}],["checkout.shopperorders.etagconditionalrequest",{"_index":593,"name":{},"parent":{"943":{}}}],["checkout.shopperorders.etagresponse",{"_index":587,"name":{},"parent":{"931":{}}}],["checkout.shopperorders.groupedtaxitem",{"_index":576,"name":{},"parent":{"891":{}}}],["checkout.shopperorders.groupedtaxitem.__type",{"_index":577,"name":{},"parent":{"892":{},"893":{}}}],["checkout.shopperorders.integerrangefilter",{"_index":588,"name":{},"parent":{"933":{}}}],["checkout.shopperorders.localespecific",{"_index":551,"name":{},"parent":{"752":{}}}],["checkout.shopperorders.nopropertiesallowed",{"_index":556,"name":{},"parent":{"770":{}}}],["checkout.shopperorders.note",{"_index":563,"name":{},"parent":{"841":{}}}],["checkout.shopperorders.note.__type",{"_index":564,"name":{},"parent":{"842":{},"843":{},"844":{},"845":{},"846":{}}}],["checkout.shopperorders.numericrangefilter",{"_index":599,"name":{},"parent":{"955":{}}}],["checkout.shopperorders.offsetpaginated",{"_index":597,"name":{},"parent":{"951":{}}}],["checkout.shopperorders.orderlookuprequest",{"_index":574,"name":{},"parent":{"884":{}}}],["checkout.shopperorders.orderlookuprequest.__type",{"_index":575,"name":{},"parent":{"885":{},"886":{}}}],["checkout.shopperorders.orderpaymentcardrequest",{"_index":578,"name":{},"parent":{"896":{}}}],["checkout.shopperorders.orderpaymentcardrequest.__type",{"_index":579,"name":{},"parent":{"897":{},"898":{},"899":{},"900":{},"901":{},"902":{},"903":{},"904":{},"905":{}}}],["checkout.shopperorders.paymentcard",{"_index":561,"name":{},"parent":{"825":{}}}],["checkout.shopperorders.paymentcard.__type",{"_index":562,"name":{},"parent":{"826":{},"827":{},"828":{},"829":{},"830":{},"831":{},"832":{},"833":{},"834":{},"835":{},"836":{}}}],["checkout.shopperorders.productdetailslink",{"_index":570,"name":{},"parent":{"871":{}}}],["checkout.shopperorders.productdetailslink.__type",{"_index":571,"name":{},"parent":{"872":{},"873":{},"874":{},"875":{}}}],["checkout.shopperorders.productlistitemreference",{"_index":584,"name":{},"parent":{"918":{}}}],["checkout.shopperorders.productlistitemreference.__type",{"_index":585,"name":{},"parent":{"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"926":{}}}],["checkout.shopperorders.promotionlink",{"_index":565,"name":{},"parent":{"849":{}}}],["checkout.shopperorders.promotionlink.__type",{"_index":566,"name":{},"parent":{"850":{},"851":{},"852":{},"853":{}}}],["checkout.shopperorders.propertyvaluedefinition",{"_index":559,"name":{},"parent":{"814":{}}}],["checkout.shopperorders.propertyvaluedefinition.__type",{"_index":560,"name":{},"parent":{"815":{},"816":{},"817":{},"818":{},"819":{}}}],["checkout.shopperorders.queryparamslimit",{"_index":552,"name":{},"parent":{"762":{}}}],["checkout.shopperorders.queryparamsoffset",{"_index":553,"name":{},"parent":{"764":{}}}],["checkout.shopperorders.ratelimited",{"_index":595,"name":{},"parent":{"947":{}}}],["checkout.shopperorders.ratelimited2",{"_index":596,"name":{},"parent":{"949":{}}}],["checkout.shopperorders.ratelimited3",{"_index":589,"name":{},"parent":{"935":{}}}],["checkout.shopperorders.ratelimited4",{"_index":598,"name":{},"parent":{"953":{}}}],["checkout.shopperorders.ratelimited5",{"_index":592,"name":{},"parent":{"941":{}}}],["checkout.shopperorders.selectable",{"_index":555,"name":{},"parent":{"768":{}}}],["checkout.shopperorders.simplelink",{"_index":569,"name":{},"parent":{"867":{}}}],["checkout.shopperorders.sitespecific",{"_index":554,"name":{},"parent":{"766":{}}}],["checkout.shopperorders.status",{"_index":582,"name":{},"parent":{"913":{}}}],["checkout.shopperorders.status.__type",{"_index":583,"name":{},"parent":{"914":{},"915":{},"916":{}}}],["checkout.shopperorders.synccreated",{"_index":590,"name":{},"parent":{"937":{}}}],["checkout.shopperorders.taxes",{"_index":567,"name":{},"parent":{"859":{}}}],["checkout.shopperorders.taxes.__type",{"_index":568,"name":{},"parent":{"860":{}}}],["checkout.shopperorders.taxitem",{"_index":580,"name":{},"parent":{"908":{}}}],["checkout.shopperorders.taxitem.__type",{"_index":581,"name":{},"parent":{"909":{},"910":{},"911":{}}}],["client",{"_index":918,"name":{"1717":{}},"parent":{}}],["clientconfig",{"_index":52,"name":{"51":{},"232":{},"526":{},"749":{},"977":{},"1110":{},"1247":{},"1457":{},"1578":{},"1707":{},"1761":{},"1977":{},"2117":{},"2252":{},"2274":{},"2396":{},"2520":{},"2645":{},"2777":{},"2899":{},"3012":{},"3130":{},"3282":{},"3477":{},"3617":{},"3760":{},"3847":{},"3960":{}},"parent":{}}],["clientlistresponse",{"_index":916,"name":{"1715":{}},"parent":{}}],["clientrequest",{"_index":915,"name":{"1714":{}},"parent":{}}],["closedobject",{"_index":157,"name":{"155":{},"391":{},"536":{},"759":{},"1042":{},"1154":{},"1376":{},"1515":{},"1587":{},"1789":{},"1984":{},"2164":{},"2327":{},"2441":{},"2576":{},"2692":{},"2834":{},"2946":{},"3061":{},"3185":{},"3378":{},"3549":{},"3693":{},"3765":{},"3856":{}},"parent":{}}],["code",{"_index":298,"name":{"297":{},"372":{},"691":{},"914":{}},"parent":{}}],["collectionresponseenvelope",{"_index":56,"name":{"55":{}},"parent":{}}],["commonerrors",{"_index":962,"name":{"1825":{}},"parent":{}}],["commonparameters",{"_index":1790,"name":{"3961":{}},"parent":{}}],["component",{"_index":1146,"name":{"2121":{}},"parent":{}}],["condition",{"_index":1567,"name":{"3291":{}},"parent":{}}],["conditionsresult",{"_index":1572,"name":{"3297":{}},"parent":{}}],["constructor",{"_index":2,"name":{"2":{},"218":{},"488":{},"740":{},"964":{},"1105":{},"1217":{},"1439":{},"1576":{},"1692":{},"1758":{},"1974":{},"2114":{},"2272":{},"2390":{},"2510":{},"2639":{},"2771":{},"2897":{},"3009":{},"3124":{},"3249":{},"3441":{},"3612":{},"3757":{},"3844":{}},"parent":{}}],["contenttypeheaderexists",{"_index":1183,"name":{"2238":{}},"parent":{}}],["correctableattributes",{"_index":1011,"name":{"1879":{},"1886":{},"1905":{}},"parent":{}}],["coupon",{"_index":1305,"name":{"2529":{}},"parent":{}}],["couponcode",{"_index":1302,"name":{"2526":{}},"parent":{}}],["couponcoderedemptionrequest",{"_index":1304,"name":{"2528":{}},"parent":{}}],["couponcodes",{"_index":1298,"name":{"2522":{}},"parent":{}}],["couponitem",{"_index":296,"name":{"295":{},"624":{},"847":{},"1262":{}},"parent":{}}],["couponitemid",{"_index":300,"name":{"298":{}},"parent":{}}],["couponmulticodesrequest",{"_index":1306,"name":{"2530":{}},"parent":{}}],["couponnotfound",{"_index":1308,"name":{"2532":{}},"parent":{}}],["couponredemption",{"_index":1300,"name":{"2524":{}},"parent":{}}],["couponredemptionsearchresult",{"_index":1297,"name":{"2521":{}},"parent":{}}],["couponredemptionssearch",{"_index":1289,"name":{"2512":{}},"parent":{}}],["coupons",{"_index":1286,"name":{"2509":{}},"parent":{}}],["couponsearchresult",{"_index":1303,"name":{"2527":{}},"parent":{}}],["couponssearch",{"_index":1288,"name":{"2511":{}},"parent":{}}],["couponsystemcodeconfig",{"_index":1307,"name":{"2531":{}},"parent":{}}],["createaddressforcustomerincustomerlist",{"_index":611,"name":{"972":{}},"parent":{}}],["createbasket",{"_index":421,"name":{"489":{}},"parent":{}}],["createcampaign",{"_index":1253,"name":{"2395":{}},"parent":{}}],["createcategoryincatalog",{"_index":1536,"name":{"3257":{}},"parent":{}}],["createcategoryrules",{"_index":1549,"name":{"3270":{}},"parent":{}}],["createcodeverifier",{"_index":1197,"name":{"2258":{}},"parent":{}}],["createcoupon",{"_index":1294,"name":{"2517":{}},"parent":{}}],["createcustomeraddress",{"_index":701,"name":{"1225":{}},"parent":{}}],["createcustomerincustomerlist",{"_index":609,"name":{"970":{}},"parent":{}}],["createcustomerlist",{"_index":605,"name":{"966":{}},"parent":{}}],["createcustomerpaymentinstrument",{"_index":708,"name":{"1232":{}},"parent":{}}],["createcustomerproductlist",{"_index":712,"name":{"1236":{}},"parent":{}}],["createcustomerproductlistitem",{"_index":716,"name":{"1240":{}},"parent":{}}],["createcustomrule",{"_index":39,"name":{"38":{}},"parent":{}}],["createdby",{"_index":340,"name":{"335":{},"619":{},"842":{}},"parent":{}}],["createfirewallrule",{"_index":12,"name":{"11":{}},"parent":{}}],["creategiftcertificate",{"_index":1337,"name":{"2640":{}},"parent":{}}],["createlogpushjob",{"_index":34,"name":{"33":{}},"parent":{}}],["createlogpushownership",{"_index":33,"name":{"32":{}},"parent":{}}],["createmrtrules",{"_index":27,"name":{"26":{}},"parent":{}}],["createorder",{"_index":544,"name":{"741":{}},"parent":{}}],["createorderoptionitem",{"_index":375,"name":{"369":{}},"parent":{}}],["createorderpaymentinstrument",{"_index":327,"name":{"323":{}},"parent":{}}],["createorderpaymenttransaction",{"_index":352,"name":{"346":{}},"parent":{}}],["createorderpriceadjustment",{"_index":337,"name":{"332":{}},"parent":{}}],["createorderproductitems",{"_index":353,"name":{"347":{}},"parent":{}}],["createorderrequest",{"_index":370,"name":{"362":{}},"parent":{}}],["createorders",{"_index":221,"name":{"220":{}},"parent":{}}],["createordershipment",{"_index":359,"name":{"352":{}},"parent":{}}],["createorupdatecategoryrulecondition",{"_index":1556,"name":{"3277":{}},"parent":{}}],["createpaymentinstrumentfororder",{"_index":546,"name":{"744":{}},"parent":{}}],["createproduct",{"_index":1632,"name":{"3445":{}},"parent":{}}],["createproductoption",{"_index":1648,"name":{"3461":{}},"parent":{}}],["createproductoptionvalue",{"_index":1652,"name":{"3465":{}},"parent":{}}],["createpromotion",{"_index":1392,"name":{"2776":{}},"parent":{}}],["createratelimitingrule",{"_index":45,"name":{"44":{}},"parent":{}}],["createshipmentforbasket",{"_index":449,"name":{"517":{}},"parent":{}}],["createshoppercontext",{"_index":664,"name":{"1107":{}},"parent":{}}],["createsourcecodegroup",{"_index":1489,"name":{"3128":{}},"parent":{}}],["createstorefrontzone",{"_index":4,"name":{"3":{}},"parent":{}}],["createupdaterule",{"_index":1551,"name":{"3272":{}},"parent":{}}],["createvariationattribute",{"_index":1661,"name":{"3474":{}},"parent":{}}],["createvariationattributevalue",{"_index":1656,"name":{"3469":{}},"parent":{}}],["creationdate",{"_index":342,"name":{"336":{},"620":{},"843":{}},"parent":{}}],["credentials",{"_index":623,"name":{"986":{}},"parent":{}}],["creditcardexpired",{"_index":275,"name":{"274":{},"604":{},"827":{}},"parent":{}}],["creditcardtoken",{"_index":276,"name":{"275":{},"605":{},"675":{},"828":{},"898":{}},"parent":{}}],["custom_api_default_base_uri",{"_index":1182,"name":{"2237":{}},"parent":{}}],["customapiparameters",{"_index":1184,"name":{"2239":{}},"parent":{}}],["customer",{"_index":601,"name":{"962":{},"984":{},"1298":{}},"parent":{"963":{},"1102":{},"1103":{},"1104":{},"1214":{},"1215":{},"1216":{},"1436":{},"1437":{},"1438":{},"1573":{},"1574":{},"1575":{},"1689":{},"1690":{},"1691":{},"1754":{},"1755":{}}}],["customer.customers",{"_index":603,"name":{},"parent":{"964":{},"965":{},"966":{},"967":{},"968":{},"969":{},"970":{},"971":{},"972":{},"973":{},"974":{},"975":{},"976":{},"977":{},"978":{},"979":{},"980":{},"981":{},"982":{},"983":{},"984":{},"985":{},"986":{},"987":{},"988":{},"989":{},"991":{},"993":{},"995":{},"997":{},"999":{},"1001":{},"1002":{},"1004":{},"1006":{},"1008":{},"1010":{},"1012":{},"1014":{},"1016":{},"1018":{},"1020":{},"1022":{},"1024":{},"1026":{},"1028":{},"1030":{},"1032":{},"1034":{},"1035":{},"1036":{},"1037":{},"1038":{},"1039":{},"1040":{},"1041":{},"1042":{},"1043":{},"1044":{},"1046":{},"1048":{},"1050":{},"1052":{},"1054":{},"1055":{},"1056":{},"1057":{},"1058":{},"1059":{},"1060":{},"1061":{},"1062":{},"1063":{},"1064":{},"1065":{},"1066":{},"1067":{},"1068":{},"1069":{},"1070":{},"1071":{},"1072":{},"1073":{},"1095":{}}}],["customer.customers.alreadyexists",{"_index":633,"name":{},"parent":{"998":{}}}],["customer.customers.asynccreated",{"_index":644,"name":{},"parent":{"1019":{}}}],["customer.customers.attributedefinition",{"_index":657,"name":{},"parent":{"1074":{}}}],["customer.customers.attributedefinition.__type",{"_index":658,"name":{},"parent":{"1075":{},"1076":{},"1077":{},"1078":{},"1079":{},"1080":{},"1081":{},"1082":{},"1083":{},"1084":{},"1085":{},"1086":{},"1087":{},"1088":{},"1089":{},"1090":{},"1091":{},"1092":{},"1093":{},"1094":{}}}],["customer.customers.badrequest",{"_index":629,"name":{},"parent":{"994":{}}}],["customer.customers.customergroupsearchbadrequest",{"_index":631,"name":{},"parent":{"996":{}}}],["customer.customers.dateconditionalrequest",{"_index":641,"name":{},"parent":{"1013":{}}}],["customer.customers.daterangefilter",{"_index":636,"name":{},"parent":{"1003":{}}}],["customer.customers.datetimerangefilter",{"_index":651,"name":{},"parent":{"1033":{}}}],["customer.customers.etagconditionalrequest",{"_index":643,"name":{},"parent":{"1017":{}}}],["customer.customers.etagresponse",{"_index":637,"name":{},"parent":{"1005":{}}}],["customer.customers.forbidden",{"_index":628,"name":{},"parent":{"992":{}}}],["customer.customers.integerrangefilter",{"_index":638,"name":{},"parent":{"1007":{}}}],["customer.customers.nopropertiesallowed",{"_index":656,"name":{},"parent":{"1053":{}}}],["customer.customers.notfound",{"_index":626,"name":{},"parent":{"990":{}}}],["customer.customers.numericrangefilter",{"_index":650,"name":{},"parent":{"1031":{}}}],["customer.customers.offsetpaginated",{"_index":647,"name":{},"parent":{"1025":{}}}],["customer.customers.propertyvaluedefinition",{"_index":659,"name":{},"parent":{"1096":{}}}],["customer.customers.propertyvaluedefinition.__type",{"_index":660,"name":{},"parent":{"1097":{},"1098":{},"1099":{},"1100":{},"1101":{}}}],["customer.customers.queryparamslimit",{"_index":652,"name":{},"parent":{"1045":{}}}],["customer.customers.queryparamsoffset",{"_index":653,"name":{},"parent":{"1047":{}}}],["customer.customers.rangefilter",{"_index":648,"name":{},"parent":{"1027":{}}}],["customer.customers.ratelimited",{"_index":645,"name":{},"parent":{"1021":{}}}],["customer.customers.ratelimited2",{"_index":646,"name":{},"parent":{"1023":{}}}],["customer.customers.ratelimited3",{"_index":639,"name":{},"parent":{"1009":{}}}],["customer.customers.ratelimited4",{"_index":649,"name":{},"parent":{"1029":{}}}],["customer.customers.ratelimited5",{"_index":642,"name":{},"parent":{"1015":{}}}],["customer.customers.selectable",{"_index":655,"name":{},"parent":{"1051":{}}}],["customer.customers.sitespecific",{"_index":654,"name":{},"parent":{"1049":{}}}],["customer.customers.synccreated",{"_index":640,"name":{},"parent":{"1011":{}}}],["customer.customers.unauthorized",{"_index":635,"name":{},"parent":{"1000":{}}}],["customer.shoppercontext",{"_index":662,"name":{},"parent":{"1105":{},"1106":{},"1107":{},"1108":{},"1109":{},"1110":{},"1111":{},"1112":{},"1113":{},"1114":{},"1116":{},"1118":{},"1120":{},"1122":{},"1124":{},"1126":{},"1128":{},"1130":{},"1132":{},"1134":{},"1136":{},"1138":{},"1140":{},"1142":{},"1144":{},"1146":{},"1147":{},"1148":{},"1149":{},"1150":{},"1151":{},"1152":{},"1153":{},"1154":{},"1155":{},"1156":{},"1158":{},"1160":{},"1162":{},"1164":{},"1166":{},"1167":{},"1168":{},"1169":{},"1170":{},"1171":{},"1172":{},"1173":{},"1174":{},"1175":{},"1176":{},"1177":{},"1178":{},"1179":{},"1180":{},"1181":{},"1182":{},"1183":{},"1184":{},"1185":{},"1207":{}}}],["customer.shoppercontext.asynccreated",{"_index":675,"name":{},"parent":{"1131":{}}}],["customer.shoppercontext.attributedefinition",{"_index":688,"name":{},"parent":{"1186":{}}}],["customer.shoppercontext.attributedefinition.__type",{"_index":689,"name":{},"parent":{"1187":{},"1188":{},"1189":{},"1190":{},"1191":{},"1192":{},"1193":{},"1194":{},"1195":{},"1196":{},"1197":{},"1198":{},"1199":{},"1200":{},"1201":{},"1202":{},"1203":{},"1204":{},"1205":{},"1206":{}}}],["customer.shoppercontext.dateconditionalrequest",{"_index":672,"name":{},"parent":{"1125":{}}}],["customer.shoppercontext.daterangefilter",{"_index":667,"name":{},"parent":{"1115":{}}}],["customer.shoppercontext.datetimerangefilter",{"_index":682,"name":{},"parent":{"1145":{}}}],["customer.shoppercontext.etagconditionalrequest",{"_index":674,"name":{},"parent":{"1129":{}}}],["customer.shoppercontext.etagresponse",{"_index":668,"name":{},"parent":{"1117":{}}}],["customer.shoppercontext.integerrangefilter",{"_index":669,"name":{},"parent":{"1119":{}}}],["customer.shoppercontext.nopropertiesallowed",{"_index":687,"name":{},"parent":{"1165":{}}}],["customer.shoppercontext.numericrangefilter",{"_index":681,"name":{},"parent":{"1143":{}}}],["customer.shoppercontext.offsetpaginated",{"_index":678,"name":{},"parent":{"1137":{}}}],["customer.shoppercontext.propertyvaluedefinition",{"_index":690,"name":{},"parent":{"1208":{}}}],["customer.shoppercontext.propertyvaluedefinition.__type",{"_index":691,"name":{},"parent":{"1209":{},"1210":{},"1211":{},"1212":{},"1213":{}}}],["customer.shoppercontext.queryparamslimit",{"_index":683,"name":{},"parent":{"1157":{}}}],["customer.shoppercontext.queryparamsoffset",{"_index":684,"name":{},"parent":{"1159":{}}}],["customer.shoppercontext.rangefilter",{"_index":679,"name":{},"parent":{"1139":{}}}],["customer.shoppercontext.ratelimited",{"_index":676,"name":{},"parent":{"1133":{}}}],["customer.shoppercontext.ratelimited2",{"_index":677,"name":{},"parent":{"1135":{}}}],["customer.shoppercontext.ratelimited3",{"_index":670,"name":{},"parent":{"1121":{}}}],["customer.shoppercontext.ratelimited4",{"_index":680,"name":{},"parent":{"1141":{}}}],["customer.shoppercontext.ratelimited5",{"_index":673,"name":{},"parent":{"1127":{}}}],["customer.shoppercontext.selectable",{"_index":686,"name":{},"parent":{"1163":{}}}],["customer.shoppercontext.sitespecific",{"_index":685,"name":{},"parent":{"1161":{}}}],["customer.shoppercontext.synccreated",{"_index":671,"name":{},"parent":{"1123":{}}}],["customer.shoppercustomers",{"_index":693,"name":{},"parent":{"1217":{},"1218":{},"1219":{},"1220":{},"1221":{},"1222":{},"1223":{},"1224":{},"1225":{},"1226":{},"1227":{},"1228":{},"1229":{},"1230":{},"1231":{},"1232":{},"1233":{},"1234":{},"1235":{},"1236":{},"1237":{},"1238":{},"1239":{},"1240":{},"1241":{},"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1253":{},"1254":{},"1255":{},"1256":{},"1257":{},"1258":{},"1259":{},"1260":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1270":{},"1271":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1279":{},"1280":{},"1281":{},"1282":{},"1283":{},"1284":{},"1285":{},"1286":{},"1287":{},"1288":{},"1289":{},"1290":{},"1291":{},"1292":{},"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1300":{},"1301":{},"1302":{},"1303":{},"1304":{},"1305":{},"1306":{},"1307":{},"1308":{},"1312":{},"1313":{},"1314":{},"1315":{},"1316":{},"1317":{},"1318":{},"1319":{},"1320":{},"1321":{},"1322":{},"1323":{},"1324":{},"1326":{},"1328":{},"1330":{},"1332":{},"1334":{},"1336":{},"1338":{},"1340":{},"1342":{},"1344":{},"1346":{},"1348":{},"1350":{},"1352":{},"1354":{},"1356":{},"1357":{},"1358":{},"1360":{},"1362":{},"1364":{},"1366":{},"1368":{},"1370":{},"1371":{},"1372":{},"1373":{},"1374":{},"1375":{},"1376":{},"1377":{},"1378":{},"1380":{},"1382":{},"1384":{},"1386":{},"1388":{},"1389":{},"1390":{},"1391":{},"1392":{},"1393":{},"1394":{},"1395":{},"1396":{},"1397":{},"1398":{},"1399":{},"1400":{},"1401":{},"1402":{},"1403":{},"1404":{},"1405":{},"1406":{},"1407":{},"1429":{}}}],["customer.shoppercustomers.asynccreated",{"_index":778,"name":{},"parent":{"1341":{}}}],["customer.shoppercustomers.attributedefinition",{"_index":800,"name":{},"parent":{"1408":{}}}],["customer.shoppercustomers.attributedefinition.__type",{"_index":801,"name":{},"parent":{"1409":{},"1410":{},"1411":{},"1412":{},"1413":{},"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{},"1420":{},"1421":{},"1422":{},"1423":{},"1424":{},"1425":{},"1426":{},"1427":{},"1428":{}}}],["customer.shoppercustomers.badrequest",{"_index":789,"name":{},"parent":{"1363":{}}}],["customer.shoppercustomers.customerauthenticationfailed",{"_index":787,"name":{},"parent":{"1359":{}}}],["customer.shoppercustomers.customerextprofilebadrequest",{"_index":794,"name":{},"parent":{"1369":{}}}],["customer.shoppercustomers.customerextprofilenotfound",{"_index":791,"name":{},"parent":{"1365":{}}}],["customer.shoppercustomers.dateconditionalrequest",{"_index":775,"name":{},"parent":{"1335":{}}}],["customer.shoppercustomers.daterangefilter",{"_index":770,"name":{},"parent":{"1325":{}}}],["customer.shoppercustomers.datetimerangefilter",{"_index":785,"name":{},"parent":{"1355":{}}}],["customer.shoppercustomers.etagconditionalrequest",{"_index":777,"name":{},"parent":{"1339":{}}}],["customer.shoppercustomers.etagresponse",{"_index":771,"name":{},"parent":{"1327":{}}}],["customer.shoppercustomers.groupedtaxitem",{"_index":762,"name":{},"parent":{"1309":{}}}],["customer.shoppercustomers.groupedtaxitem.__type",{"_index":763,"name":{},"parent":{"1310":{},"1311":{}}}],["customer.shoppercustomers.integerrangefilter",{"_index":772,"name":{},"parent":{"1329":{}}}],["customer.shoppercustomers.nopropertiesallowed",{"_index":799,"name":{},"parent":{"1387":{}}}],["customer.shoppercustomers.notfound",{"_index":788,"name":{},"parent":{"1361":{}}}],["customer.shoppercustomers.numericrangefilter",{"_index":784,"name":{},"parent":{"1353":{}}}],["customer.shoppercustomers.offsetpaginated",{"_index":781,"name":{},"parent":{"1347":{}}}],["customer.shoppercustomers.propertyvaluedefinition",{"_index":802,"name":{},"parent":{"1430":{}}}],["customer.shoppercustomers.propertyvaluedefinition.__type",{"_index":803,"name":{},"parent":{"1431":{},"1432":{},"1433":{},"1434":{},"1435":{}}}],["customer.shoppercustomers.queryparamslimit",{"_index":795,"name":{},"parent":{"1379":{}}}],["customer.shoppercustomers.queryparamsoffset",{"_index":796,"name":{},"parent":{"1381":{}}}],["customer.shoppercustomers.rangefilter",{"_index":782,"name":{},"parent":{"1349":{}}}],["customer.shoppercustomers.ratelimited",{"_index":779,"name":{},"parent":{"1343":{}}}],["customer.shoppercustomers.ratelimited2",{"_index":780,"name":{},"parent":{"1345":{}}}],["customer.shoppercustomers.ratelimited3",{"_index":773,"name":{},"parent":{"1331":{}}}],["customer.shoppercustomers.ratelimited4",{"_index":783,"name":{},"parent":{"1351":{}}}],["customer.shoppercustomers.ratelimited5",{"_index":776,"name":{},"parent":{"1337":{}}}],["customer.shoppercustomers.selectable",{"_index":798,"name":{},"parent":{"1385":{}}}],["customer.shoppercustomers.sitespecific",{"_index":797,"name":{},"parent":{"1383":{}}}],["customer.shoppercustomers.synccreated",{"_index":774,"name":{},"parent":{"1333":{}}}],["customer.shoppercustomers.unauthorized",{"_index":792,"name":{},"parent":{"1367":{}}}],["customer.shopperlogin",{"_index":805,"name":{},"parent":{"1439":{},"1440":{},"1441":{},"1442":{},"1443":{},"1444":{},"1445":{},"1446":{},"1447":{},"1448":{},"1449":{},"1450":{},"1451":{},"1452":{},"1453":{},"1454":{},"1455":{},"1456":{},"1457":{},"1458":{},"1459":{},"1460":{},"1461":{},"1462":{},"1463":{},"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1470":{},"1471":{},"1473":{},"1474":{},"1475":{},"1477":{},"1479":{},"1481":{},"1483":{},"1485":{},"1487":{},"1489":{},"1491":{},"1493":{},"1495":{},"1497":{},"1499":{},"1501":{},"1503":{},"1505":{},"1507":{},"1508":{},"1509":{},"1510":{},"1511":{},"1512":{},"1513":{},"1514":{},"1515":{},"1516":{},"1517":{},"1519":{},"1521":{},"1523":{},"1525":{},"1526":{},"1527":{},"1528":{},"1529":{},"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{},"1536":{},"1537":{},"1538":{},"1539":{},"1540":{},"1541":{},"1542":{},"1543":{},"1544":{},"1566":{}}}],["customer.shopperlogin.asynccreated",{"_index":845,"name":{},"parent":{"1492":{}}}],["customer.shopperlogin.attributedefinition",{"_index":857,"name":{},"parent":{"1545":{}}}],["customer.shopperlogin.attributedefinition.__type",{"_index":858,"name":{},"parent":{"1546":{},"1547":{},"1548":{},"1549":{},"1550":{},"1551":{},"1552":{},"1553":{},"1554":{},"1555":{},"1556":{},"1557":{},"1558":{},"1559":{},"1560":{},"1561":{},"1562":{},"1563":{},"1564":{},"1565":{}}}],["customer.shopperlogin.dateconditionalrequest",{"_index":842,"name":{},"parent":{"1486":{}}}],["customer.shopperlogin.daterangefilter",{"_index":837,"name":{},"parent":{"1476":{}}}],["customer.shopperlogin.datetimerangefilter",{"_index":852,"name":{},"parent":{"1506":{}}}],["customer.shopperlogin.etagconditionalrequest",{"_index":844,"name":{},"parent":{"1490":{}}}],["customer.shopperlogin.etagresponse",{"_index":838,"name":{},"parent":{"1478":{}}}],["customer.shopperlogin.integerrangefilter",{"_index":839,"name":{},"parent":{"1480":{}}}],["customer.shopperlogin.nopropertiesallowed",{"_index":856,"name":{},"parent":{"1524":{}}}],["customer.shopperlogin.numericrangefilter",{"_index":851,"name":{},"parent":{"1504":{}}}],["customer.shopperlogin.offsetpaginated",{"_index":848,"name":{},"parent":{"1498":{}}}],["customer.shopperlogin.propertyvaluedefinition",{"_index":859,"name":{},"parent":{"1567":{}}}],["customer.shopperlogin.propertyvaluedefinition.__type",{"_index":860,"name":{},"parent":{"1568":{},"1569":{},"1570":{},"1571":{},"1572":{}}}],["customer.shopperlogin.queryparamslimit",{"_index":853,"name":{},"parent":{"1518":{}}}],["customer.shopperlogin.queryparamsoffset",{"_index":854,"name":{},"parent":{"1520":{}}}],["customer.shopperlogin.rangefilter",{"_index":849,"name":{},"parent":{"1500":{}}}],["customer.shopperlogin.ratelimited",{"_index":846,"name":{},"parent":{"1494":{}}}],["customer.shopperlogin.ratelimited2",{"_index":847,"name":{},"parent":{"1496":{}}}],["customer.shopperlogin.ratelimited3",{"_index":840,"name":{},"parent":{"1482":{}}}],["customer.shopperlogin.ratelimited4",{"_index":850,"name":{},"parent":{"1502":{}}}],["customer.shopperlogin.ratelimited5",{"_index":843,"name":{},"parent":{"1488":{}}}],["customer.shopperlogin.sitespecific",{"_index":855,"name":{},"parent":{"1522":{}}}],["customer.shopperlogin.slasratelimit",{"_index":836,"name":{},"parent":{"1472":{}}}],["customer.shopperlogin.synccreated",{"_index":841,"name":{},"parent":{"1484":{}}}],["customer.shopperseo",{"_index":862,"name":{},"parent":{"1576":{},"1577":{},"1578":{},"1579":{},"1581":{},"1582":{},"1583":{},"1584":{},"1585":{},"1586":{},"1587":{},"1588":{},"1589":{},"1591":{},"1593":{},"1595":{},"1597":{},"1599":{},"1600":{},"1601":{},"1602":{},"1603":{},"1604":{},"1605":{},"1606":{},"1607":{},"1608":{},"1609":{},"1610":{},"1611":{},"1612":{},"1613":{},"1614":{},"1615":{},"1616":{},"1617":{},"1618":{},"1619":{},"1641":{},"1648":{},"1649":{},"1651":{},"1653":{},"1655":{},"1656":{},"1657":{},"1659":{},"1661":{},"1663":{},"1665":{},"1667":{},"1669":{},"1671":{},"1673":{},"1675":{},"1677":{},"1679":{},"1681":{},"1683":{},"1685":{},"1687":{},"1688":{}}}],["customer.shopperseo.asynccreated",{"_index":886,"name":{},"parent":{"1674":{}}}],["customer.shopperseo.attributedefinition",{"_index":870,"name":{},"parent":{"1620":{}}}],["customer.shopperseo.attributedefinition.__type",{"_index":871,"name":{},"parent":{"1621":{},"1622":{},"1623":{},"1624":{},"1625":{},"1626":{},"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{},"1638":{},"1639":{},"1640":{}}}],["customer.shopperseo.badrequest",{"_index":875,"name":{},"parent":{"1650":{}}}],["customer.shopperseo.dateconditionalrequest",{"_index":883,"name":{},"parent":{"1668":{}}}],["customer.shopperseo.daterangefilter",{"_index":878,"name":{},"parent":{"1658":{}}}],["customer.shopperseo.datetimerangefilter",{"_index":892,"name":{},"parent":{"1686":{}}}],["customer.shopperseo.etagconditionalrequest",{"_index":885,"name":{},"parent":{"1672":{}}}],["customer.shopperseo.etagresponse",{"_index":879,"name":{},"parent":{"1660":{}}}],["customer.shopperseo.integerrangefilter",{"_index":880,"name":{},"parent":{"1662":{}}}],["customer.shopperseo.localespecific",{"_index":864,"name":{},"parent":{"1580":{}}}],["customer.shopperseo.nopropertiesallowed",{"_index":869,"name":{},"parent":{"1598":{}}}],["customer.shopperseo.notfound",{"_index":877,"name":{},"parent":{"1654":{}}}],["customer.shopperseo.numericrangefilter",{"_index":891,"name":{},"parent":{"1684":{}}}],["customer.shopperseo.offsetpaginated",{"_index":889,"name":{},"parent":{"1680":{}}}],["customer.shopperseo.propertyvaluedefinition",{"_index":872,"name":{},"parent":{"1642":{}}}],["customer.shopperseo.propertyvaluedefinition.__type",{"_index":873,"name":{},"parent":{"1643":{},"1644":{},"1645":{},"1646":{},"1647":{}}}],["customer.shopperseo.queryparamslimit",{"_index":865,"name":{},"parent":{"1590":{}}}],["customer.shopperseo.queryparamsoffset",{"_index":866,"name":{},"parent":{"1592":{}}}],["customer.shopperseo.ratelimited",{"_index":887,"name":{},"parent":{"1676":{}}}],["customer.shopperseo.ratelimited2",{"_index":888,"name":{},"parent":{"1678":{}}}],["customer.shopperseo.ratelimited3",{"_index":881,"name":{},"parent":{"1664":{}}}],["customer.shopperseo.ratelimited4",{"_index":890,"name":{},"parent":{"1682":{}}}],["customer.shopperseo.ratelimited5",{"_index":884,"name":{},"parent":{"1670":{}}}],["customer.shopperseo.selectable",{"_index":868,"name":{},"parent":{"1596":{}}}],["customer.shopperseo.sitespecific",{"_index":867,"name":{},"parent":{"1594":{}}}],["customer.shopperseo.synccreated",{"_index":882,"name":{},"parent":{"1666":{}}}],["customer.shopperseo.unauthorized",{"_index":876,"name":{},"parent":{"1652":{}}}],["customer.slasadmin",{"_index":894,"name":{},"parent":{"1692":{},"1693":{},"1694":{},"1695":{},"1696":{},"1697":{},"1698":{},"1699":{},"1700":{},"1701":{},"1702":{},"1703":{},"1704":{},"1705":{},"1706":{},"1707":{},"1708":{},"1709":{},"1710":{},"1711":{},"1712":{},"1713":{},"1714":{},"1715":{},"1716":{},"1717":{},"1718":{},"1719":{},"1720":{},"1722":{},"1724":{},"1726":{},"1728":{},"1730":{},"1732":{},"1734":{},"1736":{},"1738":{},"1740":{},"1742":{},"1744":{},"1746":{},"1748":{},"1750":{},"1752":{},"1753":{}}}],["customer.slasadmin.asynccreated",{"_index":927,"name":{},"parent":{"1737":{}}}],["customer.slasadmin.dateconditionalrequest",{"_index":924,"name":{},"parent":{"1731":{}}}],["customer.slasadmin.daterangefilter",{"_index":919,"name":{},"parent":{"1721":{}}}],["customer.slasadmin.datetimerangefilter",{"_index":934,"name":{},"parent":{"1751":{}}}],["customer.slasadmin.etagconditionalrequest",{"_index":926,"name":{},"parent":{"1735":{}}}],["customer.slasadmin.etagresponse",{"_index":920,"name":{},"parent":{"1723":{}}}],["customer.slasadmin.integerrangefilter",{"_index":921,"name":{},"parent":{"1725":{}}}],["customer.slasadmin.numericrangefilter",{"_index":933,"name":{},"parent":{"1749":{}}}],["customer.slasadmin.offsetpaginated",{"_index":930,"name":{},"parent":{"1743":{}}}],["customer.slasadmin.rangefilter",{"_index":931,"name":{},"parent":{"1745":{}}}],["customer.slasadmin.ratelimited",{"_index":928,"name":{},"parent":{"1739":{}}}],["customer.slasadmin.ratelimited2",{"_index":929,"name":{},"parent":{"1741":{}}}],["customer.slasadmin.ratelimited3",{"_index":922,"name":{},"parent":{"1727":{}}}],["customer.slasadmin.ratelimited4",{"_index":932,"name":{},"parent":{"1747":{}}}],["customer.slasadmin.ratelimited5",{"_index":925,"name":{},"parent":{"1733":{}}}],["customer.slasadmin.synccreated",{"_index":923,"name":{},"parent":{"1729":{}}}],["customeraddress",{"_index":616,"name":{"978":{},"1248":{}},"parent":{}}],["customeraddressinfo",{"_index":760,"name":{"1305":{}},"parent":{}}],["customeraddressresult",{"_index":621,"name":{"983":{}},"parent":{}}],["customerauthenticationfailed",{"_index":786,"name":{"1358":{}},"parent":{}}],["customerexternalprofile",{"_index":759,"name":{"1304":{}},"parent":{}}],["customerextprofilebadrequest",{"_index":793,"name":{"1368":{}},"parent":{}}],["customerextprofilenotfound",{"_index":790,"name":{"1364":{}},"parent":{}}],["customerextprofilerequest",{"_index":758,"name":{"1302":{}},"parent":{}}],["customergroup",{"_index":620,"name":{"982":{}},"parent":{}}],["customergrouprule",{"_index":622,"name":{"985":{}},"parent":{}}],["customergroupsearchbadrequest",{"_index":630,"name":{"995":{}},"parent":{}}],["customergroupsearchresult",{"_index":617,"name":{"979":{}},"parent":{}}],["customerid",{"_index":316,"name":{"313":{}},"parent":{}}],["customerinfo",{"_index":314,"name":{"311":{},"642":{},"865":{},"1279":{}},"parent":{}}],["customerlist",{"_index":618,"name":{"980":{}},"parent":{}}],["customerlistlink",{"_index":1590,"name":{"3322":{}},"parent":{}}],["customername",{"_index":318,"name":{"314":{}},"parent":{}}],["customerno",{"_index":319,"name":{"315":{}},"parent":{}}],["customerorderresult",{"_index":757,"name":{"1301":{}},"parent":{}}],["customerpaymentcardrequest",{"_index":736,"name":{"1269":{}},"parent":{}}],["customerpaymentinstrument",{"_index":742,"name":{"1277":{}},"parent":{}}],["customerpaymentinstrumentrequest",{"_index":752,"name":{"1295":{}},"parent":{}}],["customerproductlist",{"_index":751,"name":{"1293":{}},"parent":{}}],["customerproductlistitem",{"_index":769,"name":{"1320":{}},"parent":{}}],["customerproductlistitempurchase",{"_index":724,"name":{"1250":{}},"parent":{}}],["customerproductlistregistrant",{"_index":734,"name":{"1267":{}},"parent":{}}],["customerproductlistresult",{"_index":723,"name":{"1249":{}},"parent":{}}],["customerregistration",{"_index":754,"name":{"1297":{}},"parent":{}}],["customers",{"_index":602,"name":{"963":{}},"parent":{}}],["customersearchhit",{"_index":619,"name":{"981":{}},"parent":{}}],["customersearchresult",{"_index":624,"name":{"987":{}},"parent":{}}],["customhostnamevalidationenvelope",{"_index":104,"name":{"103":{}},"parent":{}}],["customhostnamevalidationresponse",{"_index":89,"name":{"88":{}},"parent":{}}],["customrule",{"_index":100,"name":{"99":{}},"parent":{}}],["customruleenvelope",{"_index":95,"name":{"94":{}},"parent":{}}],["customrulesenvelope",{"_index":82,"name":{"81":{}},"parent":{}}],["customrulespatchorderrequest",{"_index":110,"name":{"109":{}},"parent":{}}],["customrulespatchrequest",{"_index":106,"name":{"105":{}},"parent":{}}],["customrulespostrequest",{"_index":77,"name":{"76":{}},"parent":{}}],["customsuggestions",{"_index":1132,"name":{"2098":{},"3831":{}},"parent":{}}],["data",{"_index":305,"name":{"303":{}},"parent":{}}],["dateconditionalrequest",{"_index":135,"name":{"133":{},"463":{},"715":{},"938":{},"1012":{},"1124":{},"1334":{},"1485":{},"1667":{},"1730":{},"1769":{},"2057":{},"2134":{},"2297":{},"2411":{},"2546":{},"2663":{},"2804":{},"2916":{},"3032":{},"3155":{},"3353":{},"3520":{},"3663":{},"3801":{},"3929":{}},"parent":{}}],["daterangefilter",{"_index":398,"name":{"453":{},"705":{},"928":{},"1002":{},"1114":{},"1324":{},"1475":{},"1657":{},"1720":{},"2047":{},"2124":{},"2287":{},"2401":{},"2536":{},"2653":{},"2794":{},"2906":{},"3022":{},"3145":{},"3345":{},"3510":{},"3653":{},"3919":{}},"parent":{}}],["datetimerangefilter",{"_index":415,"name":{"481":{},"733":{},"956":{},"1032":{},"1144":{},"1354":{},"1505":{},"1685":{},"1750":{},"2075":{},"2154":{},"2317":{},"2431":{},"2566":{},"2683":{},"2824":{},"2936":{},"3052":{},"3175":{},"3369":{},"3540":{},"3683":{},"3947":{}},"parent":{}}],["defaultvalue",{"_index":189,"name":{"187":{},"425":{},"570":{},"793":{},"1075":{},"1187":{},"1409":{},"1546":{},"1621":{},"2018":{},"2197":{},"2360":{},"2474":{},"2609":{},"2725":{},"2867":{},"2979":{},"3094":{},"3218":{},"3411":{},"3582":{},"3726":{},"3890":{}},"parent":{}}],["deletebasket",{"_index":424,"name":{"492":{}},"parent":{}}],["deletecampaign",{"_index":1250,"name":{"2392":{}},"parent":{}}],["deletecategoryfromcatalog",{"_index":1533,"name":{"3254":{}},"parent":{}}],["deletecategoryrulecondition",{"_index":1557,"name":{"3278":{}},"parent":{}}],["deletecategoryruleconditions",{"_index":1554,"name":{"3275":{}},"parent":{}}],["deletecategoryrules",{"_index":1548,"name":{"3269":{}},"parent":{}}],["deletecertificate",{"_index":24,"name":{"23":{}},"parent":{}}],["deleteclient",{"_index":900,"name":{"1698":{}},"parent":{}}],["deletecoupon",{"_index":1291,"name":{"2514":{}},"parent":{}}],["deletecustomerfromcustomerlist",{"_index":606,"name":{"967":{}},"parent":{}}],["deletecustomerpaymentinstrument",{"_index":709,"name":{"1233":{}},"parent":{}}],["deletecustomerproductlist",{"_index":713,"name":{"1237":{}},"parent":{}}],["deletecustomerproductlistitem",{"_index":717,"name":{"1241":{}},"parent":{}}],["deletecustomrule",{"_index":44,"name":{"43":{}},"parent":{}}],["deletefirewallrule",{"_index":15,"name":{"14":{}},"parent":{}}],["deletegiftcertificate",{"_index":1339,"name":{"2642":{}},"parent":{}}],["deleteidentityprovider",{"_index":907,"name":{"1705":{}},"parent":{}}],["deletelogpushjob",{"_index":38,"name":{"37":{}},"parent":{}}],["deletemrtrule",{"_index":31,"name":{"30":{}},"parent":{}}],["deletemrtruleset",{"_index":30,"name":{"29":{}},"parent":{}}],["deleteproduct",{"_index":1629,"name":{"3442":{}},"parent":{}}],["deleteproductoption",{"_index":1645,"name":{"3458":{}},"parent":{}}],["deleteproductoptionvalue",{"_index":1649,"name":{"3462":{}},"parent":{}}],["deletepromotion",{"_index":1389,"name":{"2773":{}},"parent":{}}],["deletepwdlesstemplate",{"_index":903,"name":{"1701":{}},"parent":{}}],["deleteratelimitingrule",{"_index":49,"name":{"48":{}},"parent":{}}],["deleterule",{"_index":1552,"name":{"3273":{}},"parent":{}}],["deleteshopper",{"_index":908,"name":{"1706":{}},"parent":{}}],["deleteshoppercontext",{"_index":665,"name":{"1108":{}},"parent":{}}],["deletesourcecodegroup",{"_index":1486,"name":{"3125":{}},"parent":{}}],["deletevariationattribute",{"_index":1659,"name":{"3472":{}},"parent":{}}],["deletevariationattributevalue",{"_index":1654,"name":{"3467":{}},"parent":{}}],["description",{"_index":193,"name":{"190":{},"209":{},"365":{},"428":{},"447":{},"573":{},"592":{},"796":{},"815":{},"1078":{},"1097":{},"1190":{},"1209":{},"1412":{},"1431":{},"1549":{},"1568":{},"1624":{},"1643":{},"2021":{},"2040":{},"2200":{},"2219":{},"2363":{},"2382":{},"2477":{},"2496":{},"2612":{},"2631":{},"2728":{},"2747":{},"2870":{},"2889":{},"2982":{},"3001":{},"3097":{},"3116":{},"3221":{},"3240":{},"3414":{},"3433":{},"3585":{},"3604":{},"3729":{},"3748":{},"3893":{},"3912":{}},"parent":{}}],["detail",{"_index":989,"name":{"1852":{},"1871":{}},"parent":{}}],["direction",{"_index":1062,"name":{"1944":{}},"parent":{}}],["discount",{"_index":286,"name":{"285":{},"616":{},"839":{},"1260":{}},"parent":{}}],["discountrequest",{"_index":500,"name":{"655":{},"878":{}},"parent":{}}],["discovery",{"_index":935,"name":{"1756":{}},"parent":{"1757":{},"1971":{},"1972":{},"1973":{},"2110":{},"2111":{}}}],["discovery.shopperdiscoverysearch",{"_index":937,"name":{},"parent":{"1758":{},"1759":{},"1760":{},"1761":{},"1762":{},"1763":{},"1765":{},"1767":{},"1769":{},"1771":{},"1773":{},"1775":{},"1777":{},"1779":{},"1781":{},"1783":{},"1785":{},"1786":{},"1787":{},"1788":{},"1789":{},"1790":{},"1791":{},"1793":{},"1795":{},"1797":{},"1799":{},"1800":{},"1801":{},"1802":{},"1803":{},"1804":{},"1805":{},"1806":{},"1807":{},"1808":{},"1809":{},"1810":{},"1811":{},"1812":{},"1813":{},"1814":{},"1815":{},"1816":{},"1817":{},"1818":{},"1819":{},"1820":{},"1821":{},"1823":{},"1825":{},"1827":{},"1829":{},"1832":{},"1835":{},"1840":{},"1842":{},"1844":{},"1846":{},"1848":{},"1854":{},"1856":{},"1858":{},"1860":{},"1862":{},"1864":{},"1866":{},"1873":{},"1875":{},"1881":{},"1882":{},"1888":{},"1896":{},"1905":{},"1906":{},"1907":{},"1912":{},"1918":{},"1923":{},"1924":{},"1926":{},"1932":{},"1937":{},"1938":{},"1939":{},"1940":{},"1941":{},"1946":{},"1948":{},"1949":{},"1954":{},"1955":{},"1956":{},"1963":{},"1966":{}}}],["discovery.shopperdiscoverysearch.asynccreated",{"_index":946,"name":{},"parent":{"1776":{}}}],["discovery.shopperdiscoverysearch.attributegrouping",{"_index":1067,"name":{},"parent":{"1950":{}}}],["discovery.shopperdiscoverysearch.attributegrouping.__type",{"_index":1068,"name":{},"parent":{"1951":{},"1952":{},"1953":{}}}],["discovery.shopperdiscoverysearch.attributesorting",{"_index":1060,"name":{},"parent":{"1942":{}}}],["discovery.shopperdiscoverysearch.attributesorting.__type",{"_index":1061,"name":{},"parent":{"1943":{},"1944":{},"1945":{}}}],["discovery.shopperdiscoverysearch.attributesquery",{"_index":1008,"name":{},"parent":{"1876":{}}}],["discovery.shopperdiscoverysearch.attributesquery.__type",{"_index":1009,"name":{},"parent":{"1877":{},"1878":{},"1879":{},"1880":{}}}],["discovery.shopperdiscoverysearch.authenticationfailure",{"_index":985,"name":{},"parent":{"1847":{}}}],["discovery.shopperdiscoverysearch.authorizationfailure",{"_index":995,"name":{},"parent":{"1859":{}}}],["discovery.shopperdiscoverysearch.badrequest",{"_index":996,"name":{},"parent":{"1861":{}}}],["discovery.shopperdiscoverysearch.baseerror",{"_index":987,"name":{},"parent":{"1849":{}}}],["discovery.shopperdiscoverysearch.baseerror.__type",{"_index":988,"name":{},"parent":{"1850":{},"1851":{},"1852":{},"1853":{}}}],["discovery.shopperdiscoverysearch.commonerrors",{"_index":963,"name":{},"parent":{"1826":{}}}],["discovery.shopperdiscoverysearch.dateconditionalrequest",{"_index":943,"name":{},"parent":{"1770":{}}}],["discovery.shopperdiscoverysearch.etagconditionalrequest",{"_index":945,"name":{},"parent":{"1774":{}}}],["discovery.shopperdiscoverysearch.etagresponse",{"_index":940,"name":{},"parent":{"1764":{}}}],["discovery.shopperdiscoverysearch.filterable",{"_index":961,"name":{},"parent":{"1824":{}}}],["discovery.shopperdiscoverysearch.internalservererror",{"_index":1000,"name":{},"parent":{"1865":{}}}],["discovery.shopperdiscoverysearch.invalidrequest",{"_index":993,"name":{},"parent":{"1857":{}}}],["discovery.shopperdiscoverysearch.nonreadablehttpmessage",{"_index":1006,"name":{},"parent":{"1874":{}}}],["discovery.shopperdiscoverysearch.nopropertiesallowed",{"_index":954,"name":{},"parent":{"1798":{}}}],["discovery.shopperdiscoverysearch.notfound",{"_index":991,"name":{},"parent":{"1855":{}}}],["discovery.shopperdiscoverysearch.offsetpaginated",{"_index":949,"name":{},"parent":{"1782":{}}}],["discovery.shopperdiscoverysearch.pagination",{"_index":974,"name":{},"parent":{"1836":{}}}],["discovery.shopperdiscoverysearch.pagination.__type",{"_index":976,"name":{},"parent":{"1837":{},"1838":{},"1839":{}}}],["discovery.shopperdiscoverysearch.phrasequery",{"_index":1014,"name":{},"parent":{"1883":{}}}],["discovery.shopperdiscoverysearch.phrasequery.__type",{"_index":1015,"name":{},"parent":{"1884":{},"1885":{},"1886":{},"1887":{}}}],["discovery.shopperdiscoverysearch.queryinput",{"_index":1026,"name":{},"parent":{"1897":{}}}],["discovery.shopperdiscoverysearch.queryinput.__type",{"_index":1027,"name":{},"parent":{"1898":{},"1899":{},"1900":{},"1901":{},"1902":{},"1903":{},"1904":{}}}],["discovery.shopperdiscoverysearch.queryoutput",{"_index":1017,"name":{},"parent":{"1889":{}}}],["discovery.shopperdiscoverysearch.queryoutput.__type",{"_index":1019,"name":{},"parent":{"1890":{},"1891":{},"1892":{},"1893":{},"1894":{},"1895":{}}}],["discovery.shopperdiscoverysearch.queryparamslimit",{"_index":951,"name":{},"parent":{"1792":{}}}],["discovery.shopperdiscoverysearch.queryparamsoffset",{"_index":952,"name":{},"parent":{"1794":{}}}],["discovery.shopperdiscoverysearch.rangefacetinput",{"_index":1049,"name":{},"parent":{"1925":{}}}],["discovery.shopperdiscoverysearch.rangefacetoutput",{"_index":1051,"name":{},"parent":{"1927":{}}}],["discovery.shopperdiscoverysearch.rangefacetoutput.__type",{"_index":1052,"name":{},"parent":{"1928":{},"1929":{},"1930":{},"1931":{}}}],["discovery.shopperdiscoverysearch.rangerefinement",{"_index":1041,"name":{},"parent":{"1913":{}}}],["discovery.shopperdiscoverysearch.rangerefinement.__type",{"_index":1042,"name":{},"parent":{"1914":{},"1915":{},"1916":{},"1917":{}}}],["discovery.shopperdiscoverysearch.ratelimited",{"_index":947,"name":{},"parent":{"1778":{}}}],["discovery.shopperdiscoverysearch.ratelimited2",{"_index":948,"name":{},"parent":{"1780":{}}}],["discovery.shopperdiscoverysearch.ratelimited3",{"_index":941,"name":{},"parent":{"1766":{}}}],["discovery.shopperdiscoverysearch.ratelimited4",{"_index":950,"name":{},"parent":{"1784":{}}}],["discovery.shopperdiscoverysearch.ratelimited5",{"_index":944,"name":{},"parent":{"1772":{}}}],["discovery.shopperdiscoverysearch.ratelimitexceeded",{"_index":1002,"name":{},"parent":{"1867":{}}}],["discovery.shopperdiscoverysearch.ratelimitexceeded.__type",{"_index":1004,"name":{},"parent":{"1868":{},"1869":{},"1870":{},"1871":{},"1872":{}}}],["discovery.shopperdiscoverysearch.relevancesorting",{"_index":1065,"name":{},"parent":{"1947":{}}}],["discovery.shopperdiscoverysearch.resourcebadrequest",{"_index":979,"name":{},"parent":{"1841":{}}}],["discovery.shopperdiscoverysearch.resourcecommonerrors",{"_index":965,"name":{},"parent":{"1828":{}}}],["discovery.shopperdiscoverysearch.resourceinvalidrequest",{"_index":983,"name":{},"parent":{"1845":{}}}],["discovery.shopperdiscoverysearch.resourcenonreadablehttpmessage",{"_index":981,"name":{},"parent":{"1843":{}}}],["discovery.shopperdiscoverysearch.result",{"_index":1073,"name":{},"parent":{"1957":{}}}],["discovery.shopperdiscoverysearch.result.__type",{"_index":1075,"name":{},"parent":{"1958":{},"1959":{},"1960":{},"1961":{},"1962":{}}}],["discovery.shopperdiscoverysearch.self",{"_index":967,"name":{},"parent":{"1830":{}}}],["discovery.shopperdiscoverysearch.self.__type",{"_index":969,"name":{},"parent":{"1831":{}}}],["discovery.shopperdiscoverysearch.selfresourcelink",{"_index":971,"name":{},"parent":{"1833":{}}}],["discovery.shopperdiscoverysearch.selfresourcelink.__type",{"_index":972,"name":{},"parent":{"1834":{}}}],["discovery.shopperdiscoverysearch.serviceunavailable",{"_index":998,"name":{},"parent":{"1863":{}}}],["discovery.shopperdiscoverysearch.sitespecific",{"_index":953,"name":{},"parent":{"1796":{}}}],["discovery.shopperdiscoverysearch.suggestion",{"_index":1081,"name":{},"parent":{"1964":{}}}],["discovery.shopperdiscoverysearch.suggestion.__type",{"_index":1083,"name":{},"parent":{"1965":{}}}],["discovery.shopperdiscoverysearch.suggestions",{"_index":1085,"name":{},"parent":{"1967":{}}}],["discovery.shopperdiscoverysearch.suggestions.__type",{"_index":1087,"name":{},"parent":{"1968":{},"1969":{},"1970":{}}}],["discovery.shopperdiscoverysearch.synccreated",{"_index":942,"name":{},"parent":{"1768":{}}}],["discovery.shopperdiscoverysearch.traceable",{"_index":959,"name":{},"parent":{"1822":{}}}],["discovery.shopperdiscoverysearch.valuefacetinput",{"_index":1054,"name":{},"parent":{"1933":{}}}],["discovery.shopperdiscoverysearch.valuefacetinput.__type",{"_index":1056,"name":{},"parent":{"1934":{},"1935":{},"1936":{}}}],["discovery.shopperdiscoverysearch.valuefacetoutput",{"_index":1044,"name":{},"parent":{"1919":{}}}],["discovery.shopperdiscoverysearch.valuefacetoutput.__type",{"_index":1045,"name":{},"parent":{"1920":{},"1921":{},"1922":{}}}],["discovery.shopperdiscoverysearch.valuerefinement",{"_index":1035,"name":{},"parent":{"1908":{}}}],["discovery.shopperdiscoverysearch.valuerefinement.__type",{"_index":1037,"name":{},"parent":{"1909":{},"1910":{},"1911":{}}}],["discovery.shoppersearch",{"_index":1091,"name":{},"parent":{"1974":{},"1975":{},"1976":{},"1977":{},"1978":{},"1979":{},"1980":{},"1981":{},"1982":{},"1983":{},"1984":{},"1985":{},"1986":{},"1988":{},"1990":{},"1992":{},"1994":{},"1996":{},"1997":{},"1998":{},"1999":{},"2000":{},"2001":{},"2002":{},"2003":{},"2004":{},"2005":{},"2006":{},"2007":{},"2008":{},"2009":{},"2010":{},"2011":{},"2012":{},"2013":{},"2014":{},"2015":{},"2016":{},"2038":{},"2045":{},"2046":{},"2047":{},"2049":{},"2051":{},"2053":{},"2055":{},"2057":{},"2059":{},"2061":{},"2063":{},"2065":{},"2067":{},"2069":{},"2071":{},"2073":{},"2075":{},"2077":{},"2078":{},"2079":{},"2080":{},"2081":{},"2082":{},"2083":{},"2084":{},"2085":{},"2086":{},"2087":{},"2088":{},"2089":{},"2090":{},"2091":{},"2092":{},"2093":{},"2094":{},"2095":{},"2096":{},"2097":{},"2098":{},"2099":{},"2100":{},"2101":{},"2102":{},"2103":{},"2104":{},"2105":{},"2106":{},"2108":{}}}],["discovery.shoppersearch.asynccreated",{"_index":1111,"name":{},"parent":{"2064":{}}}],["discovery.shoppersearch.attributedefinition",{"_index":1099,"name":{},"parent":{"2017":{}}}],["discovery.shoppersearch.attributedefinition.__type",{"_index":1100,"name":{},"parent":{"2018":{},"2019":{},"2020":{},"2021":{},"2022":{},"2023":{},"2024":{},"2025":{},"2026":{},"2027":{},"2028":{},"2029":{},"2030":{},"2031":{},"2032":{},"2033":{},"2034":{},"2035":{},"2036":{},"2037":{}}}],["discovery.shoppersearch.badrequest",{"_index":1137,"name":{},"parent":{"2109":{}}}],["discovery.shoppersearch.dateconditionalrequest",{"_index":1108,"name":{},"parent":{"2058":{}}}],["discovery.shoppersearch.daterangefilter",{"_index":1103,"name":{},"parent":{"2048":{}}}],["discovery.shoppersearch.datetimerangefilter",{"_index":1117,"name":{},"parent":{"2076":{}}}],["discovery.shoppersearch.etagconditionalrequest",{"_index":1110,"name":{},"parent":{"2062":{}}}],["discovery.shoppersearch.etagresponse",{"_index":1104,"name":{},"parent":{"2050":{}}}],["discovery.shoppersearch.integerrangefilter",{"_index":1105,"name":{},"parent":{"2052":{}}}],["discovery.shoppersearch.nopropertiesallowed",{"_index":1098,"name":{},"parent":{"1995":{}}}],["discovery.shoppersearch.numericrangefilter",{"_index":1116,"name":{},"parent":{"2074":{}}}],["discovery.shoppersearch.offsetpaginated",{"_index":1114,"name":{},"parent":{"2070":{}}}],["discovery.shoppersearch.propertyvaluedefinition",{"_index":1101,"name":{},"parent":{"2039":{}}}],["discovery.shoppersearch.propertyvaluedefinition.__type",{"_index":1102,"name":{},"parent":{"2040":{},"2041":{},"2042":{},"2043":{},"2044":{}}}],["discovery.shoppersearch.queryparamslimit",{"_index":1094,"name":{},"parent":{"1987":{}}}],["discovery.shoppersearch.queryparamsoffset",{"_index":1095,"name":{},"parent":{"1989":{}}}],["discovery.shoppersearch.ratelimited",{"_index":1112,"name":{},"parent":{"2066":{}}}],["discovery.shoppersearch.ratelimited2",{"_index":1113,"name":{},"parent":{"2068":{}}}],["discovery.shoppersearch.ratelimited3",{"_index":1106,"name":{},"parent":{"2054":{}}}],["discovery.shoppersearch.ratelimited4",{"_index":1115,"name":{},"parent":{"2072":{}}}],["discovery.shoppersearch.ratelimited5",{"_index":1109,"name":{},"parent":{"2060":{}}}],["discovery.shoppersearch.selectable",{"_index":1097,"name":{},"parent":{"1993":{}}}],["discovery.shoppersearch.sitespecific",{"_index":1096,"name":{},"parent":{"1991":{}}}],["discovery.shoppersearch.synccreated",{"_index":1107,"name":{},"parent":{"2056":{}}}],["discovery.shoppersearch.unauthorized",{"_index":1136,"name":{},"parent":{"2107":{}}}],["displayvalue",{"_index":212,"name":{"210":{},"448":{},"593":{},"816":{},"1098":{},"1210":{},"1432":{},"1569":{},"1644":{},"2041":{},"2220":{},"2383":{},"2497":{},"2632":{},"2748":{},"2890":{},"3002":{},"3117":{},"3241":{},"3434":{},"3605":{},"3749":{},"3913":{}},"parent":{}}],["email",{"_index":320,"name":{"316":{},"662":{},"885":{}},"parent":{}}],["endpointname",{"_index":1189,"name":{"2243":{}},"parent":{}}],["error",{"_index":418,"name":{"484":{},"736":{},"959":{},"1035":{},"1147":{},"1357":{},"1508":{},"1688":{},"1753":{},"2078":{},"2157":{},"2320":{},"2434":{},"2569":{},"2686":{},"2827":{},"2939":{},"3015":{},"3178":{},"3372":{},"3543":{},"3686":{},"3950":{}},"parent":{}}],["errorresponse",{"_index":93,"name":{"92":{},"233":{},"527":{},"750":{},"988":{},"1112":{},"1322":{},"1473":{},"1655":{},"1718":{},"1762":{},"2045":{},"2122":{},"2285":{},"2399":{},"2534":{},"2651":{},"2792":{},"2904":{},"3020":{},"3143":{},"3327":{},"3502":{},"3641":{},"3794":{},"3917":{}},"parent":{}}],["etagconditionalrequest",{"_index":139,"name":{"137":{},"467":{},"719":{},"942":{},"1016":{},"1128":{},"1338":{},"1489":{},"1671":{},"1734":{},"1773":{},"2061":{},"2138":{},"2301":{},"2415":{},"2550":{},"2667":{},"2808":{},"2920":{},"3036":{},"3159":{},"3355":{},"3524":{},"3667":{},"3805":{},"3933":{}},"parent":{}}],["etagresponse",{"_index":129,"name":{"127":{},"455":{},"707":{},"930":{},"1004":{},"1116":{},"1326":{},"1477":{},"1659":{},"1722":{},"1763":{},"2049":{},"2126":{},"2289":{},"2403":{},"2538":{},"2655":{},"2796":{},"2908":{},"3024":{},"3147":{},"3347":{},"3512":{},"3655":{},"3795":{},"3921":{}},"parent":{}}],["excludedproduct",{"_index":1580,"name":{"3308":{}},"parent":{}}],["excludedproductrequest",{"_index":1592,"name":{"3324":{}},"parent":{}}],["excludedproductsresult",{"_index":1587,"name":{"3318":{}},"parent":{}}],["executionjobstatusresult",{"_index":1562,"name":{"3285":{}},"parent":{}}],["executionrequest",{"_index":1578,"name":{"3306":{}},"parent":{}}],["expansionattribute",{"_index":955,"name":{"1818":{}},"parent":{}}],["experience",{"_index":1138,"name":{"2112":{}},"parent":{"2113":{},"2234":{},"2235":{}}}],["experience.shopperexperience",{"_index":1140,"name":{},"parent":{"2114":{},"2115":{},"2116":{},"2117":{},"2118":{},"2119":{},"2120":{},"2121":{},"2122":{},"2123":{},"2124":{},"2126":{},"2128":{},"2130":{},"2132":{},"2134":{},"2136":{},"2138":{},"2140":{},"2142":{},"2144":{},"2146":{},"2148":{},"2150":{},"2152":{},"2154":{},"2156":{},"2157":{},"2158":{},"2159":{},"2160":{},"2161":{},"2162":{},"2163":{},"2164":{},"2165":{},"2166":{},"2168":{},"2170":{},"2172":{},"2174":{},"2176":{},"2177":{},"2178":{},"2179":{},"2180":{},"2181":{},"2182":{},"2183":{},"2184":{},"2185":{},"2186":{},"2187":{},"2188":{},"2189":{},"2190":{},"2191":{},"2192":{},"2193":{},"2194":{},"2195":{},"2217":{},"2224":{},"2226":{},"2228":{},"2230":{},"2232":{}}}],["experience.shopperexperience.aspectattributeinvalid",{"_index":1179,"name":{},"parent":{"2231":{}}}],["experience.shopperexperience.aspecttypenotfound",{"_index":1175,"name":{},"parent":{"2227":{}}}],["experience.shopperexperience.asynccreated",{"_index":1155,"name":{},"parent":{"2141":{}}}],["experience.shopperexperience.attributedefinition",{"_index":1168,"name":{},"parent":{"2196":{}}}],["experience.shopperexperience.attributedefinition.__type",{"_index":1169,"name":{},"parent":{"2197":{},"2198":{},"2199":{},"2200":{},"2201":{},"2202":{},"2203":{},"2204":{},"2205":{},"2206":{},"2207":{},"2208":{},"2209":{},"2210":{},"2211":{},"2212":{},"2213":{},"2214":{},"2215":{},"2216":{}}}],["experience.shopperexperience.businessobjectidinvalid",{"_index":1173,"name":{},"parent":{"2225":{}}}],["experience.shopperexperience.dateconditionalrequest",{"_index":1152,"name":{},"parent":{"2135":{}}}],["experience.shopperexperience.daterangefilter",{"_index":1147,"name":{},"parent":{"2125":{}}}],["experience.shopperexperience.datetimerangefilter",{"_index":1162,"name":{},"parent":{"2155":{}}}],["experience.shopperexperience.etagconditionalrequest",{"_index":1154,"name":{},"parent":{"2139":{}}}],["experience.shopperexperience.etagresponse",{"_index":1148,"name":{},"parent":{"2127":{}}}],["experience.shopperexperience.integerrangefilter",{"_index":1149,"name":{},"parent":{"2129":{}}}],["experience.shopperexperience.localespecific",{"_index":1180,"name":{},"parent":{"2233":{}}}],["experience.shopperexperience.nopropertiesallowed",{"_index":1167,"name":{},"parent":{"2175":{}}}],["experience.shopperexperience.numericrangefilter",{"_index":1161,"name":{},"parent":{"2153":{}}}],["experience.shopperexperience.offsetpaginated",{"_index":1158,"name":{},"parent":{"2147":{}}}],["experience.shopperexperience.pagenotfound",{"_index":1177,"name":{},"parent":{"2229":{}}}],["experience.shopperexperience.propertyvaluedefinition",{"_index":1170,"name":{},"parent":{"2218":{}}}],["experience.shopperexperience.propertyvaluedefinition.__type",{"_index":1171,"name":{},"parent":{"2219":{},"2220":{},"2221":{},"2222":{},"2223":{}}}],["experience.shopperexperience.queryparamslimit",{"_index":1163,"name":{},"parent":{"2167":{}}}],["experience.shopperexperience.queryparamsoffset",{"_index":1164,"name":{},"parent":{"2169":{}}}],["experience.shopperexperience.rangefilter",{"_index":1159,"name":{},"parent":{"2149":{}}}],["experience.shopperexperience.ratelimited",{"_index":1156,"name":{},"parent":{"2143":{}}}],["experience.shopperexperience.ratelimited2",{"_index":1157,"name":{},"parent":{"2145":{}}}],["experience.shopperexperience.ratelimited3",{"_index":1150,"name":{},"parent":{"2131":{}}}],["experience.shopperexperience.ratelimited4",{"_index":1160,"name":{},"parent":{"2151":{}}}],["experience.shopperexperience.ratelimited5",{"_index":1153,"name":{},"parent":{"2137":{}}}],["experience.shopperexperience.selectable",{"_index":1166,"name":{},"parent":{"2173":{}}}],["experience.shopperexperience.sitespecific",{"_index":1165,"name":{},"parent":{"2171":{}}}],["experience.shopperexperience.synccreated",{"_index":1151,"name":{},"parent":{"2133":{}}}],["expirationmonth",{"_index":277,"name":{"276":{},"606":{},"676":{},"829":{},"899":{}},"parent":{}}],["expirationyear",{"_index":278,"name":{"277":{},"607":{},"677":{},"830":{},"900":{}},"parent":{}}],["facetinput",{"_index":1047,"name":{"1923":{}},"parent":{}}],["facetoutput",{"_index":1058,"name":{"1939":{}},"parent":{}}],["facetrequest",{"_index":1031,"name":{"1903":{},"1937":{}},"parent":{}}],["facets",{"_index":1020,"name":{"1891":{},"1902":{}},"parent":{}}],["facettype",{"_index":1046,"name":{"1922":{},"1931":{},"1936":{}},"parent":{}}],["filter",{"_index":181,"name":{"179":{},"417":{},"562":{},"785":{},"1068":{},"1180":{},"1402":{},"1539":{},"1613":{},"1813":{},"2010":{},"2190":{},"2353":{},"2467":{},"2602":{},"2718":{},"2860":{},"2972":{},"3087":{},"3211":{},"3404":{},"3575":{},"3719":{},"3789":{},"3882":{}},"parent":{}}],["filterable",{"_index":960,"name":{"1823":{}},"parent":{}}],["filteredquery",{"_index":171,"name":{"169":{},"407":{},"552":{},"775":{},"1058":{},"1170":{},"1392":{},"1529":{},"1603":{},"1803":{},"2000":{},"2180":{},"2343":{},"2457":{},"2592":{},"2708":{},"2850":{},"2962":{},"3077":{},"3201":{},"3394":{},"3565":{},"3709":{},"3779":{},"3872":{}},"parent":{}}],["firewallrule",{"_index":53,"name":{"52":{}},"parent":{}}],["firewallruleenvelope",{"_index":84,"name":{"83":{}},"parent":{}}],["firewallrulesenvelope",{"_index":86,"name":{"85":{}},"parent":{}}],["forbidden",{"_index":627,"name":{"991":{}},"parent":{}}],["generatecodechallenge",{"_index":1198,"name":{"2259":{}},"parent":{}}],["getaccesstoken",{"_index":810,"name":{"1444":{},"2250":{}},"parent":{}}],["getaddressesforcustomerfromcustomerlist",{"_index":610,"name":{"971":{}},"parent":{}}],["getaddressforcustomerfromcustomerlist",{"_index":612,"name":{"973":{}},"parent":{}}],["getassignedproductfromcategory",{"_index":1538,"name":{"3259":{}},"parent":{}}],["getbasket",{"_index":425,"name":{"493":{}},"parent":{}}],["getcampaign",{"_index":1251,"name":{"2393":{}},"parent":{}}],["getcatalog",{"_index":1530,"name":{"3251":{}},"parent":{}}],["getcatalogs",{"_index":1529,"name":{"3250":{}},"parent":{}}],["getcategories",{"_index":1701,"name":{"3615":{}},"parent":{}}],["getcategoriesfromcatalog",{"_index":1532,"name":{"3253":{}},"parent":{}}],["getcategorizationattributedefinitions",{"_index":1662,"name":{"3475":{}},"parent":{}}],["getcategorizationstatus",{"_index":1543,"name":{"3264":{}},"parent":{}}],["getcategory",{"_index":1702,"name":{"3616":{}},"parent":{}}],["getcategoryfromcatalog",{"_index":1534,"name":{"3255":{}},"parent":{}}],["getcategoryrulecondition",{"_index":1555,"name":{"3276":{}},"parent":{}}],["getcategoryruleconditions",{"_index":1553,"name":{"3274":{}},"parent":{}}],["getcategoryrules",{"_index":1547,"name":{"3268":{}},"parent":{}}],["getcertificates",{"_index":22,"name":{"21":{}},"parent":{}}],["getcodeandusidfromurl",{"_index":1196,"name":{"2257":{}},"parent":{}}],["getcoupon",{"_index":1292,"name":{"2515":{}},"parent":{}}],["getcouponcodes",{"_index":1295,"name":{"2518":{}},"parent":{}}],["getcustomer",{"_index":699,"name":{"1223":{}},"parent":{}}],["getcustomeraddress",{"_index":702,"name":{"1226":{}},"parent":{}}],["getcustomerbaskets",{"_index":705,"name":{"1229":{}},"parent":{}}],["getcustomerfromcustomerlist",{"_index":607,"name":{"968":{}},"parent":{}}],["getcustomerorders",{"_index":706,"name":{"1230":{}},"parent":{}}],["getcustomerpaymentinstrument",{"_index":710,"name":{"1234":{}},"parent":{}}],["getcustomerproductlist",{"_index":714,"name":{"1238":{}},"parent":{}}],["getcustomerproductlistitem",{"_index":718,"name":{"1242":{}},"parent":{}}],["getcustomerproductlists",{"_index":711,"name":{"1235":{}},"parent":{}}],["getcustomrule",{"_index":42,"name":{"41":{}},"parent":{}}],["getcustomrules",{"_index":40,"name":{"39":{}},"parent":{}}],["getexclusionlist",{"_index":1544,"name":{"3265":{}},"parent":{}}],["getexternalprofile",{"_index":698,"name":{"1222":{}},"parent":{}}],["getfirewallrule",{"_index":13,"name":{"12":{}},"parent":{}}],["getfirewallrules",{"_index":11,"name":{"10":{}},"parent":{}}],["getgiftcertificate",{"_index":1340,"name":{"2643":{},"2898":{}},"parent":{}}],["getjwksuri",{"_index":821,"name":{"1456":{}},"parent":{}}],["getlogpushjob",{"_index":36,"name":{"35":{}},"parent":{}}],["getmrtrules",{"_index":29,"name":{"28":{}},"parent":{}}],["getorder",{"_index":222,"name":{"221":{},"742":{}},"parent":{}}],["getorders",{"_index":220,"name":{"219":{}},"parent":{}}],["getpage",{"_index":1142,"name":{"2116":{}},"parent":{}}],["getpages",{"_index":1141,"name":{"2115":{}},"parent":{}}],["getpasswordlessaccesstoken",{"_index":816,"name":{"1451":{}},"parent":{}}],["getpasswordresettoken",{"_index":815,"name":{"1449":{}},"parent":{}}],["getpaymentmethodsforbasket",{"_index":443,"name":{"511":{}},"parent":{}}],["getpaymentmethodsfororder",{"_index":549,"name":{"747":{}},"parent":{}}],["getpricebooksforbasket",{"_index":447,"name":{"515":{}},"parent":{}}],["getproduct",{"_index":1630,"name":{"3443":{},"3614":{}},"parent":{}}],["getproductlistitem",{"_index":722,"name":{"1246":{}},"parent":{}}],["getproductoption",{"_index":1646,"name":{"3459":{}},"parent":{}}],["getproductoptions",{"_index":1644,"name":{"3457":{}},"parent":{}}],["getproductoptionvalue",{"_index":1650,"name":{"3463":{}},"parent":{}}],["getproducts",{"_index":1700,"name":{"3613":{}},"parent":{}}],["getpromotion",{"_index":1390,"name":{"2774":{}},"parent":{}}],["getpromotions",{"_index":1454,"name":{"3010":{}},"parent":{}}],["getpromotionsforcampaign",{"_index":1455,"name":{"3011":{}},"parent":{}}],["getpublicproductlist",{"_index":721,"name":{"1245":{}},"parent":{}}],["getpublicproductlistsbysearchterm",{"_index":720,"name":{"1244":{}},"parent":{}}],["getratelimitingrule",{"_index":47,"name":{"46":{}},"parent":{}}],["getratelimitingrules",{"_index":46,"name":{"45":{}},"parent":{}}],["getresetpasswordtoken",{"_index":696,"name":{"1220":{}},"parent":{}}],["getrulebyid",{"_index":1550,"name":{"3271":{}},"parent":{}}],["getsearchsuggestions",{"_index":1093,"name":{"1976":{},"3759":{}},"parent":{}}],["getsecuritysettings",{"_index":18,"name":{"17":{}},"parent":{}}],["getsessionbridgeaccesstoken",{"_index":811,"name":{"1445":{}},"parent":{}}],["getshippingmethodsforshipment",{"_index":454,"name":{"522":{}},"parent":{}}],["getshoppercontext",{"_index":663,"name":{"1106":{}},"parent":{}}],["getsourcecodegroup",{"_index":1487,"name":{"3126":{}},"parent":{}}],["getspeedsettings",{"_index":16,"name":{"15":{}},"parent":{}}],["getstores",{"_index":1759,"name":{"3846":{}},"parent":{}}],["getsuggestions",{"_index":939,"name":{"1760":{}},"parent":{}}],["gettaxesfrombasket",{"_index":456,"name":{"524":{}},"parent":{}}],["gettaxesfromorder",{"_index":550,"name":{"748":{}},"parent":{}}],["gettrustedagentaccesstoken",{"_index":814,"name":{"1448":{}},"parent":{}}],["gettrustedagentauthorizationtoken",{"_index":813,"name":{"1447":{}},"parent":{}}],["gettrustedsystemaccesstoken",{"_index":812,"name":{"1446":{}},"parent":{}}],["geturlmapping",{"_index":863,"name":{"1577":{}},"parent":{}}],["getuserinfo",{"_index":819,"name":{"1454":{}},"parent":{}}],["getvariationattribute",{"_index":1658,"name":{"3471":{}},"parent":{}}],["getvariationattributes",{"_index":1657,"name":{"3470":{}},"parent":{}}],["getvariationattributevalue",{"_index":1653,"name":{"3466":{}},"parent":{}}],["getvariationformasterproduct",{"_index":1641,"name":{"3454":{}},"parent":{}}],["getvariationgroupformasterproduct",{"_index":1636,"name":{"3449":{}},"parent":{}}],["getvariationgroupsformasterproduct",{"_index":1634,"name":{"3447":{}},"parent":{}}],["getvariationsformasterproduct",{"_index":1639,"name":{"3452":{}},"parent":{}}],["getwafgroups",{"_index":6,"name":{"5":{}},"parent":{}}],["getwafmanagedrulesets",{"_index":50,"name":{"49":{}},"parent":{}}],["getwafrule",{"_index":9,"name":{"8":{}},"parent":{}}],["getwafrules",{"_index":8,"name":{"7":{}},"parent":{}}],["getwellknownopenidconfiguration",{"_index":820,"name":{"1455":{}},"parent":{}}],["getzonesinfo",{"_index":5,"name":{"4":{}},"parent":{}}],["giftcertificate",{"_index":1342,"name":{"2647":{},"2900":{}},"parent":{}}],["giftcertificateamountoutofrangeexception",{"_index":1376,"name":{"2758":{}},"parent":{}}],["giftcertificatecreatemerchantidnotuniqueexception",{"_index":1370,"name":{"2752":{}},"parent":{}}],["giftcertificateitem",{"_index":367,"name":{"359":{},"665":{},"888":{},"1303":{}},"parent":{}}],["giftcertificatenotfound",{"_index":1372,"name":{"2754":{}},"parent":{}}],["giftcertificaterequest",{"_index":1425,"name":{"2901":{}},"parent":{}}],["giftcertificates",{"_index":1335,"name":{"2638":{},"2650":{}},"parent":{}}],["giftcertificatesearchresult",{"_index":1343,"name":{"2648":{}},"parent":{}}],["giftcertificatessearch",{"_index":1338,"name":{"2641":{}},"parent":{}}],["groupeditems",{"_index":1079,"name":{"1962":{}},"parent":{}}],["groupedtaxitem",{"_index":510,"name":{"667":{},"890":{},"1308":{}},"parent":{}}],["groupid",{"_index":1077,"name":{"1960":{}},"parent":{}}],["grouping",{"_index":1030,"name":{"1901":{},"1948":{}},"parent":{}}],["grouptype",{"_index":1069,"name":{"1953":{}},"parent":{}}],["guest",{"_index":321,"name":{"317":{}},"parent":{}}],["guestorderlookup",{"_index":545,"name":{"743":{}},"parent":{}}],["hasbadrequestresponse",{"_index":119,"name":{"117":{}},"parent":{}}],["hasconflictresponse",{"_index":121,"name":{"119":{}},"parent":{}}],["hasforbiddenaccessresponse",{"_index":123,"name":{"121":{}},"parent":{}}],["hasinternalservererrorresponse",{"_index":125,"name":{"123":{}},"parent":{}}],["hasresourcenotfoundresponse",{"_index":127,"name":{"125":{}},"parent":{}}],["hasunauthorizedresponse",{"_index":116,"name":{"115":{}},"parent":{}}],["helpers",{"_index":1181,"name":{"2236":{},"2268":{}},"parent":{"2237":{},"2238":{},"2239":{},"2246":{},"2247":{},"2253":{},"2254":{},"2255":{},"2256":{},"2257":{},"2258":{},"2259":{},"2260":{},"2261":{},"2262":{},"2263":{},"2264":{},"2265":{},"2266":{},"2267":{},"2268":{}}}],["helpers.customapiparameters",{"_index":1185,"name":{},"parent":{"2240":{}}}],["helpers.customapiparameters.__type",{"_index":1187,"name":{},"parent":{"2241":{},"2242":{},"2243":{},"2244":{},"2245":{}}}],["helpers.helpers",{"_index":1207,"name":{},"parent":{"2269":{}}}],["helpers.islasclient",{"_index":1194,"name":{},"parent":{"2248":{},"2249":{},"2250":{},"2251":{},"2252":{}}}],["highlight",{"_index":1071,"name":{"1955":{}},"parent":{}}],["highlighting",{"_index":1012,"name":{"1880":{},"1881":{},"1887":{}},"parent":{}}],["highlights",{"_index":1076,"name":{"1959":{}},"parent":{}}],["hits",{"_index":1018,"name":{"1890":{}},"parent":{}}],["holder",{"_index":279,"name":{"278":{},"608":{},"678":{},"831":{},"901":{}},"parent":{}}],["href",{"_index":968,"name":{"1831":{}},"parent":{}}],["hsts",{"_index":74,"name":{"73":{}},"parent":{}}],["id",{"_index":191,"name":{"188":{},"211":{},"306":{},"377":{},"426":{},"449":{},"571":{},"594":{},"621":{},"686":{},"696":{},"794":{},"817":{},"844":{},"909":{},"919":{},"1076":{},"1099":{},"1188":{},"1211":{},"1410":{},"1433":{},"1547":{},"1570":{},"1622":{},"1645":{},"2019":{},"2042":{},"2198":{},"2221":{},"2361":{},"2384":{},"2475":{},"2498":{},"2610":{},"2633":{},"2726":{},"2749":{},"2868":{},"2891":{},"2980":{},"3003":{},"3095":{},"3118":{},"3219":{},"3242":{},"3412":{},"3435":{},"3583":{},"3606":{},"3727":{},"3750":{},"3891":{},"3914":{}},"parent":{}}],["idconflict",{"_index":1284,"name":{"2505":{},"3139":{}},"parent":{}}],["identityprovider",{"_index":917,"name":{"1716":{}},"parent":{}}],["identityproviderlistresponse",{"_index":910,"name":{"1709":{}},"parent":{}}],["identityproviderresponse",{"_index":909,"name":{"1708":{}},"parent":{}}],["image",{"_index":765,"name":{"1315":{},"2101":{},"3636":{},"3834":{}},"parent":{}}],["imagegroup",{"_index":753,"name":{"1296":{},"2095":{},"3309":{},"3492":{},"3633":{}},"parent":{}}],["index",{"_index":1789,"name":{"3959":{}},"parent":{"3960":{},"3961":{},"3962":{}}}],["instance",{"_index":990,"name":{"1853":{},"1872":{}},"parent":{}}],["integerrangefilter",{"_index":401,"name":{"457":{},"709":{},"932":{},"1006":{},"1118":{},"1328":{},"1479":{},"1661":{},"1724":{},"2051":{},"2128":{},"2291":{},"2405":{},"2540":{},"2657":{},"2798":{},"2910":{},"3026":{},"3149":{},"3349":{},"3514":{},"3657":{},"3923":{}},"parent":{}}],["internalservererror",{"_index":999,"name":{"1864":{}},"parent":{}}],["introspectresponse",{"_index":824,"name":{"1460":{}},"parent":{}}],["introspecttoken",{"_index":818,"name":{"1453":{}},"parent":{}}],["invalidcurrency",{"_index":257,"name":{"258":{}},"parent":{}}],["invalidgiftcertificateexception",{"_index":1384,"name":{"2766":{}},"parent":{}}],["invalidgiftcertificatestatus",{"_index":1382,"name":{"2764":{}},"parent":{}}],["invalidordertotal",{"_index":253,"name":{"254":{}},"parent":{}}],["invalidquery",{"_index":1500,"name":{"3141":{}},"parent":{}}],["invalidrecipientemail",{"_index":1378,"name":{"2760":{}},"parent":{}}],["invalidrequest",{"_index":992,"name":{"1856":{}},"parent":{}}],["invalidtaxtotal",{"_index":247,"name":{"248":{}},"parent":{}}],["inventory",{"_index":750,"name":{"1292":{},"3632":{}},"parent":{}}],["islasclient",{"_index":1193,"name":{"2247":{}},"parent":{}}],["issuenumber",{"_index":280,"name":{"279":{},"609":{},"679":{},"832":{},"902":{}},"parent":{}}],["itemreference",{"_index":1070,"name":{"1954":{}},"parent":{}}],["itemresponseenvelope",{"_index":64,"name":{"63":{}},"parent":{}}],["jobexecutionnotfound",{"_index":1601,"name":{"3338":{}},"parent":{}}],["key",{"_index":194,"name":{"191":{},"429":{},"574":{},"797":{},"1079":{},"1191":{},"1413":{},"1550":{},"1625":{},"2022":{},"2201":{},"2364":{},"2478":{},"2613":{},"2729":{},"2871":{},"2983":{},"3098":{},"3222":{},"3415":{},"3586":{},"3730":{},"3894":{}},"parent":{}}],["l10nstring",{"_index":186,"name":{"184":{},"422":{},"567":{},"790":{},"1072":{},"1184":{},"1406":{},"1543":{},"1618":{},"2015":{},"2194":{},"2357":{},"2471":{},"2606":{},"2722":{},"2864":{},"2976":{},"3091":{},"3215":{},"3408":{},"3579":{},"3723":{},"3887":{}},"parent":{}}],["limit",{"_index":1022,"name":{"1893":{}},"parent":{}}],["links",{"_index":1021,"name":{"1892":{}},"parent":{}}],["listlogpushjob",{"_index":35,"name":{"34":{}},"parent":{}}],["localespecific",{"_index":458,"name":{"528":{},"751":{},"1579":{},"2232":{},"3848":{}},"parent":{}}],["localizable",{"_index":195,"name":{"192":{},"430":{},"575":{},"798":{},"1080":{},"1192":{},"1414":{},"1551":{},"1626":{},"2023":{},"2202":{},"2365":{},"2479":{},"2614":{},"2730":{},"2872":{},"2984":{},"3099":{},"3223":{},"3416":{},"3587":{},"3731":{},"3895":{}},"parent":{}}],["localizedstring",{"_index":155,"name":{"153":{},"389":{},"534":{},"757":{},"1040":{},"1152":{},"1374":{},"1513":{},"1585":{},"1982":{},"2162":{},"2325":{},"2439":{},"2574":{},"2690":{},"2832":{},"2944":{},"3059":{},"3183":{},"3376":{},"3547":{},"3691":{},"3854":{}},"parent":{}}],["loginguestuser",{"_index":1201,"name":{"2262":{}},"parent":{}}],["loginguestuserprivate",{"_index":1200,"name":{"2261":{}},"parent":{}}],["loginregistereduserb2c",{"_index":1203,"name":{"2264":{}},"parent":{}}],["loginregistereduserb2cprivate",{"_index":1202,"name":{"2263":{}},"parent":{}}],["loginrequest",{"_index":822,"name":{"1458":{},"2253":{}},"parent":{}}],["logout",{"_index":1206,"name":{"2267":{}},"parent":{}}],["logoutcustomer",{"_index":808,"name":{"1442":{},"2251":{}},"parent":{}}],["logpushcreaterequest",{"_index":67,"name":{"66":{}},"parent":{}}],["logpushenvelope",{"_index":92,"name":{"91":{}},"parent":{}}],["logpushjobsenvelope",{"_index":68,"name":{"67":{}},"parent":{}}],["logpushownershippostrequest",{"_index":59,"name":{"58":{}},"parent":{}}],["logpushownershippostresponse",{"_index":90,"name":{"89":{}},"parent":{}}],["logpushresponse",{"_index":61,"name":{"60":{}},"parent":{}}],["logpushupdaterequest",{"_index":78,"name":{"77":{}},"parent":{}}],["malformedquery",{"_index":1374,"name":{"2756":{}},"parent":{}}],["mandatory",{"_index":196,"name":{"193":{},"431":{},"576":{},"799":{},"1081":{},"1193":{},"1415":{},"1552":{},"1627":{},"2024":{},"2203":{},"2366":{},"2480":{},"2615":{},"2731":{},"2873":{},"2985":{},"3100":{},"3224":{},"3417":{},"3588":{},"3732":{},"3896":{}},"parent":{}}],["markuptext",{"_index":1579,"name":{"3307":{},"3491":{}},"parent":{}}],["mask",{"_index":1055,"name":{"1934":{}},"parent":{}}],["maskednumber",{"_index":281,"name":{"280":{},"610":{},"680":{},"833":{},"903":{}},"parent":{}}],["master",{"_index":726,"name":{"1252":{},"3288":{},"3481":{},"3621":{}},"parent":{}}],["matchallquery",{"_index":170,"name":{"168":{},"406":{},"551":{},"774":{},"1057":{},"1169":{},"1391":{},"1528":{},"1602":{},"1802":{},"1999":{},"2179":{},"2342":{},"2456":{},"2591":{},"2707":{},"2849":{},"2961":{},"3076":{},"3200":{},"3393":{},"3564":{},"3708":{},"3778":{},"3871":{}},"parent":{}}],["matcheditem",{"_index":1074,"name":{"1958":{}},"parent":{}}],["max",{"_index":197,"name":{"194":{},"432":{},"577":{},"800":{},"1082":{},"1194":{},"1416":{},"1553":{},"1628":{},"1915":{},"1929":{},"2025":{},"2204":{},"2367":{},"2481":{},"2616":{},"2732":{},"2874":{},"2986":{},"3101":{},"3225":{},"3418":{},"3589":{},"3733":{},"3897":{}},"parent":{}}],["mediafile",{"_index":1582,"name":{"3312":{},"3493":{}},"parent":{}}],["mergebasket",{"_index":423,"name":{"491":{}},"parent":{}}],["message",{"_index":378,"name":{"373":{},"692":{},"915":{}},"parent":{}}],["min",{"_index":199,"name":{"196":{},"434":{},"579":{},"802":{},"1084":{},"1196":{},"1418":{},"1555":{},"1630":{},"1914":{},"1928":{},"2027":{},"2206":{},"2369":{},"2483":{},"2618":{},"2734":{},"2876":{},"2988":{},"3103":{},"3227":{},"3420":{},"3591":{},"3735":{},"3899":{}},"parent":{}}],["minlength",{"_index":198,"name":{"195":{},"433":{},"578":{},"801":{},"1083":{},"1195":{},"1417":{},"1554":{},"1629":{},"2026":{},"2205":{},"2368":{},"2482":{},"2617":{},"2733":{},"2875":{},"2987":{},"3102":{},"3226":{},"3419":{},"3590":{},"3734":{},"3898":{}},"parent":{}}],["money",{"_index":151,"name":{"149":{},"385":{},"530":{},"753":{},"1036":{},"1148":{},"1370":{},"1509":{},"1581":{},"1785":{},"1978":{},"2158":{},"2321":{},"2435":{},"2570":{},"2646":{},"2828":{},"2940":{},"3055":{},"3179":{},"3283":{},"3478":{},"3687":{},"3761":{},"3850":{}},"parent":{}}],["moneymnemonic",{"_index":185,"name":{"183":{},"421":{},"566":{},"789":{},"1071":{},"1183":{},"1405":{},"1542":{},"1617":{},"1817":{},"2014":{},"2193":{},"2356":{},"2470":{},"2605":{},"2721":{},"2863":{},"2975":{},"3090":{},"3214":{},"3407":{},"3578":{},"3722":{},"3793":{},"3886":{}},"parent":{}}],["mrtrulepatchrequest",{"_index":81,"name":{"80":{}},"parent":{}}],["mrtrules",{"_index":101,"name":{"100":{}},"parent":{}}],["mrtruleset",{"_index":114,"name":{"113":{}},"parent":{}}],["mrtrulesetpatchrequest",{"_index":96,"name":{"95":{}},"parent":{}}],["mrtrulespostrequest",{"_index":91,"name":{"90":{}},"parent":{}}],["mrtrulesresponse",{"_index":73,"name":{"72":{}},"parent":{}}],["mrtrulesresponseenvelope",{"_index":94,"name":{"93":{}},"parent":{}}],["multivaluetype",{"_index":200,"name":{"197":{},"435":{},"580":{},"803":{},"1085":{},"1197":{},"1419":{},"1556":{},"1631":{},"2028":{},"2207":{},"2370":{},"2484":{},"2619":{},"2735":{},"2877":{},"2989":{},"3104":{},"3228":{},"3421":{},"3592":{},"3736":{},"3900":{}},"parent":{}}],["name",{"_index":192,"name":{"189":{},"366":{},"427":{},"572":{},"628":{},"795":{},"851":{},"1077":{},"1189":{},"1411":{},"1548":{},"1623":{},"2020":{},"2199":{},"2362":{},"2476":{},"2611":{},"2727":{},"2869":{},"2981":{},"3096":{},"3220":{},"3413":{},"3584":{},"3728":{},"3892":{}},"parent":{}}],["nestedquery",{"_index":180,"name":{"178":{},"416":{},"561":{},"784":{},"1067":{},"1179":{},"1401":{},"1538":{},"1612":{},"1812":{},"2009":{},"2189":{},"2352":{},"2466":{},"2601":{},"2717":{},"2859":{},"2971":{},"3086":{},"3210":{},"3403":{},"3574":{},"3718":{},"3788":{},"3881":{}},"parent":{}}],["next",{"_index":977,"name":{"1839":{}},"parent":{}}],["nocontent",{"_index":261,"name":{"262":{}},"parent":{}}],["nonreadablehttpmessage",{"_index":1005,"name":{"1873":{}},"parent":{}}],["nopropertiesallowed",{"_index":165,"name":{"163":{},"401":{},"546":{},"769":{},"1052":{},"1164":{},"1386":{},"1523":{},"1597":{},"1797":{},"1994":{},"2174":{},"2337":{},"2451":{},"2586":{},"2702":{},"2844":{},"2956":{},"3071":{},"3195":{},"3388":{},"3559":{},"3703":{},"3773":{},"3866":{}},"parent":{}}],["note",{"_index":476,"name":{"617":{},"840":{}},"parent":{}}],["notesresult",{"_index":475,"name":{"614":{},"837":{}},"parent":{}}],["notfound",{"_index":625,"name":{"989":{},"1360":{},"1653":{},"1854":{},"2902":{},"3330":{},"3642":{}},"parent":{}}],["numberlastdigits",{"_index":282,"name":{"281":{},"611":{},"834":{}},"parent":{}}],["numericrangefilter",{"_index":413,"name":{"479":{},"731":{},"954":{},"1030":{},"1142":{},"1352":{},"1503":{},"1683":{},"1748":{},"2073":{},"2152":{},"2315":{},"2429":{},"2564":{},"2681":{},"2822":{},"2934":{},"3050":{},"3173":{},"3367":{},"3538":{},"3681":{},"3945":{}},"parent":{}}],["oauth2errorresponse",{"_index":827,"name":{"1463":{}},"parent":{}}],["ocapicachingtogglerequest",{"_index":98,"name":{"97":{}},"parent":{}}],["offset",{"_index":1023,"name":{"1894":{}},"parent":{}}],["offsetpaginated",{"_index":147,"name":{"145":{},"475":{},"727":{},"950":{},"1024":{},"1136":{},"1346":{},"1497":{},"1679":{},"1742":{},"1781":{},"2069":{},"2146":{},"2309":{},"2423":{},"2558":{},"2675":{},"2816":{},"2928":{},"3044":{},"3167":{},"3363":{},"3532":{},"3675":{},"3813":{},"3941":{}},"parent":{}}],["openobject",{"_index":158,"name":{"156":{},"392":{},"537":{},"760":{},"1043":{},"1155":{},"1377":{},"1516":{},"1588":{},"1790":{},"1985":{},"2165":{},"2328":{},"2442":{},"2577":{},"2693":{},"2835":{},"2947":{},"3062":{},"3186":{},"3379":{},"3550":{},"3694":{},"3766":{},"3857":{}},"parent":{}}],["option",{"_index":756,"name":{"1300":{},"3634":{}},"parent":{}}],["optionitem",{"_index":326,"name":{"322":{},"653":{},"876":{},"1287":{}},"parent":{}}],["optionvalue",{"_index":725,"name":{"1251":{},"3620":{}},"parent":{}}],["order",{"_index":369,"name":{"361":{},"671":{},"894":{},"1313":{}},"parent":{}}],["orderaddress",{"_index":471,"name":{"599":{},"822":{},"1253":{}},"parent":{}}],["orderconfirmationstatusupdaterequest",{"_index":292,"name":{"291":{}},"parent":{}}],["ordercreated",{"_index":243,"name":{"244":{}},"parent":{}}],["orderexportstatusupdaterequest",{"_index":346,"name":{"340":{}},"parent":{}}],["orderexternalstatusupdaterequest",{"_index":323,"name":{"319":{}},"parent":{}}],["orderlookuprequest",{"_index":504,"name":{"660":{},"883":{}},"parent":{}}],["ordernote",{"_index":338,"name":{"333":{}},"parent":{}}],["ordernotfound",{"_index":235,"name":{"236":{}},"parent":{}}],["orderpaymentcardrequest",{"_index":515,"name":{"672":{},"895":{}},"parent":{}}],["orderpaymentinstrument",{"_index":491,"name":{"638":{},"861":{},"1271":{}},"parent":{}}],["orderpaymentinstrumentrequest",{"_index":508,"name":{"664":{},"887":{}},"parent":{}}],["orderpaymentstatusupdaterequest",{"_index":267,"name":{"268":{}},"parent":{}}],["orders",{"_index":218,"name":{"217":{}},"parent":{}}],["ordershippingstatusupdaterequest",{"_index":328,"name":{"324":{}},"parent":{}}],["ordersresponse",{"_index":303,"name":{"301":{}},"parent":{}}],["orderstatusupdaterequest",{"_index":349,"name":{"343":{}},"parent":{}}],["orderupdaterequest",{"_index":331,"name":{"327":{}},"parent":{}}],["orderviewcode",{"_index":507,"name":{"663":{},"886":{}},"parent":{}}],["organizationid",{"_index":1186,"name":{"2241":{}},"parent":{}}],["page",{"_index":1144,"name":{"2119":{}},"parent":{}}],["pagenotfound",{"_index":1176,"name":{"2228":{}},"parent":{}}],["pageresult",{"_index":1143,"name":{"2118":{}},"parent":{}}],["paginatedsearchresult",{"_index":156,"name":{"154":{},"390":{},"535":{},"758":{},"1041":{},"1153":{},"1375":{},"1514":{},"1586":{},"1788":{},"1983":{},"2163":{},"2326":{},"2440":{},"2575":{},"2691":{},"2833":{},"2945":{},"3060":{},"3184":{},"3377":{},"3548":{},"3692":{},"3764":{},"3855":{}},"parent":{}}],["paginatedsearchresultbase",{"_index":169,"name":{"167":{},"405":{},"550":{},"773":{},"1056":{},"1168":{},"1390":{},"1527":{},"1601":{},"1801":{},"1998":{},"2178":{},"2341":{},"2455":{},"2590":{},"2706":{},"2848":{},"2960":{},"3075":{},"3199":{},"3392":{},"3563":{},"3707":{},"3777":{},"3870":{}},"parent":{}}],["pagination",{"_index":973,"name":{"1835":{}},"parent":{}}],["paginationlinks",{"_index":956,"name":{"1819":{}},"parent":{}}],["passwordactionrequest",{"_index":830,"name":{"1466":{}},"parent":{}}],["passwordactiontemplate",{"_index":911,"name":{"1710":{}},"parent":{}}],["passwordactionverifyrequest",{"_index":828,"name":{"1464":{}},"parent":{}}],["passwordchangerequest",{"_index":748,"name":{"1290":{}},"parent":{}}],["passwordlessloginrequest",{"_index":825,"name":{"1461":{}},"parent":{}}],["passwordlesslogintokenrequest",{"_index":826,"name":{"1462":{}},"parent":{}}],["pathrecord",{"_index":1591,"name":{"3323":{},"3639":{}},"parent":{}}],["paymentbankaccount",{"_index":739,"name":{"1273":{}},"parent":{}}],["paymentbankaccountrequest",{"_index":744,"name":{"1282":{}},"parent":{}}],["paymentcard",{"_index":271,"name":{"271":{},"601":{},"824":{},"1258":{}},"parent":{}}],["paymentcardspec",{"_index":470,"name":{"598":{},"821":{}},"parent":{}}],["paymentinstrument",{"_index":345,"name":{"339":{}},"parent":{}}],["paymentinstrumentnotfound",{"_index":249,"name":{"250":{}},"parent":{}}],["paymentinstrumentupdaterequest",{"_index":266,"name":{"267":{}},"parent":{}}],["paymentmethod",{"_index":518,"name":{"683":{},"906":{}},"parent":{}}],["paymentmethodresult",{"_index":492,"name":{"640":{},"863":{}},"parent":{}}],["paymenttransaction",{"_index":368,"name":{"360":{}},"parent":{}}],["paymenttransactionupdaterequest",{"_index":265,"name":{"266":{}},"parent":{}}],["percentage",{"_index":290,"name":{"288":{}},"parent":{}}],["phrase",{"_index":1082,"name":{"1965":{}},"parent":{}}],["phrasequery",{"_index":1013,"name":{"1882":{}},"parent":{}}],["placeorderconflict",{"_index":255,"name":{"256":{}},"parent":{}}],["popularsearchphrases",{"_index":1089,"name":{"1970":{}},"parent":{}}],["position",{"_index":213,"name":{"212":{},"450":{},"595":{},"818":{},"1100":{},"1212":{},"1434":{},"1571":{},"1646":{},"2043":{},"2222":{},"2385":{},"2499":{},"2634":{},"2750":{},"2892":{},"3004":{},"3119":{},"3243":{},"3436":{},"3607":{},"3751":{},"3915":{}},"parent":{}}],["possiblevalues",{"_index":206,"name":{"204":{},"442":{},"587":{},"810":{},"1092":{},"1204":{},"1426":{},"1563":{},"1638":{},"2035":{},"2214":{},"2377":{},"2491":{},"2626":{},"2742":{},"2884":{},"2996":{},"3111":{},"3235":{},"3428":{},"3599":{},"3743":{},"3907":{}},"parent":{}}],["prev",{"_index":975,"name":{"1837":{}},"parent":{}}],["priceadjustment",{"_index":322,"name":{"318":{},"645":{},"868":{},"1283":{}},"parent":{}}],["priceadjustmentrequest",{"_index":472,"name":{"600":{},"823":{}},"parent":{}}],["pricebookid",{"_index":291,"name":{"289":{}},"parent":{}}],["pricebookids",{"_index":485,"name":{"631":{},"854":{}},"parent":{}}],["pricerange",{"_index":1121,"name":{"2082":{},"3619":{}},"parent":{}}],["pricing",{"_index":1208,"name":{"2270":{}},"parent":{"2271":{},"2387":{},"2388":{},"2389":{},"2507":{},"2508":{},"2509":{},"2636":{},"2637":{},"2638":{},"2768":{},"2769":{},"2770":{},"2894":{},"2895":{},"2896":{},"3006":{},"3007":{},"3008":{},"3121":{},"3122":{},"3123":{},"3245":{},"3246":{}}}],["pricing.assignments",{"_index":1210,"name":{},"parent":{"2272":{},"2273":{},"2274":{},"2275":{},"2276":{},"2277":{},"2278":{},"2279":{},"2280":{},"2281":{},"2282":{},"2283":{},"2284":{},"2285":{},"2286":{},"2287":{},"2289":{},"2291":{},"2293":{},"2295":{},"2297":{},"2299":{},"2301":{},"2303":{},"2305":{},"2307":{},"2309":{},"2311":{},"2313":{},"2315":{},"2317":{},"2319":{},"2320":{},"2321":{},"2322":{},"2323":{},"2324":{},"2325":{},"2326":{},"2327":{},"2328":{},"2329":{},"2331":{},"2333":{},"2335":{},"2337":{},"2339":{},"2340":{},"2341":{},"2342":{},"2343":{},"2344":{},"2345":{},"2346":{},"2347":{},"2348":{},"2349":{},"2350":{},"2351":{},"2352":{},"2353":{},"2354":{},"2355":{},"2356":{},"2357":{},"2358":{},"2380":{}}}],["pricing.assignments.asynccreated",{"_index":1230,"name":{},"parent":{"2304":{}}}],["pricing.assignments.attributedefinition",{"_index":1243,"name":{},"parent":{"2359":{}}}],["pricing.assignments.attributedefinition.__type",{"_index":1244,"name":{},"parent":{"2360":{},"2361":{},"2362":{},"2363":{},"2364":{},"2365":{},"2366":{},"2367":{},"2368":{},"2369":{},"2370":{},"2371":{},"2372":{},"2373":{},"2374":{},"2375":{},"2376":{},"2377":{},"2378":{},"2379":{}}}],["pricing.assignments.dateconditionalrequest",{"_index":1227,"name":{},"parent":{"2298":{}}}],["pricing.assignments.daterangefilter",{"_index":1222,"name":{},"parent":{"2288":{}}}],["pricing.assignments.datetimerangefilter",{"_index":1237,"name":{},"parent":{"2318":{}}}],["pricing.assignments.etagconditionalrequest",{"_index":1229,"name":{},"parent":{"2302":{}}}],["pricing.assignments.etagresponse",{"_index":1223,"name":{},"parent":{"2290":{}}}],["pricing.assignments.integerrangefilter",{"_index":1224,"name":{},"parent":{"2292":{}}}],["pricing.assignments.nopropertiesallowed",{"_index":1242,"name":{},"parent":{"2338":{}}}],["pricing.assignments.numericrangefilter",{"_index":1236,"name":{},"parent":{"2316":{}}}],["pricing.assignments.offsetpaginated",{"_index":1233,"name":{},"parent":{"2310":{}}}],["pricing.assignments.propertyvaluedefinition",{"_index":1245,"name":{},"parent":{"2381":{}}}],["pricing.assignments.propertyvaluedefinition.__type",{"_index":1246,"name":{},"parent":{"2382":{},"2383":{},"2384":{},"2385":{},"2386":{}}}],["pricing.assignments.queryparamslimit",{"_index":1238,"name":{},"parent":{"2330":{}}}],["pricing.assignments.queryparamsoffset",{"_index":1239,"name":{},"parent":{"2332":{}}}],["pricing.assignments.rangefilter",{"_index":1234,"name":{},"parent":{"2312":{}}}],["pricing.assignments.ratelimited",{"_index":1231,"name":{},"parent":{"2306":{}}}],["pricing.assignments.ratelimited2",{"_index":1232,"name":{},"parent":{"2308":{}}}],["pricing.assignments.ratelimited3",{"_index":1225,"name":{},"parent":{"2294":{}}}],["pricing.assignments.ratelimited4",{"_index":1235,"name":{},"parent":{"2314":{}}}],["pricing.assignments.ratelimited5",{"_index":1228,"name":{},"parent":{"2300":{}}}],["pricing.assignments.selectable",{"_index":1241,"name":{},"parent":{"2336":{}}}],["pricing.assignments.sitespecific",{"_index":1240,"name":{},"parent":{"2334":{}}}],["pricing.assignments.synccreated",{"_index":1226,"name":{},"parent":{"2296":{}}}],["pricing.campaigns",{"_index":1248,"name":{},"parent":{"2390":{},"2391":{},"2392":{},"2393":{},"2394":{},"2395":{},"2396":{},"2397":{},"2398":{},"2399":{},"2400":{},"2401":{},"2403":{},"2405":{},"2407":{},"2409":{},"2411":{},"2413":{},"2415":{},"2417":{},"2419":{},"2421":{},"2423":{},"2425":{},"2427":{},"2429":{},"2431":{},"2433":{},"2434":{},"2435":{},"2436":{},"2437":{},"2438":{},"2439":{},"2440":{},"2441":{},"2442":{},"2443":{},"2445":{},"2447":{},"2449":{},"2451":{},"2453":{},"2454":{},"2455":{},"2456":{},"2457":{},"2458":{},"2459":{},"2460":{},"2461":{},"2462":{},"2463":{},"2464":{},"2465":{},"2466":{},"2467":{},"2468":{},"2469":{},"2470":{},"2471":{},"2472":{},"2494":{},"2501":{},"2503":{},"2505":{}}}],["pricing.campaigns.asynccreated",{"_index":1263,"name":{},"parent":{"2418":{}}}],["pricing.campaigns.attributedefinition",{"_index":1276,"name":{},"parent":{"2473":{}}}],["pricing.campaigns.attributedefinition.__type",{"_index":1277,"name":{},"parent":{"2474":{},"2475":{},"2476":{},"2477":{},"2478":{},"2479":{},"2480":{},"2481":{},"2482":{},"2483":{},"2484":{},"2485":{},"2486":{},"2487":{},"2488":{},"2489":{},"2490":{},"2491":{},"2492":{},"2493":{}}}],["pricing.campaigns.campaignduplicate",{"_index":1281,"name":{},"parent":{"2502":{}}}],["pricing.campaigns.campaignnotfound",{"_index":1283,"name":{},"parent":{"2504":{}}}],["pricing.campaigns.dateconditionalrequest",{"_index":1260,"name":{},"parent":{"2412":{}}}],["pricing.campaigns.daterangefilter",{"_index":1255,"name":{},"parent":{"2402":{}}}],["pricing.campaigns.datetimerangefilter",{"_index":1270,"name":{},"parent":{"2432":{}}}],["pricing.campaigns.etagconditionalrequest",{"_index":1262,"name":{},"parent":{"2416":{}}}],["pricing.campaigns.etagresponse",{"_index":1256,"name":{},"parent":{"2404":{}}}],["pricing.campaigns.idconflict",{"_index":1285,"name":{},"parent":{"2506":{}}}],["pricing.campaigns.integerrangefilter",{"_index":1257,"name":{},"parent":{"2406":{}}}],["pricing.campaigns.nopropertiesallowed",{"_index":1275,"name":{},"parent":{"2452":{}}}],["pricing.campaigns.numericrangefilter",{"_index":1269,"name":{},"parent":{"2430":{}}}],["pricing.campaigns.offsetpaginated",{"_index":1266,"name":{},"parent":{"2424":{}}}],["pricing.campaigns.propertyvaluedefinition",{"_index":1278,"name":{},"parent":{"2495":{}}}],["pricing.campaigns.propertyvaluedefinition.__type",{"_index":1279,"name":{},"parent":{"2496":{},"2497":{},"2498":{},"2499":{},"2500":{}}}],["pricing.campaigns.queryparamslimit",{"_index":1271,"name":{},"parent":{"2444":{}}}],["pricing.campaigns.queryparamsoffset",{"_index":1272,"name":{},"parent":{"2446":{}}}],["pricing.campaigns.rangefilter",{"_index":1267,"name":{},"parent":{"2426":{}}}],["pricing.campaigns.ratelimited",{"_index":1264,"name":{},"parent":{"2420":{}}}],["pricing.campaigns.ratelimited2",{"_index":1265,"name":{},"parent":{"2422":{}}}],["pricing.campaigns.ratelimited3",{"_index":1258,"name":{},"parent":{"2408":{}}}],["pricing.campaigns.ratelimited4",{"_index":1268,"name":{},"parent":{"2428":{}}}],["pricing.campaigns.ratelimited5",{"_index":1261,"name":{},"parent":{"2414":{}}}],["pricing.campaigns.selectable",{"_index":1274,"name":{},"parent":{"2450":{}}}],["pricing.campaigns.sitespecific",{"_index":1273,"name":{},"parent":{"2448":{}}}],["pricing.campaigns.synccreated",{"_index":1259,"name":{},"parent":{"2410":{}}}],["pricing.coupons",{"_index":1287,"name":{},"parent":{"2510":{},"2511":{},"2512":{},"2513":{},"2514":{},"2515":{},"2516":{},"2517":{},"2518":{},"2519":{},"2520":{},"2521":{},"2522":{},"2523":{},"2524":{},"2525":{},"2526":{},"2527":{},"2528":{},"2529":{},"2530":{},"2531":{},"2532":{},"2534":{},"2535":{},"2536":{},"2538":{},"2540":{},"2542":{},"2544":{},"2546":{},"2548":{},"2550":{},"2552":{},"2554":{},"2556":{},"2558":{},"2560":{},"2562":{},"2564":{},"2566":{},"2568":{},"2569":{},"2570":{},"2571":{},"2572":{},"2573":{},"2574":{},"2575":{},"2576":{},"2577":{},"2578":{},"2580":{},"2582":{},"2584":{},"2586":{},"2588":{},"2589":{},"2590":{},"2591":{},"2592":{},"2593":{},"2594":{},"2595":{},"2596":{},"2597":{},"2598":{},"2599":{},"2600":{},"2601":{},"2602":{},"2603":{},"2604":{},"2605":{},"2606":{},"2607":{},"2629":{}}}],["pricing.coupons.asynccreated",{"_index":1318,"name":{},"parent":{"2553":{}}}],["pricing.coupons.attributedefinition",{"_index":1331,"name":{},"parent":{"2608":{}}}],["pricing.coupons.attributedefinition.__type",{"_index":1332,"name":{},"parent":{"2609":{},"2610":{},"2611":{},"2612":{},"2613":{},"2614":{},"2615":{},"2616":{},"2617":{},"2618":{},"2619":{},"2620":{},"2621":{},"2622":{},"2623":{},"2624":{},"2625":{},"2626":{},"2627":{},"2628":{}}}],["pricing.coupons.couponnotfound",{"_index":1309,"name":{},"parent":{"2533":{}}}],["pricing.coupons.dateconditionalrequest",{"_index":1315,"name":{},"parent":{"2547":{}}}],["pricing.coupons.daterangefilter",{"_index":1310,"name":{},"parent":{"2537":{}}}],["pricing.coupons.datetimerangefilter",{"_index":1325,"name":{},"parent":{"2567":{}}}],["pricing.coupons.etagconditionalrequest",{"_index":1317,"name":{},"parent":{"2551":{}}}],["pricing.coupons.etagresponse",{"_index":1311,"name":{},"parent":{"2539":{}}}],["pricing.coupons.integerrangefilter",{"_index":1312,"name":{},"parent":{"2541":{}}}],["pricing.coupons.nopropertiesallowed",{"_index":1330,"name":{},"parent":{"2587":{}}}],["pricing.coupons.numericrangefilter",{"_index":1324,"name":{},"parent":{"2565":{}}}],["pricing.coupons.offsetpaginated",{"_index":1321,"name":{},"parent":{"2559":{}}}],["pricing.coupons.propertyvaluedefinition",{"_index":1333,"name":{},"parent":{"2630":{}}}],["pricing.coupons.propertyvaluedefinition.__type",{"_index":1334,"name":{},"parent":{"2631":{},"2632":{},"2633":{},"2634":{},"2635":{}}}],["pricing.coupons.queryparamslimit",{"_index":1326,"name":{},"parent":{"2579":{}}}],["pricing.coupons.queryparamsoffset",{"_index":1327,"name":{},"parent":{"2581":{}}}],["pricing.coupons.rangefilter",{"_index":1322,"name":{},"parent":{"2561":{}}}],["pricing.coupons.ratelimited",{"_index":1319,"name":{},"parent":{"2555":{}}}],["pricing.coupons.ratelimited2",{"_index":1320,"name":{},"parent":{"2557":{}}}],["pricing.coupons.ratelimited3",{"_index":1313,"name":{},"parent":{"2543":{}}}],["pricing.coupons.ratelimited4",{"_index":1323,"name":{},"parent":{"2563":{}}}],["pricing.coupons.ratelimited5",{"_index":1316,"name":{},"parent":{"2549":{}}}],["pricing.coupons.selectable",{"_index":1329,"name":{},"parent":{"2585":{}}}],["pricing.coupons.sitespecific",{"_index":1328,"name":{},"parent":{"2583":{}}}],["pricing.coupons.synccreated",{"_index":1314,"name":{},"parent":{"2545":{}}}],["pricing.giftcertificates",{"_index":1336,"name":{},"parent":{"2639":{},"2640":{},"2641":{},"2642":{},"2643":{},"2644":{},"2645":{},"2646":{},"2647":{},"2648":{},"2649":{},"2650":{},"2651":{},"2652":{},"2653":{},"2655":{},"2657":{},"2659":{},"2661":{},"2663":{},"2665":{},"2667":{},"2669":{},"2671":{},"2673":{},"2675":{},"2677":{},"2679":{},"2681":{},"2683":{},"2685":{},"2686":{},"2687":{},"2688":{},"2689":{},"2690":{},"2691":{},"2692":{},"2693":{},"2694":{},"2696":{},"2698":{},"2700":{},"2702":{},"2704":{},"2705":{},"2706":{},"2707":{},"2708":{},"2709":{},"2710":{},"2711":{},"2712":{},"2713":{},"2714":{},"2715":{},"2716":{},"2717":{},"2718":{},"2719":{},"2720":{},"2721":{},"2722":{},"2723":{},"2745":{},"2752":{},"2754":{},"2756":{},"2758":{},"2760":{},"2762":{},"2764":{},"2766":{}}}],["pricing.giftcertificates.asynccreated",{"_index":1353,"name":{},"parent":{"2670":{}}}],["pricing.giftcertificates.attributedefinition",{"_index":1366,"name":{},"parent":{"2724":{}}}],["pricing.giftcertificates.attributedefinition.__type",{"_index":1367,"name":{},"parent":{"2725":{},"2726":{},"2727":{},"2728":{},"2729":{},"2730":{},"2731":{},"2732":{},"2733":{},"2734":{},"2735":{},"2736":{},"2737":{},"2738":{},"2739":{},"2740":{},"2741":{},"2742":{},"2743":{},"2744":{}}}],["pricing.giftcertificates.dateconditionalrequest",{"_index":1350,"name":{},"parent":{"2664":{}}}],["pricing.giftcertificates.daterangefilter",{"_index":1345,"name":{},"parent":{"2654":{}}}],["pricing.giftcertificates.datetimerangefilter",{"_index":1360,"name":{},"parent":{"2684":{}}}],["pricing.giftcertificates.etagconditionalrequest",{"_index":1352,"name":{},"parent":{"2668":{}}}],["pricing.giftcertificates.etagresponse",{"_index":1346,"name":{},"parent":{"2656":{}}}],["pricing.giftcertificates.giftcertificateamountoutofrangeexception",{"_index":1377,"name":{},"parent":{"2759":{}}}],["pricing.giftcertificates.giftcertificatecreatemerchantidnotuniqueexception",{"_index":1371,"name":{},"parent":{"2753":{}}}],["pricing.giftcertificates.giftcertificatenotfound",{"_index":1373,"name":{},"parent":{"2755":{}}}],["pricing.giftcertificates.integerrangefilter",{"_index":1347,"name":{},"parent":{"2658":{}}}],["pricing.giftcertificates.invalidgiftcertificateexception",{"_index":1385,"name":{},"parent":{"2767":{}}}],["pricing.giftcertificates.invalidgiftcertificatestatus",{"_index":1383,"name":{},"parent":{"2765":{}}}],["pricing.giftcertificates.invalidrecipientemail",{"_index":1379,"name":{},"parent":{"2761":{}}}],["pricing.giftcertificates.malformedquery",{"_index":1375,"name":{},"parent":{"2757":{}}}],["pricing.giftcertificates.nopropertiesallowed",{"_index":1365,"name":{},"parent":{"2703":{}}}],["pricing.giftcertificates.numericrangefilter",{"_index":1359,"name":{},"parent":{"2682":{}}}],["pricing.giftcertificates.offsetpaginated",{"_index":1356,"name":{},"parent":{"2676":{}}}],["pricing.giftcertificates.propertyvaluedefinition",{"_index":1368,"name":{},"parent":{"2746":{}}}],["pricing.giftcertificates.propertyvaluedefinition.__type",{"_index":1369,"name":{},"parent":{"2747":{},"2748":{},"2749":{},"2750":{},"2751":{}}}],["pricing.giftcertificates.queryparamslimit",{"_index":1361,"name":{},"parent":{"2695":{}}}],["pricing.giftcertificates.queryparamsoffset",{"_index":1362,"name":{},"parent":{"2697":{}}}],["pricing.giftcertificates.rangefilter",{"_index":1357,"name":{},"parent":{"2678":{}}}],["pricing.giftcertificates.ratelimited",{"_index":1354,"name":{},"parent":{"2672":{}}}],["pricing.giftcertificates.ratelimited2",{"_index":1355,"name":{},"parent":{"2674":{}}}],["pricing.giftcertificates.ratelimited3",{"_index":1348,"name":{},"parent":{"2660":{}}}],["pricing.giftcertificates.ratelimited4",{"_index":1358,"name":{},"parent":{"2680":{}}}],["pricing.giftcertificates.ratelimited5",{"_index":1351,"name":{},"parent":{"2666":{}}}],["pricing.giftcertificates.selectable",{"_index":1364,"name":{},"parent":{"2701":{}}}],["pricing.giftcertificates.sitespecific",{"_index":1363,"name":{},"parent":{"2699":{}}}],["pricing.giftcertificates.synccreated",{"_index":1349,"name":{},"parent":{"2662":{}}}],["pricing.giftcertificates.unqueryablefield",{"_index":1381,"name":{},"parent":{"2763":{}}}],["pricing.promotions",{"_index":1387,"name":{},"parent":{"2771":{},"2772":{},"2773":{},"2774":{},"2775":{},"2776":{},"2777":{},"2778":{},"2779":{},"2780":{},"2781":{},"2782":{},"2783":{},"2784":{},"2785":{},"2786":{},"2787":{},"2788":{},"2790":{},"2792":{},"2793":{},"2794":{},"2796":{},"2798":{},"2800":{},"2802":{},"2804":{},"2806":{},"2808":{},"2810":{},"2812":{},"2814":{},"2816":{},"2818":{},"2820":{},"2822":{},"2824":{},"2826":{},"2827":{},"2828":{},"2829":{},"2830":{},"2831":{},"2832":{},"2833":{},"2834":{},"2835":{},"2836":{},"2838":{},"2840":{},"2842":{},"2844":{},"2846":{},"2847":{},"2848":{},"2849":{},"2850":{},"2851":{},"2852":{},"2853":{},"2854":{},"2855":{},"2856":{},"2857":{},"2858":{},"2859":{},"2860":{},"2861":{},"2862":{},"2863":{},"2864":{},"2865":{},"2887":{}}}],["pricing.promotions.asynccreated",{"_index":1406,"name":{},"parent":{"2811":{}}}],["pricing.promotions.attributedefinition",{"_index":1419,"name":{},"parent":{"2866":{}}}],["pricing.promotions.attributedefinition.__type",{"_index":1420,"name":{},"parent":{"2867":{},"2868":{},"2869":{},"2870":{},"2871":{},"2872":{},"2873":{},"2874":{},"2875":{},"2876":{},"2877":{},"2878":{},"2879":{},"2880":{},"2881":{},"2882":{},"2883":{},"2884":{},"2885":{},"2886":{}}}],["pricing.promotions.dateconditionalrequest",{"_index":1403,"name":{},"parent":{"2805":{}}}],["pricing.promotions.daterangefilter",{"_index":1398,"name":{},"parent":{"2795":{}}}],["pricing.promotions.datetimerangefilter",{"_index":1413,"name":{},"parent":{"2825":{}}}],["pricing.promotions.etagconditionalrequest",{"_index":1405,"name":{},"parent":{"2809":{}}}],["pricing.promotions.etagresponse",{"_index":1399,"name":{},"parent":{"2797":{}}}],["pricing.promotions.integerrangefilter",{"_index":1400,"name":{},"parent":{"2799":{}}}],["pricing.promotions.nopropertiesallowed",{"_index":1418,"name":{},"parent":{"2845":{}}}],["pricing.promotions.numericrangefilter",{"_index":1412,"name":{},"parent":{"2823":{}}}],["pricing.promotions.offsetpaginated",{"_index":1409,"name":{},"parent":{"2817":{}}}],["pricing.promotions.promotionidconflict",{"_index":1397,"name":{},"parent":{"2791":{}}}],["pricing.promotions.promotionnotfound",{"_index":1395,"name":{},"parent":{"2789":{}}}],["pricing.promotions.propertyvaluedefinition",{"_index":1421,"name":{},"parent":{"2888":{}}}],["pricing.promotions.propertyvaluedefinition.__type",{"_index":1422,"name":{},"parent":{"2889":{},"2890":{},"2891":{},"2892":{},"2893":{}}}],["pricing.promotions.queryparamslimit",{"_index":1414,"name":{},"parent":{"2837":{}}}],["pricing.promotions.queryparamsoffset",{"_index":1415,"name":{},"parent":{"2839":{}}}],["pricing.promotions.rangefilter",{"_index":1410,"name":{},"parent":{"2819":{}}}],["pricing.promotions.ratelimited",{"_index":1407,"name":{},"parent":{"2813":{}}}],["pricing.promotions.ratelimited2",{"_index":1408,"name":{},"parent":{"2815":{}}}],["pricing.promotions.ratelimited3",{"_index":1401,"name":{},"parent":{"2801":{}}}],["pricing.promotions.ratelimited4",{"_index":1411,"name":{},"parent":{"2821":{}}}],["pricing.promotions.ratelimited5",{"_index":1404,"name":{},"parent":{"2807":{}}}],["pricing.promotions.selectable",{"_index":1417,"name":{},"parent":{"2843":{}}}],["pricing.promotions.sitespecific",{"_index":1416,"name":{},"parent":{"2841":{}}}],["pricing.promotions.synccreated",{"_index":1402,"name":{},"parent":{"2803":{}}}],["pricing.shoppergiftcertificates",{"_index":1424,"name":{},"parent":{"2897":{},"2898":{},"2899":{},"2900":{},"2901":{},"2902":{},"2904":{},"2905":{},"2906":{},"2908":{},"2910":{},"2912":{},"2914":{},"2916":{},"2918":{},"2920":{},"2922":{},"2924":{},"2926":{},"2928":{},"2930":{},"2932":{},"2934":{},"2936":{},"2938":{},"2939":{},"2940":{},"2941":{},"2942":{},"2943":{},"2944":{},"2945":{},"2946":{},"2947":{},"2948":{},"2950":{},"2952":{},"2954":{},"2956":{},"2958":{},"2959":{},"2960":{},"2961":{},"2962":{},"2963":{},"2964":{},"2965":{},"2966":{},"2967":{},"2968":{},"2969":{},"2970":{},"2971":{},"2972":{},"2973":{},"2974":{},"2975":{},"2976":{},"2977":{},"2999":{}}}],["pricing.shoppergiftcertificates.asynccreated",{"_index":1435,"name":{},"parent":{"2923":{}}}],["pricing.shoppergiftcertificates.attributedefinition",{"_index":1448,"name":{},"parent":{"2978":{}}}],["pricing.shoppergiftcertificates.attributedefinition.__type",{"_index":1449,"name":{},"parent":{"2979":{},"2980":{},"2981":{},"2982":{},"2983":{},"2984":{},"2985":{},"2986":{},"2987":{},"2988":{},"2989":{},"2990":{},"2991":{},"2992":{},"2993":{},"2994":{},"2995":{},"2996":{},"2997":{},"2998":{}}}],["pricing.shoppergiftcertificates.dateconditionalrequest",{"_index":1432,"name":{},"parent":{"2917":{}}}],["pricing.shoppergiftcertificates.daterangefilter",{"_index":1427,"name":{},"parent":{"2907":{}}}],["pricing.shoppergiftcertificates.datetimerangefilter",{"_index":1442,"name":{},"parent":{"2937":{}}}],["pricing.shoppergiftcertificates.etagconditionalrequest",{"_index":1434,"name":{},"parent":{"2921":{}}}],["pricing.shoppergiftcertificates.etagresponse",{"_index":1428,"name":{},"parent":{"2909":{}}}],["pricing.shoppergiftcertificates.integerrangefilter",{"_index":1429,"name":{},"parent":{"2911":{}}}],["pricing.shoppergiftcertificates.nopropertiesallowed",{"_index":1447,"name":{},"parent":{"2957":{}}}],["pricing.shoppergiftcertificates.notfound",{"_index":1426,"name":{},"parent":{"2903":{}}}],["pricing.shoppergiftcertificates.numericrangefilter",{"_index":1441,"name":{},"parent":{"2935":{}}}],["pricing.shoppergiftcertificates.offsetpaginated",{"_index":1438,"name":{},"parent":{"2929":{}}}],["pricing.shoppergiftcertificates.propertyvaluedefinition",{"_index":1450,"name":{},"parent":{"3000":{}}}],["pricing.shoppergiftcertificates.propertyvaluedefinition.__type",{"_index":1451,"name":{},"parent":{"3001":{},"3002":{},"3003":{},"3004":{},"3005":{}}}],["pricing.shoppergiftcertificates.queryparamslimit",{"_index":1443,"name":{},"parent":{"2949":{}}}],["pricing.shoppergiftcertificates.queryparamsoffset",{"_index":1444,"name":{},"parent":{"2951":{}}}],["pricing.shoppergiftcertificates.rangefilter",{"_index":1439,"name":{},"parent":{"2931":{}}}],["pricing.shoppergiftcertificates.ratelimited",{"_index":1436,"name":{},"parent":{"2925":{}}}],["pricing.shoppergiftcertificates.ratelimited2",{"_index":1437,"name":{},"parent":{"2927":{}}}],["pricing.shoppergiftcertificates.ratelimited3",{"_index":1430,"name":{},"parent":{"2913":{}}}],["pricing.shoppergiftcertificates.ratelimited4",{"_index":1440,"name":{},"parent":{"2933":{}}}],["pricing.shoppergiftcertificates.ratelimited5",{"_index":1433,"name":{},"parent":{"2919":{}}}],["pricing.shoppergiftcertificates.selectable",{"_index":1446,"name":{},"parent":{"2955":{}}}],["pricing.shoppergiftcertificates.sitespecific",{"_index":1445,"name":{},"parent":{"2953":{}}}],["pricing.shoppergiftcertificates.synccreated",{"_index":1431,"name":{},"parent":{"2915":{}}}],["pricing.shopperpromotions",{"_index":1453,"name":{},"parent":{"3009":{},"3010":{},"3011":{},"3012":{},"3013":{},"3014":{},"3015":{},"3016":{},"3018":{},"3020":{},"3021":{},"3022":{},"3024":{},"3026":{},"3028":{},"3030":{},"3032":{},"3034":{},"3036":{},"3038":{},"3040":{},"3042":{},"3044":{},"3046":{},"3048":{},"3050":{},"3052":{},"3054":{},"3055":{},"3056":{},"3057":{},"3058":{},"3059":{},"3060":{},"3061":{},"3062":{},"3063":{},"3065":{},"3067":{},"3069":{},"3071":{},"3073":{},"3074":{},"3075":{},"3076":{},"3077":{},"3078":{},"3079":{},"3080":{},"3081":{},"3082":{},"3083":{},"3084":{},"3085":{},"3086":{},"3087":{},"3088":{},"3089":{},"3090":{},"3091":{},"3092":{},"3114":{}}}],["pricing.shopperpromotions.asynccreated",{"_index":1467,"name":{},"parent":{"3039":{}}}],["pricing.shopperpromotions.attributedefinition",{"_index":1480,"name":{},"parent":{"3093":{}}}],["pricing.shopperpromotions.attributedefinition.__type",{"_index":1481,"name":{},"parent":{"3094":{},"3095":{},"3096":{},"3097":{},"3098":{},"3099":{},"3100":{},"3101":{},"3102":{},"3103":{},"3104":{},"3105":{},"3106":{},"3107":{},"3108":{},"3109":{},"3110":{},"3111":{},"3112":{},"3113":{}}}],["pricing.shopperpromotions.badrequest",{"_index":1458,"name":{},"parent":{"3019":{}}}],["pricing.shopperpromotions.dateconditionalrequest",{"_index":1464,"name":{},"parent":{"3033":{}}}],["pricing.shopperpromotions.daterangefilter",{"_index":1459,"name":{},"parent":{"3023":{}}}],["pricing.shopperpromotions.datetimerangefilter",{"_index":1474,"name":{},"parent":{"3053":{}}}],["pricing.shopperpromotions.etagconditionalrequest",{"_index":1466,"name":{},"parent":{"3037":{}}}],["pricing.shopperpromotions.etagresponse",{"_index":1460,"name":{},"parent":{"3025":{}}}],["pricing.shopperpromotions.integerrangefilter",{"_index":1461,"name":{},"parent":{"3027":{}}}],["pricing.shopperpromotions.nopropertiesallowed",{"_index":1479,"name":{},"parent":{"3072":{}}}],["pricing.shopperpromotions.numericrangefilter",{"_index":1473,"name":{},"parent":{"3051":{}}}],["pricing.shopperpromotions.offsetpaginated",{"_index":1470,"name":{},"parent":{"3045":{}}}],["pricing.shopperpromotions.promotionnotfound",{"_index":1457,"name":{},"parent":{"3017":{}}}],["pricing.shopperpromotions.propertyvaluedefinition",{"_index":1482,"name":{},"parent":{"3115":{}}}],["pricing.shopperpromotions.propertyvaluedefinition.__type",{"_index":1483,"name":{},"parent":{"3116":{},"3117":{},"3118":{},"3119":{},"3120":{}}}],["pricing.shopperpromotions.queryparamslimit",{"_index":1475,"name":{},"parent":{"3064":{}}}],["pricing.shopperpromotions.queryparamsoffset",{"_index":1476,"name":{},"parent":{"3066":{}}}],["pricing.shopperpromotions.rangefilter",{"_index":1471,"name":{},"parent":{"3047":{}}}],["pricing.shopperpromotions.ratelimited",{"_index":1468,"name":{},"parent":{"3041":{}}}],["pricing.shopperpromotions.ratelimited2",{"_index":1469,"name":{},"parent":{"3043":{}}}],["pricing.shopperpromotions.ratelimited3",{"_index":1462,"name":{},"parent":{"3029":{}}}],["pricing.shopperpromotions.ratelimited4",{"_index":1472,"name":{},"parent":{"3049":{}}}],["pricing.shopperpromotions.ratelimited5",{"_index":1465,"name":{},"parent":{"3035":{}}}],["pricing.shopperpromotions.selectable",{"_index":1478,"name":{},"parent":{"3070":{}}}],["pricing.shopperpromotions.sitespecific",{"_index":1477,"name":{},"parent":{"3068":{}}}],["pricing.shopperpromotions.synccreated",{"_index":1463,"name":{},"parent":{"3031":{}}}],["pricing.sourcecodegroups",{"_index":1485,"name":{},"parent":{"3124":{},"3125":{},"3126":{},"3127":{},"3128":{},"3129":{},"3130":{},"3131":{},"3132":{},"3133":{},"3134":{},"3135":{},"3137":{},"3139":{},"3141":{},"3143":{},"3144":{},"3145":{},"3147":{},"3149":{},"3151":{},"3153":{},"3155":{},"3157":{},"3159":{},"3161":{},"3163":{},"3165":{},"3167":{},"3169":{},"3171":{},"3173":{},"3175":{},"3177":{},"3178":{},"3179":{},"3180":{},"3181":{},"3182":{},"3183":{},"3184":{},"3185":{},"3186":{},"3187":{},"3189":{},"3191":{},"3193":{},"3195":{},"3197":{},"3198":{},"3199":{},"3200":{},"3201":{},"3202":{},"3203":{},"3204":{},"3205":{},"3206":{},"3207":{},"3208":{},"3209":{},"3210":{},"3211":{},"3212":{},"3213":{},"3214":{},"3215":{},"3216":{},"3238":{}}}],["pricing.sourcecodegroups.asynccreated",{"_index":1510,"name":{},"parent":{"3162":{}}}],["pricing.sourcecodegroups.attributedefinition",{"_index":1523,"name":{},"parent":{"3217":{}}}],["pricing.sourcecodegroups.attributedefinition.__type",{"_index":1524,"name":{},"parent":{"3218":{},"3219":{},"3220":{},"3221":{},"3222":{},"3223":{},"3224":{},"3225":{},"3226":{},"3227":{},"3228":{},"3229":{},"3230":{},"3231":{},"3232":{},"3233":{},"3234":{},"3235":{},"3236":{},"3237":{}}}],["pricing.sourcecodegroups.dateconditionalrequest",{"_index":1507,"name":{},"parent":{"3156":{}}}],["pricing.sourcecodegroups.daterangefilter",{"_index":1502,"name":{},"parent":{"3146":{}}}],["pricing.sourcecodegroups.datetimerangefilter",{"_index":1517,"name":{},"parent":{"3176":{}}}],["pricing.sourcecodegroups.etagconditionalrequest",{"_index":1509,"name":{},"parent":{"3160":{}}}],["pricing.sourcecodegroups.etagresponse",{"_index":1503,"name":{},"parent":{"3148":{}}}],["pricing.sourcecodegroups.idconflict",{"_index":1499,"name":{},"parent":{"3140":{}}}],["pricing.sourcecodegroups.integerrangefilter",{"_index":1504,"name":{},"parent":{"3150":{}}}],["pricing.sourcecodegroups.invalidquery",{"_index":1501,"name":{},"parent":{"3142":{}}}],["pricing.sourcecodegroups.nopropertiesallowed",{"_index":1522,"name":{},"parent":{"3196":{}}}],["pricing.sourcecodegroups.numericrangefilter",{"_index":1516,"name":{},"parent":{"3174":{}}}],["pricing.sourcecodegroups.offsetpaginated",{"_index":1513,"name":{},"parent":{"3168":{}}}],["pricing.sourcecodegroups.propertyvaluedefinition",{"_index":1525,"name":{},"parent":{"3239":{}}}],["pricing.sourcecodegroups.propertyvaluedefinition.__type",{"_index":1526,"name":{},"parent":{"3240":{},"3241":{},"3242":{},"3243":{},"3244":{}}}],["pricing.sourcecodegroups.queryparamslimit",{"_index":1518,"name":{},"parent":{"3188":{}}}],["pricing.sourcecodegroups.queryparamsoffset",{"_index":1519,"name":{},"parent":{"3190":{}}}],["pricing.sourcecodegroups.rangefilter",{"_index":1514,"name":{},"parent":{"3170":{}}}],["pricing.sourcecodegroups.ratelimited",{"_index":1511,"name":{},"parent":{"3164":{}}}],["pricing.sourcecodegroups.ratelimited2",{"_index":1512,"name":{},"parent":{"3166":{}}}],["pricing.sourcecodegroups.ratelimited3",{"_index":1505,"name":{},"parent":{"3152":{}}}],["pricing.sourcecodegroups.ratelimited4",{"_index":1515,"name":{},"parent":{"3172":{}}}],["pricing.sourcecodegroups.ratelimited5",{"_index":1508,"name":{},"parent":{"3158":{}}}],["pricing.sourcecodegroups.selectable",{"_index":1521,"name":{},"parent":{"3194":{}}}],["pricing.sourcecodegroups.sitespecific",{"_index":1520,"name":{},"parent":{"3192":{}}}],["pricing.sourcecodegroups.sourcecodegroupinvalid",{"_index":1498,"name":{},"parent":{"3138":{}}}],["pricing.sourcecodegroups.sourcecodegroupnotfound",{"_index":1496,"name":{},"parent":{"3136":{}}}],["pricing.sourcecodegroups.synccreated",{"_index":1506,"name":{},"parent":{"3154":{}}}],["priority",{"_index":382,"name":{"378":{},"697":{},"920":{}},"parent":{}}],["product",{"_index":383,"name":{"379":{},"1314":{},"3247":{},"3317":{},"3497":{},"3635":{}},"parent":{"3248":{},"3438":{},"3439":{},"3440":{},"3609":{},"3610":{},"3611":{},"3753":{},"3754":{}}}],["product.catalogs",{"_index":1528,"name":{},"parent":{"3249":{},"3250":{},"3251":{},"3252":{},"3253":{},"3254":{},"3255":{},"3256":{},"3257":{},"3258":{},"3259":{},"3260":{},"3261":{},"3262":{},"3263":{},"3264":{},"3265":{},"3266":{},"3267":{},"3268":{},"3269":{},"3270":{},"3271":{},"3272":{},"3273":{},"3274":{},"3275":{},"3276":{},"3277":{},"3278":{},"3279":{},"3280":{},"3281":{},"3282":{},"3283":{},"3284":{},"3285":{},"3286":{},"3287":{},"3288":{},"3289":{},"3290":{},"3291":{},"3292":{},"3293":{},"3294":{},"3295":{},"3296":{},"3297":{},"3298":{},"3299":{},"3300":{},"3301":{},"3302":{},"3303":{},"3304":{},"3305":{},"3306":{},"3307":{},"3308":{},"3309":{},"3310":{},"3311":{},"3312":{},"3313":{},"3314":{},"3315":{},"3316":{},"3317":{},"3318":{},"3319":{},"3320":{},"3321":{},"3322":{},"3323":{},"3324":{},"3325":{},"3326":{},"3327":{},"3328":{},"3330":{},"3332":{},"3334":{},"3336":{},"3338":{},"3340":{},"3342":{},"3344":{},"3345":{},"3347":{},"3349":{},"3351":{},"3353":{},"3355":{},"3357":{},"3359":{},"3361":{},"3363":{},"3365":{},"3367":{},"3369":{},"3371":{},"3372":{},"3373":{},"3374":{},"3375":{},"3376":{},"3377":{},"3378":{},"3379":{},"3380":{},"3382":{},"3384":{},"3386":{},"3388":{},"3390":{},"3391":{},"3392":{},"3393":{},"3394":{},"3395":{},"3396":{},"3397":{},"3398":{},"3399":{},"3400":{},"3401":{},"3402":{},"3403":{},"3404":{},"3405":{},"3406":{},"3407":{},"3408":{},"3409":{},"3431":{}}}],["product.catalogs.asynccreated",{"_index":1611,"name":{},"parent":{"3358":{}}}],["product.catalogs.attributedefinition",{"_index":1623,"name":{},"parent":{"3410":{}}}],["product.catalogs.attributedefinition.__type",{"_index":1624,"name":{},"parent":{"3411":{},"3412":{},"3413":{},"3414":{},"3415":{},"3416":{},"3417":{},"3418":{},"3419":{},"3420":{},"3421":{},"3422":{},"3423":{},"3424":{},"3425":{},"3426":{},"3427":{},"3428":{},"3429":{},"3430":{}}}],["product.catalogs.badrequest",{"_index":1599,"name":{},"parent":{"3335":{}}}],["product.catalogs.dateconditionalrequest",{"_index":1609,"name":{},"parent":{"3354":{}}}],["product.catalogs.daterangefilter",{"_index":1605,"name":{},"parent":{"3346":{}}}],["product.catalogs.datetimerangefilter",{"_index":1617,"name":{},"parent":{"3370":{}}}],["product.catalogs.etagconditionalrequest",{"_index":1610,"name":{},"parent":{"3356":{}}}],["product.catalogs.etagresponse",{"_index":1606,"name":{},"parent":{"3348":{}}}],["product.catalogs.integerrangefilter",{"_index":1607,"name":{},"parent":{"3350":{}}}],["product.catalogs.jobexecutionnotfound",{"_index":1602,"name":{},"parent":{"3339":{}}}],["product.catalogs.nopropertiesallowed",{"_index":1622,"name":{},"parent":{"3389":{}}}],["product.catalogs.notfound",{"_index":1597,"name":{},"parent":{"3331":{}}}],["product.catalogs.numericrangefilter",{"_index":1616,"name":{},"parent":{"3368":{}}}],["product.catalogs.offsetpaginated",{"_index":1614,"name":{},"parent":{"3364":{}}}],["product.catalogs.propertyvaluedefinition",{"_index":1625,"name":{},"parent":{"3432":{}}}],["product.catalogs.propertyvaluedefinition.__type",{"_index":1626,"name":{},"parent":{"3433":{},"3434":{},"3435":{},"3436":{},"3437":{}}}],["product.catalogs.queryparamslimit",{"_index":1618,"name":{},"parent":{"3381":{}}}],["product.catalogs.queryparamsoffset",{"_index":1619,"name":{},"parent":{"3383":{}}}],["product.catalogs.rangefilter",{"_index":1615,"name":{},"parent":{"3366":{}}}],["product.catalogs.ratelimited",{"_index":1612,"name":{},"parent":{"3360":{}}}],["product.catalogs.ratelimited2",{"_index":1613,"name":{},"parent":{"3362":{}}}],["product.catalogs.ratelimited3",{"_index":1598,"name":{},"parent":{"3333":{}}}],["product.catalogs.ratelimited4",{"_index":1604,"name":{},"parent":{"3343":{}}}],["product.catalogs.ratelimited5",{"_index":1600,"name":{},"parent":{"3337":{}}}],["product.catalogs.rulenotfound",{"_index":1596,"name":{},"parent":{"3329":{}}}],["product.catalogs.selectable",{"_index":1621,"name":{},"parent":{"3387":{}}}],["product.catalogs.sitespecific",{"_index":1620,"name":{},"parent":{"3385":{}}}],["product.catalogs.synccreated",{"_index":1608,"name":{},"parent":{"3352":{}}}],["product.catalogs.unauthorized",{"_index":1603,"name":{},"parent":{"3341":{}}}],["product.products",{"_index":1628,"name":{},"parent":{"3441":{},"3442":{},"3443":{},"3444":{},"3445":{},"3446":{},"3447":{},"3448":{},"3449":{},"3450":{},"3451":{},"3452":{},"3453":{},"3454":{},"3455":{},"3456":{},"3457":{},"3458":{},"3459":{},"3460":{},"3461":{},"3462":{},"3463":{},"3464":{},"3465":{},"3466":{},"3467":{},"3468":{},"3469":{},"3470":{},"3471":{},"3472":{},"3473":{},"3474":{},"3475":{},"3476":{},"3477":{},"3478":{},"3479":{},"3480":{},"3481":{},"3482":{},"3483":{},"3484":{},"3485":{},"3486":{},"3487":{},"3488":{},"3489":{},"3490":{},"3491":{},"3492":{},"3493":{},"3494":{},"3495":{},"3496":{},"3497":{},"3498":{},"3499":{},"3500":{},"3501":{},"3502":{},"3503":{},"3505":{},"3507":{},"3509":{},"3510":{},"3512":{},"3514":{},"3516":{},"3518":{},"3520":{},"3522":{},"3524":{},"3526":{},"3528":{},"3530":{},"3532":{},"3534":{},"3536":{},"3538":{},"3540":{},"3542":{},"3543":{},"3544":{},"3545":{},"3546":{},"3547":{},"3548":{},"3549":{},"3550":{},"3551":{},"3553":{},"3555":{},"3557":{},"3559":{},"3561":{},"3562":{},"3563":{},"3564":{},"3565":{},"3566":{},"3567":{},"3568":{},"3569":{},"3570":{},"3571":{},"3572":{},"3573":{},"3574":{},"3575":{},"3576":{},"3577":{},"3578":{},"3579":{},"3580":{},"3602":{}}}],["product.products.asynccreated",{"_index":1681,"name":{},"parent":{"3527":{}}}],["product.products.attributedefinition",{"_index":1694,"name":{},"parent":{"3581":{}}}],["product.products.attributedefinition.__type",{"_index":1695,"name":{},"parent":{"3582":{},"3583":{},"3584":{},"3585":{},"3586":{},"3587":{},"3588":{},"3589":{},"3590":{},"3591":{},"3592":{},"3593":{},"3594":{},"3595":{},"3596":{},"3597":{},"3598":{},"3599":{},"3600":{},"3601":{}}}],["product.products.badrequest",{"_index":1670,"name":{},"parent":{"3506":{}}}],["product.products.dateconditionalrequest",{"_index":1678,"name":{},"parent":{"3521":{}}}],["product.products.daterangefilter",{"_index":1673,"name":{},"parent":{"3511":{}}}],["product.products.datetimerangefilter",{"_index":1688,"name":{},"parent":{"3541":{}}}],["product.products.etagconditionalrequest",{"_index":1680,"name":{},"parent":{"3525":{}}}],["product.products.etagresponse",{"_index":1674,"name":{},"parent":{"3513":{}}}],["product.products.integerrangefilter",{"_index":1675,"name":{},"parent":{"3515":{}}}],["product.products.nopropertiesallowed",{"_index":1693,"name":{},"parent":{"3560":{}}}],["product.products.numericrangefilter",{"_index":1687,"name":{},"parent":{"3539":{}}}],["product.products.offsetpaginated",{"_index":1684,"name":{},"parent":{"3533":{}}}],["product.products.productnotfound",{"_index":1672,"name":{},"parent":{"3508":{}}}],["product.products.propertyvaluedefinition",{"_index":1696,"name":{},"parent":{"3603":{}}}],["product.products.propertyvaluedefinition.__type",{"_index":1697,"name":{},"parent":{"3604":{},"3605":{},"3606":{},"3607":{},"3608":{}}}],["product.products.queryparamslimit",{"_index":1689,"name":{},"parent":{"3552":{}}}],["product.products.queryparamsoffset",{"_index":1690,"name":{},"parent":{"3554":{}}}],["product.products.rangefilter",{"_index":1685,"name":{},"parent":{"3535":{}}}],["product.products.ratelimited",{"_index":1682,"name":{},"parent":{"3529":{}}}],["product.products.ratelimited2",{"_index":1683,"name":{},"parent":{"3531":{}}}],["product.products.ratelimited3",{"_index":1676,"name":{},"parent":{"3517":{}}}],["product.products.ratelimited4",{"_index":1686,"name":{},"parent":{"3537":{}}}],["product.products.ratelimited5",{"_index":1679,"name":{},"parent":{"3523":{}}}],["product.products.selectable",{"_index":1692,"name":{},"parent":{"3558":{}}}],["product.products.sitespecific",{"_index":1691,"name":{},"parent":{"3556":{}}}],["product.products.synccreated",{"_index":1677,"name":{},"parent":{"3519":{}}}],["product.products.unauthorized",{"_index":1669,"name":{},"parent":{"3504":{}}}],["product.shopperproducts",{"_index":1699,"name":{},"parent":{"3612":{},"3613":{},"3614":{},"3615":{},"3616":{},"3617":{},"3618":{},"3619":{},"3620":{},"3621":{},"3622":{},"3623":{},"3624":{},"3625":{},"3626":{},"3627":{},"3628":{},"3629":{},"3630":{},"3631":{},"3632":{},"3633":{},"3634":{},"3635":{},"3636":{},"3637":{},"3638":{},"3639":{},"3640":{},"3641":{},"3642":{},"3644":{},"3646":{},"3648":{},"3650":{},"3652":{},"3653":{},"3655":{},"3657":{},"3659":{},"3661":{},"3663":{},"3665":{},"3667":{},"3669":{},"3671":{},"3673":{},"3675":{},"3677":{},"3679":{},"3681":{},"3683":{},"3685":{},"3686":{},"3687":{},"3688":{},"3689":{},"3690":{},"3691":{},"3692":{},"3693":{},"3694":{},"3695":{},"3697":{},"3699":{},"3701":{},"3703":{},"3705":{},"3706":{},"3707":{},"3708":{},"3709":{},"3710":{},"3711":{},"3712":{},"3713":{},"3714":{},"3715":{},"3716":{},"3717":{},"3718":{},"3719":{},"3720":{},"3721":{},"3722":{},"3723":{},"3724":{},"3746":{}}}],["product.shopperproducts.asynccreated",{"_index":1720,"name":{},"parent":{"3670":{}}}],["product.shopperproducts.attributedefinition",{"_index":1733,"name":{},"parent":{"3725":{}}}],["product.shopperproducts.attributedefinition.__type",{"_index":1734,"name":{},"parent":{"3726":{},"3727":{},"3728":{},"3729":{},"3730":{},"3731":{},"3732":{},"3733":{},"3734":{},"3735":{},"3736":{},"3737":{},"3738":{},"3739":{},"3740":{},"3741":{},"3742":{},"3743":{},"3744":{},"3745":{}}}],["product.shopperproducts.badrequest",{"_index":1706,"name":{},"parent":{"3645":{}}}],["product.shopperproducts.badrequest1",{"_index":1708,"name":{},"parent":{"3647":{}}}],["product.shopperproducts.badrequest2",{"_index":1711,"name":{},"parent":{"3651":{}}}],["product.shopperproducts.dateconditionalrequest",{"_index":1717,"name":{},"parent":{"3664":{}}}],["product.shopperproducts.daterangefilter",{"_index":1712,"name":{},"parent":{"3654":{}}}],["product.shopperproducts.datetimerangefilter",{"_index":1727,"name":{},"parent":{"3684":{}}}],["product.shopperproducts.etagconditionalrequest",{"_index":1719,"name":{},"parent":{"3668":{}}}],["product.shopperproducts.etagresponse",{"_index":1713,"name":{},"parent":{"3656":{}}}],["product.shopperproducts.integerrangefilter",{"_index":1714,"name":{},"parent":{"3658":{}}}],["product.shopperproducts.nopropertiesallowed",{"_index":1732,"name":{},"parent":{"3704":{}}}],["product.shopperproducts.notfound",{"_index":1705,"name":{},"parent":{"3643":{}}}],["product.shopperproducts.numericrangefilter",{"_index":1726,"name":{},"parent":{"3682":{}}}],["product.shopperproducts.offsetpaginated",{"_index":1723,"name":{},"parent":{"3676":{}}}],["product.shopperproducts.propertyvaluedefinition",{"_index":1735,"name":{},"parent":{"3747":{}}}],["product.shopperproducts.propertyvaluedefinition.__type",{"_index":1736,"name":{},"parent":{"3748":{},"3749":{},"3750":{},"3751":{},"3752":{}}}],["product.shopperproducts.queryparamslimit",{"_index":1728,"name":{},"parent":{"3696":{}}}],["product.shopperproducts.queryparamsoffset",{"_index":1729,"name":{},"parent":{"3698":{}}}],["product.shopperproducts.rangefilter",{"_index":1724,"name":{},"parent":{"3678":{}}}],["product.shopperproducts.ratelimited",{"_index":1721,"name":{},"parent":{"3672":{}}}],["product.shopperproducts.ratelimited2",{"_index":1722,"name":{},"parent":{"3674":{}}}],["product.shopperproducts.ratelimited3",{"_index":1715,"name":{},"parent":{"3660":{}}}],["product.shopperproducts.ratelimited4",{"_index":1725,"name":{},"parent":{"3680":{}}}],["product.shopperproducts.ratelimited5",{"_index":1718,"name":{},"parent":{"3666":{}}}],["product.shopperproducts.selectable",{"_index":1731,"name":{},"parent":{"3702":{}}}],["product.shopperproducts.sitespecific",{"_index":1730,"name":{},"parent":{"3700":{}}}],["product.shopperproducts.synccreated",{"_index":1716,"name":{},"parent":{"3662":{}}}],["product.shopperproducts.unauthorized",{"_index":1709,"name":{},"parent":{"3649":{}}}],["productdescription",{"_index":498,"name":{"649":{},"872":{}},"parent":{}}],["productdetailslink",{"_index":496,"name":{"647":{},"698":{},"870":{},"921":{},"1285":{}},"parent":{}}],["productid",{"_index":356,"name":{"350":{},"650":{},"873":{}},"parent":{}}],["productitem",{"_index":310,"name":{"307":{},"633":{},"856":{},"1266":{}},"parent":{}}],["productlink",{"_index":746,"name":{"1286":{},"3631":{}},"parent":{}}],["productlist",{"_index":384,"name":{"380":{},"699":{},"922":{}},"parent":{}}],["productlistevent",{"_index":747,"name":{"1289":{}},"parent":{}}],["productlistitemreference",{"_index":379,"name":{"375":{},"694":{},"917":{},"1321":{}},"parent":{}}],["productlistlink",{"_index":509,"name":{"666":{},"889":{},"1307":{}},"parent":{}}],["productlistreference",{"_index":371,"name":{"363":{}},"parent":{}}],["productlistregistrant",{"_index":764,"name":{"1312":{}},"parent":{}}],["productlistshippingaddress",{"_index":733,"name":{"1265":{}},"parent":{}}],["productname",{"_index":358,"name":{"351":{},"651":{},"874":{}},"parent":{}}],["productnotfound",{"_index":1671,"name":{"3507":{}},"parent":{}}],["productoption",{"_index":1564,"name":{"3287":{},"3480":{}},"parent":{}}],["productoptions",{"_index":1586,"name":{"3316":{},"3496":{}},"parent":{}}],["productoptionvalue",{"_index":1575,"name":{"3303":{},"3489":{}},"parent":{}}],["productoptionvalues",{"_index":1589,"name":{"3321":{},"3500":{}},"parent":{}}],["productpricetable",{"_index":1118,"name":{"2079":{},"3618":{}},"parent":{}}],["productpromotion",{"_index":767,"name":{"1317":{},"2103":{},"3638":{}},"parent":{}}],["productref",{"_index":1119,"name":{"2080":{},"3817":{}},"parent":{}}],["productreference",{"_index":354,"name":{"348":{}},"parent":{}}],["productresult",{"_index":1704,"name":{"3630":{}},"parent":{}}],["products",{"_index":1627,"name":{"3440":{}},"parent":{}}],["productsearch",{"_index":1092,"name":{"1975":{},"3758":{}},"parent":{}}],["productsearchhit",{"_index":1133,"name":{"2099":{},"3832":{}},"parent":{}}],["productsearchrefinement",{"_index":1131,"name":{"2097":{},"3830":{}},"parent":{}}],["productsearchrefinementvalue",{"_index":1128,"name":{"2093":{},"3827":{}},"parent":{}}],["productsearchresult",{"_index":1134,"name":{"2100":{},"3495":{},"3833":{}},"parent":{}}],["productsearchsortingoption",{"_index":1129,"name":{"2094":{},"3828":{}},"parent":{}}],["productsuggestions",{"_index":1125,"name":{"2087":{},"3823":{}},"parent":{}}],["producttype",{"_index":738,"name":{"1272":{},"2089":{},"3299":{},"3486":{},"3626":{},"3825":{}},"parent":{}}],["promotion",{"_index":1216,"name":{"2279":{},"2783":{},"3013":{}},"parent":{}}],["promotionabtestgroupassignment",{"_index":1221,"name":{"2284":{},"2787":{}},"parent":{}}],["promotionassignmentinformation",{"_index":1217,"name":{"2280":{},"2784":{}},"parent":{}}],["promotioncampaignassignment",{"_index":1214,"name":{"2277":{},"2781":{}},"parent":{}}],["promotioncampaignassignmentsearchresult",{"_index":1219,"name":{"2282":{}},"parent":{}}],["promotionid",{"_index":483,"name":{"629":{},"852":{}},"parent":{}}],["promotionidconflict",{"_index":1396,"name":{"2790":{}},"parent":{}}],["promotionlink",{"_index":479,"name":{"625":{},"848":{}},"parent":{}}],["promotionnotfound",{"_index":1394,"name":{"2788":{},"3016":{}},"parent":{}}],["promotionresult",{"_index":1456,"name":{"3014":{}},"parent":{}}],["promotions",{"_index":1386,"name":{"2770":{}},"parent":{}}],["promotionsearchresult",{"_index":1393,"name":{"2778":{}},"parent":{}}],["promotionssearch",{"_index":1388,"name":{"2772":{}},"parent":{}}],["propertydefinition",{"_index":154,"name":{"152":{},"388":{},"533":{},"756":{},"1039":{},"1151":{},"1373":{},"1512":{},"1584":{},"1981":{},"2161":{},"2324":{},"2438":{},"2573":{},"2689":{},"2831":{},"2943":{},"3058":{},"3182":{},"3375":{},"3546":{},"3690":{},"3853":{}},"parent":{}}],["propertyvaluedefinition",{"_index":209,"name":{"207":{},"445":{},"590":{},"813":{},"1095":{},"1207":{},"1429":{},"1566":{},"1641":{},"2038":{},"2217":{},"2380":{},"2494":{},"2629":{},"2745":{},"2887":{},"2999":{},"3114":{},"3238":{},"3431":{},"3602":{},"3746":{},"3910":{}},"parent":{}}],["public",{"_index":374,"name":{"367":{},"381":{},"700":{},"923":{}},"parent":{}}],["publicproductlist",{"_index":755,"name":{"1299":{}},"parent":{}}],["publicproductlistinfo",{"_index":735,"name":{"1268":{}},"parent":{}}],["publicproductlistitem",{"_index":745,"name":{"1284":{}},"parent":{}}],["publicproductlistresult",{"_index":727,"name":{"1254":{}},"parent":{}}],["purchasedquantity",{"_index":385,"name":{"382":{},"701":{},"924":{}},"parent":{}}],["quantity",{"_index":386,"name":{"383":{},"702":{},"925":{}},"parent":{}}],["query",{"_index":173,"name":{"171":{},"409":{},"554":{},"777":{},"1060":{},"1172":{},"1394":{},"1531":{},"1605":{},"1805":{},"1898":{},"2002":{},"2182":{},"2345":{},"2459":{},"2594":{},"2710":{},"2852":{},"2964":{},"3079":{},"3203":{},"3396":{},"3567":{},"3711":{},"3781":{},"3874":{}},"parent":{}}],["queryfilter",{"_index":172,"name":{"170":{},"408":{},"553":{},"776":{},"1059":{},"1171":{},"1393":{},"1530":{},"1604":{},"1804":{},"2001":{},"2181":{},"2344":{},"2458":{},"2593":{},"2709":{},"2851":{},"2963":{},"3078":{},"3202":{},"3395":{},"3566":{},"3710":{},"3780":{},"3873":{}},"parent":{}}],["queryinput",{"_index":1025,"name":{"1896":{}},"parent":{}}],["queryoutput",{"_index":1016,"name":{"1888":{}},"parent":{}}],["queryparamslimit",{"_index":159,"name":{"157":{},"393":{},"538":{},"761":{},"1044":{},"1156":{},"1378":{},"1517":{},"1589":{},"1791":{},"1986":{},"2166":{},"2329":{},"2443":{},"2578":{},"2694":{},"2836":{},"2948":{},"3063":{},"3187":{},"3380":{},"3551":{},"3695":{},"3767":{},"3858":{}},"parent":{}}],["queryparamsoffset",{"_index":161,"name":{"159":{},"395":{},"540":{},"763":{},"1046":{},"1158":{},"1380":{},"1519":{},"1591":{},"1793":{},"1988":{},"2168":{},"2331":{},"2445":{},"2580":{},"2696":{},"2838":{},"2950":{},"3065":{},"3189":{},"3382":{},"3553":{},"3697":{},"3769":{},"3860":{}},"parent":{}}],["querytype",{"_index":1010,"name":{"1878":{},"1885":{}},"parent":{}}],["range2filter",{"_index":177,"name":{"175":{},"413":{},"558":{},"781":{},"1064":{},"1176":{},"1398":{},"1535":{},"1609":{},"1809":{},"2006":{},"2186":{},"2349":{},"2463":{},"2598":{},"2714":{},"2856":{},"2968":{},"3083":{},"3207":{},"3400":{},"3571":{},"3715":{},"3785":{},"3878":{}},"parent":{}}],["rangefacetinput",{"_index":1048,"name":{"1924":{}},"parent":{}}],["rangefacetoutput",{"_index":1050,"name":{"1926":{}},"parent":{}}],["rangefilter",{"_index":183,"name":{"181":{},"419":{},"564":{},"787":{},"1026":{},"1138":{},"1348":{},"1499":{},"1615":{},"1744":{},"1815":{},"2012":{},"2148":{},"2311":{},"2425":{},"2560":{},"2677":{},"2818":{},"2930":{},"3046":{},"3169":{},"3365":{},"3534":{},"3677":{},"3791":{},"3884":{}},"parent":{}}],["rangerefinement",{"_index":1040,"name":{"1912":{}},"parent":{}}],["rate",{"_index":522,"name":{"687":{},"910":{}},"parent":{}}],["ratelimited",{"_index":143,"name":{"141":{},"471":{},"723":{},"946":{},"1020":{},"1132":{},"1342":{},"1493":{},"1675":{},"1738":{},"1777":{},"2065":{},"2142":{},"2305":{},"2419":{},"2554":{},"2671":{},"2812":{},"2924":{},"3040":{},"3163":{},"3359":{},"3528":{},"3671":{},"3809":{},"3937":{}},"parent":{}}],["ratelimited2",{"_index":145,"name":{"143":{},"473":{},"725":{},"948":{},"1022":{},"1134":{},"1344":{},"1495":{},"1677":{},"1740":{},"1779":{},"2067":{},"2144":{},"2307":{},"2421":{},"2556":{},"2673":{},"2814":{},"2926":{},"3042":{},"3165":{},"3361":{},"3530":{},"3673":{},"3811":{},"3939":{}},"parent":{}}],["ratelimited3",{"_index":131,"name":{"129":{},"459":{},"711":{},"934":{},"1008":{},"1120":{},"1330":{},"1481":{},"1663":{},"1726":{},"1765":{},"2053":{},"2130":{},"2293":{},"2407":{},"2542":{},"2659":{},"2800":{},"2912":{},"3028":{},"3151":{},"3332":{},"3516":{},"3659":{},"3797":{},"3925":{}},"parent":{}}],["ratelimited4",{"_index":149,"name":{"147":{},"477":{},"729":{},"952":{},"1028":{},"1140":{},"1350":{},"1501":{},"1681":{},"1746":{},"1783":{},"2071":{},"2150":{},"2313":{},"2427":{},"2562":{},"2679":{},"2820":{},"2932":{},"3048":{},"3171":{},"3342":{},"3536":{},"3679":{},"3815":{},"3943":{}},"parent":{}}],["ratelimited5",{"_index":137,"name":{"135":{},"465":{},"717":{},"940":{},"1014":{},"1126":{},"1336":{},"1487":{},"1669":{},"1732":{},"1771":{},"2059":{},"2136":{},"2299":{},"2413":{},"2548":{},"2665":{},"2806":{},"2918":{},"3034":{},"3157":{},"3336":{},"3522":{},"3665":{},"3803":{},"3931":{}},"parent":{}}],["ratelimitexceeded",{"_index":1001,"name":{"1866":{}},"parent":{}}],["ratelimitingrule",{"_index":105,"name":{"104":{}},"parent":{}}],["ratelimitingruleenvelope",{"_index":65,"name":{"64":{}},"parent":{}}],["ratelimitingrulesenvelope",{"_index":88,"name":{"87":{}},"parent":{}}],["ratelimitingrulespatchrequest",{"_index":85,"name":{"84":{}},"parent":{}}],["ratelimitingrulespostrequest",{"_index":69,"name":{"68":{}},"parent":{}}],["recentsearchphrases",{"_index":1086,"name":{"1968":{}},"parent":{}}],["recommendation",{"_index":740,"name":{"1274":{},"3627":{}},"parent":{}}],["recommendationtype",{"_index":737,"name":{"1270":{},"3625":{}},"parent":{}}],["recurrence",{"_index":1220,"name":{"2283":{},"2786":{}},"parent":{}}],["redeemcoupon",{"_index":1290,"name":{"2513":{}},"parent":{}}],["redemptionlimitperperiod",{"_index":1301,"name":{"2525":{}},"parent":{}}],["redemptionlimits",{"_index":1299,"name":{"2523":{}},"parent":{}}],["refinement",{"_index":1033,"name":{"1906":{}},"parent":{}}],["refinements",{"_index":1028,"name":{"1899":{}},"parent":{}}],["refinementtype",{"_index":1039,"name":{"1911":{},"1917":{}},"parent":{}}],["refreshaccesstoken",{"_index":1204,"name":{"2265":{}},"parent":{}}],["refreshaccesstokenprivate",{"_index":1205,"name":{"2266":{}},"parent":{}}],["region",{"_index":1145,"name":{"2120":{}},"parent":{}}],["registerclient",{"_index":899,"name":{"1697":{}},"parent":{}}],["registercustomer",{"_index":694,"name":{"1218":{}},"parent":{}}],["registerexternalprofile",{"_index":697,"name":{"1221":{}},"parent":{}}],["registeridentityprovider",{"_index":906,"name":{"1704":{}},"parent":{}}],["registerpwdlesstemplate",{"_index":902,"name":{"1700":{}},"parent":{}}],["registertenant",{"_index":896,"name":{"1694":{}},"parent":{}}],["regularexpression",{"_index":201,"name":{"198":{},"436":{},"581":{},"804":{},"1086":{},"1198":{},"1420":{},"1557":{},"1632":{},"2029":{},"2208":{},"2371":{},"2485":{},"2620":{},"2736":{},"2878":{},"2990":{},"3105":{},"3229":{},"3422":{},"3593":{},"3737":{},"3901":{}},"parent":{}}],["relevancesorting",{"_index":1064,"name":{"1946":{}},"parent":{}}],["removeaddressforcustomerincustomerlist",{"_index":613,"name":{"974":{}},"parent":{}}],["removecouponfrombasket",{"_index":430,"name":{"498":{}},"parent":{}}],["removecustomeraddress",{"_index":703,"name":{"1227":{}},"parent":{}}],["removegiftcertificateitemfrombasket",{"_index":433,"name":{"501":{}},"parent":{}}],["removeitemfrombasket",{"_index":437,"name":{"505":{}},"parent":{}}],["removepaymentinstrumentfrombasket",{"_index":441,"name":{"509":{}},"parent":{}}],["removepaymentinstrumentfromorder",{"_index":547,"name":{"745":{}},"parent":{}}],["removepriceadjustmentfrombasket",{"_index":445,"name":{"513":{}},"parent":{}}],["removeproductsfromexclusionlist",{"_index":1546,"name":{"3267":{}},"parent":{}}],["removeshipmentfrombasket",{"_index":450,"name":{"518":{}},"parent":{}}],["requestlimit",{"_index":1003,"name":{"1868":{}},"parent":{}}],["resetpassword",{"_index":695,"name":{"1219":{},"1450":{}},"parent":{}}],["resetpasswordrequest",{"_index":730,"name":{"1257":{}},"parent":{}}],["resetpasswordtoken",{"_index":731,"name":{"1261":{}},"parent":{}}],["resetpasswordtokenrequest",{"_index":761,"name":{"1306":{}},"parent":{}}],["resourcebadrequest",{"_index":978,"name":{"1840":{}},"parent":{}}],["resourcecommonerrors",{"_index":964,"name":{"1827":{}},"parent":{}}],["resourceinvalidrequest",{"_index":982,"name":{"1844":{}},"parent":{}}],["resourcelink",{"_index":957,"name":{"1820":{}},"parent":{}}],["resourcenonreadablehttpmessage",{"_index":980,"name":{"1842":{}},"parent":{}}],["result",{"_index":1072,"name":{"1956":{}},"parent":{}}],["retrieveclient",{"_index":898,"name":{"1696":{}},"parent":{}}],["retrieveclients",{"_index":897,"name":{"1695":{}},"parent":{}}],["retrieveidentityprovider",{"_index":905,"name":{"1703":{}},"parent":{}}],["retrieveidentityproviders",{"_index":904,"name":{"1702":{}},"parent":{}}],["retrievepwdlesstemplate",{"_index":901,"name":{"1699":{}},"parent":{}}],["retrieveresults",{"_index":938,"name":{"1759":{}},"parent":{}}],["retrievetenant",{"_index":895,"name":{"1693":{}},"parent":{}}],["returnedattributes",{"_index":1029,"name":{"1900":{},"1952":{}},"parent":{}}],["revoketoken",{"_index":817,"name":{"1452":{}},"parent":{}}],["rule",{"_index":1574,"name":{"3300":{}},"parent":{}}],["rulenotfound",{"_index":1595,"name":{"3328":{}},"parent":{}}],["ruleposition",{"_index":76,"name":{"75":{}},"parent":{}}],["rulerequest",{"_index":1571,"name":{"3296":{}},"parent":{}}],["rulesrequest",{"_index":1568,"name":{"3292":{}},"parent":{}}],["rulesresult",{"_index":1561,"name":{"3284":{}},"parent":{}}],["runcategoryrules",{"_index":1542,"name":{"3263":{}},"parent":{}}],["scale",{"_index":202,"name":{"199":{},"437":{},"582":{},"805":{},"1087":{},"1199":{},"1421":{},"1558":{},"1633":{},"2030":{},"2209":{},"2372":{},"2486":{},"2621":{},"2737":{},"2879":{},"2991":{},"3106":{},"3230":{},"3423":{},"3594":{},"3738":{},"3902":{}},"parent":{}}],["schedule",{"_index":1218,"name":{"2281":{},"2785":{}},"parent":{}}],["sdklogger",{"_index":1791,"name":{"3962":{}},"parent":{}}],["search",{"_index":1737,"name":{"3755":{}},"parent":{"3756":{},"3840":{},"3841":{}}}],["search.shoppersearch",{"_index":1738,"name":{},"parent":{"3757":{},"3758":{},"3759":{},"3760":{},"3761":{},"3762":{},"3763":{},"3764":{},"3765":{},"3766":{},"3767":{},"3769":{},"3771":{},"3773":{},"3775":{},"3776":{},"3777":{},"3778":{},"3779":{},"3780":{},"3781":{},"3782":{},"3783":{},"3784":{},"3785":{},"3786":{},"3787":{},"3788":{},"3789":{},"3790":{},"3791":{},"3792":{},"3793":{},"3794":{},"3795":{},"3797":{},"3799":{},"3801":{},"3803":{},"3805":{},"3807":{},"3809":{},"3811":{},"3813":{},"3815":{},"3817":{},"3818":{},"3819":{},"3820":{},"3821":{},"3822":{},"3823":{},"3824":{},"3825":{},"3826":{},"3827":{},"3828":{},"3829":{},"3830":{},"3831":{},"3832":{},"3833":{},"3834":{},"3835":{},"3836":{},"3837":{},"3838":{}}}],["search.shoppersearch.asynccreated",{"_index":1749,"name":{},"parent":{"3808":{}}}],["search.shoppersearch.badrequest",{"_index":1754,"name":{},"parent":{"3839":{}}}],["search.shoppersearch.dateconditionalrequest",{"_index":1746,"name":{},"parent":{"3802":{}}}],["search.shoppersearch.etagconditionalrequest",{"_index":1748,"name":{},"parent":{"3806":{}}}],["search.shoppersearch.etagresponse",{"_index":1743,"name":{},"parent":{"3796":{}}}],["search.shoppersearch.nopropertiesallowed",{"_index":1742,"name":{},"parent":{"3774":{}}}],["search.shoppersearch.offsetpaginated",{"_index":1752,"name":{},"parent":{"3814":{}}}],["search.shoppersearch.queryparamslimit",{"_index":1739,"name":{},"parent":{"3768":{}}}],["search.shoppersearch.queryparamsoffset",{"_index":1740,"name":{},"parent":{"3770":{}}}],["search.shoppersearch.ratelimited",{"_index":1750,"name":{},"parent":{"3810":{}}}],["search.shoppersearch.ratelimited2",{"_index":1751,"name":{},"parent":{"3812":{}}}],["search.shoppersearch.ratelimited3",{"_index":1744,"name":{},"parent":{"3798":{}}}],["search.shoppersearch.ratelimited4",{"_index":1753,"name":{},"parent":{"3816":{}}}],["search.shoppersearch.ratelimited5",{"_index":1747,"name":{},"parent":{"3804":{}}}],["search.shoppersearch.sitespecific",{"_index":1741,"name":{},"parent":{"3772":{}}}],["search.shoppersearch.synccreated",{"_index":1745,"name":{},"parent":{"3800":{}}}],["searchable",{"_index":203,"name":{"200":{},"438":{},"583":{},"806":{},"1088":{},"1200":{},"1422":{},"1559":{},"1634":{},"2031":{},"2210":{},"2373":{},"2487":{},"2622":{},"2738":{},"2880":{},"2992":{},"3107":{},"3231":{},"3424":{},"3595":{},"3739":{},"3903":{}},"parent":{}}],["searchcatalogs",{"_index":1559,"name":{"3280":{}},"parent":{}}],["searchcategories",{"_index":1560,"name":{"3281":{}},"parent":{}}],["searchcategoriesincatalog",{"_index":1558,"name":{"3279":{}},"parent":{}}],["searchcustomergroup",{"_index":615,"name":{"976":{}},"parent":{}}],["searchcustomerincustomerlist",{"_index":604,"name":{"965":{}},"parent":{}}],["searchproducts",{"_index":1663,"name":{"3476":{}},"parent":{}}],["searchproductsassignedtocategory",{"_index":1537,"name":{"3258":{}},"parent":{}}],["searchproductvariations",{"_index":1633,"name":{"3446":{}},"parent":{}}],["searchrequest",{"_index":153,"name":{"151":{},"387":{},"532":{},"755":{},"1038":{},"1150":{},"1372":{},"1511":{},"1583":{},"1787":{},"1980":{},"2160":{},"2323":{},"2437":{},"2572":{},"2688":{},"2830":{},"2942":{},"3057":{},"3181":{},"3374":{},"3545":{},"3689":{},"3763":{},"3852":{}},"parent":{}}],["searchrequestbase",{"_index":184,"name":{"182":{},"420":{},"565":{},"788":{},"1070":{},"1182":{},"1404":{},"1541":{},"1616":{},"1816":{},"2013":{},"2192":{},"2355":{},"2469":{},"2604":{},"2720":{},"2862":{},"2974":{},"3089":{},"3213":{},"3406":{},"3577":{},"3721":{},"3792":{},"3885":{}},"parent":{}}],["searchstores",{"_index":1758,"name":{"3845":{}},"parent":{}}],["securitysetting",{"_index":99,"name":{"98":{}},"parent":{}}],["securitysettingsenvelope",{"_index":75,"name":{"74":{}},"parent":{}}],["segmentid",{"_index":336,"name":{"331":{}},"parent":{}}],["selectable",{"_index":390,"name":{"399":{},"544":{},"767":{},"1050":{},"1162":{},"1384":{},"1595":{},"1992":{},"2172":{},"2335":{},"2449":{},"2584":{},"2700":{},"2842":{},"2954":{},"3069":{},"3193":{},"3386":{},"3557":{},"3701":{},"3864":{}},"parent":{}}],["self",{"_index":966,"name":{"1829":{},"1834":{},"1838":{}},"parent":{}}],["selfresourcelink",{"_index":970,"name":{"1832":{}},"parent":{}}],["seller",{"_index":1755,"name":{"3842":{}},"parent":{"3843":{},"3957":{},"3958":{}}}],["seller.shopperstores",{"_index":1757,"name":{},"parent":{"3844":{},"3845":{},"3846":{},"3847":{},"3848":{},"3850":{},"3851":{},"3852":{},"3853":{},"3854":{},"3855":{},"3856":{},"3857":{},"3858":{},"3860":{},"3862":{},"3864":{},"3866":{},"3868":{},"3869":{},"3870":{},"3871":{},"3872":{},"3873":{},"3874":{},"3875":{},"3876":{},"3877":{},"3878":{},"3879":{},"3880":{},"3881":{},"3882":{},"3883":{},"3884":{},"3885":{},"3886":{},"3887":{},"3888":{},"3910":{},"3917":{},"3918":{},"3919":{},"3921":{},"3923":{},"3925":{},"3927":{},"3929":{},"3931":{},"3933":{},"3935":{},"3937":{},"3939":{},"3941":{},"3943":{},"3945":{},"3947":{},"3949":{},"3950":{},"3951":{},"3952":{},"3953":{},"3955":{}}}],["seller.shopperstores.asynccreated",{"_index":1778,"name":{},"parent":{"3936":{}}}],["seller.shopperstores.attributedefinition",{"_index":1766,"name":{},"parent":{"3889":{}}}],["seller.shopperstores.attributedefinition.__type",{"_index":1767,"name":{},"parent":{"3890":{},"3891":{},"3892":{},"3893":{},"3894":{},"3895":{},"3896":{},"3897":{},"3898":{},"3899":{},"3900":{},"3901":{},"3902":{},"3903":{},"3904":{},"3905":{},"3906":{},"3907":{},"3908":{},"3909":{}}}],["seller.shopperstores.badrequest",{"_index":1787,"name":{},"parent":{"3954":{}}}],["seller.shopperstores.dateconditionalrequest",{"_index":1775,"name":{},"parent":{"3930":{}}}],["seller.shopperstores.daterangefilter",{"_index":1770,"name":{},"parent":{"3920":{}}}],["seller.shopperstores.datetimerangefilter",{"_index":1784,"name":{},"parent":{"3948":{}}}],["seller.shopperstores.etagconditionalrequest",{"_index":1777,"name":{},"parent":{"3934":{}}}],["seller.shopperstores.etagresponse",{"_index":1771,"name":{},"parent":{"3922":{}}}],["seller.shopperstores.integerrangefilter",{"_index":1772,"name":{},"parent":{"3924":{}}}],["seller.shopperstores.localespecific",{"_index":1760,"name":{},"parent":{"3849":{}}}],["seller.shopperstores.nopropertiesallowed",{"_index":1765,"name":{},"parent":{"3867":{}}}],["seller.shopperstores.numericrangefilter",{"_index":1783,"name":{},"parent":{"3946":{}}}],["seller.shopperstores.offsetpaginated",{"_index":1781,"name":{},"parent":{"3942":{}}}],["seller.shopperstores.propertyvaluedefinition",{"_index":1768,"name":{},"parent":{"3911":{}}}],["seller.shopperstores.propertyvaluedefinition.__type",{"_index":1769,"name":{},"parent":{"3912":{},"3913":{},"3914":{},"3915":{},"3916":{}}}],["seller.shopperstores.queryparamslimit",{"_index":1761,"name":{},"parent":{"3859":{}}}],["seller.shopperstores.queryparamsoffset",{"_index":1762,"name":{},"parent":{"3861":{}}}],["seller.shopperstores.ratelimited",{"_index":1779,"name":{},"parent":{"3938":{}}}],["seller.shopperstores.ratelimited2",{"_index":1780,"name":{},"parent":{"3940":{}}}],["seller.shopperstores.ratelimited3",{"_index":1773,"name":{},"parent":{"3926":{}}}],["seller.shopperstores.ratelimited4",{"_index":1782,"name":{},"parent":{"3944":{}}}],["seller.shopperstores.ratelimited5",{"_index":1776,"name":{},"parent":{"3932":{}}}],["seller.shopperstores.selectable",{"_index":1764,"name":{},"parent":{"3865":{}}}],["seller.shopperstores.sitespecific",{"_index":1763,"name":{},"parent":{"3863":{}}}],["seller.shopperstores.synccreated",{"_index":1774,"name":{},"parent":{"3928":{}}}],["seller.shopperstores.unauthorized",{"_index":1788,"name":{},"parent":{"3956":{}}}],["serviceunavailable",{"_index":997,"name":{"1862":{}},"parent":{}}],["sessionbridgetokenrequest",{"_index":834,"name":{"1470":{}},"parent":{}}],["shipment",{"_index":313,"name":{"310":{},"641":{},"864":{},"1278":{}},"parent":{}}],["shipmentid",{"_index":361,"name":{"354":{}},"parent":{}}],["shipmentnotfound",{"_index":245,"name":{"246":{}},"parent":{}}],["shippingaddress",{"_index":364,"name":{"356":{}},"parent":{}}],["shippingaddressupdaterequest",{"_index":312,"name":{"309":{}},"parent":{}}],["shippingitem",{"_index":285,"name":{"284":{},"615":{},"838":{},"1259":{}},"parent":{}}],["shippingmethod",{"_index":363,"name":{"355":{},"654":{},"877":{},"1288":{}},"parent":{}}],["shippingmethodreference",{"_index":307,"name":{"304":{}},"parent":{}}],["shippingmethodresult",{"_index":495,"name":{"646":{},"869":{}},"parent":{}}],["shippingpromotion",{"_index":486,"name":{"632":{},"855":{},"1263":{}},"parent":{}}],["shippingtotal",{"_index":365,"name":{"357":{}},"parent":{}}],["shopperbaskets",{"_index":419,"name":{"487":{}},"parent":{}}],["shoppercontext",{"_index":661,"name":{"1104":{},"1111":{}},"parent":{}}],["shoppercustomers",{"_index":692,"name":{"1216":{}},"parent":{}}],["shopperdiscoverysearch",{"_index":936,"name":{"1757":{}},"parent":{}}],["shopperexperience",{"_index":1139,"name":{"2113":{}},"parent":{}}],["shoppergiftcertificates",{"_index":1423,"name":{"2896":{}},"parent":{}}],["shopperlogin",{"_index":804,"name":{"1438":{}},"parent":{}}],["shopperorders",{"_index":542,"name":{"739":{}},"parent":{}}],["shopperproducts",{"_index":1698,"name":{"3611":{}},"parent":{}}],["shopperpromotions",{"_index":1452,"name":{"3008":{}},"parent":{}}],["shoppersearch",{"_index":1090,"name":{"1973":{},"3756":{}},"parent":{}}],["shopperseo",{"_index":861,"name":{"1575":{}},"parent":{}}],["shopperstores",{"_index":1756,"name":{"3843":{}},"parent":{}}],["shortcode",{"_index":1188,"name":{"2242":{}},"parent":{}}],["simplelink",{"_index":493,"name":{"643":{},"866":{},"1281":{}},"parent":{}}],["simplesearchresult",{"_index":152,"name":{"150":{},"386":{},"531":{},"754":{},"1037":{},"1149":{},"1371":{},"1510":{},"1582":{},"1786":{},"1979":{},"2159":{},"2322":{},"2436":{},"2571":{},"2687":{},"2829":{},"2941":{},"3056":{},"3180":{},"3373":{},"3544":{},"3688":{},"3762":{},"3851":{}},"parent":{}}],["simplesearchresultbase",{"_index":179,"name":{"177":{},"415":{},"560":{},"783":{},"1066":{},"1178":{},"1400":{},"1537":{},"1611":{},"1811":{},"2008":{},"2188":{},"2351":{},"2465":{},"2600":{},"2716":{},"2858":{},"2970":{},"3085":{},"3209":{},"3402":{},"3573":{},"3717":{},"3787":{},"3880":{}},"parent":{}}],["site",{"_index":1585,"name":{"3315":{}},"parent":{}}],["sitenotfound",{"_index":233,"name":{"234":{}},"parent":{}}],["sitespecific",{"_index":163,"name":{"161":{},"201":{},"397":{},"439":{},"542":{},"584":{},"765":{},"807":{},"1048":{},"1089":{},"1160":{},"1201":{},"1382":{},"1423":{},"1521":{},"1560":{},"1593":{},"1635":{},"1795":{},"1990":{},"2032":{},"2170":{},"2211":{},"2333":{},"2374":{},"2447":{},"2488":{},"2582":{},"2623":{},"2698":{},"2739":{},"2840":{},"2881":{},"2952":{},"2993":{},"3067":{},"3108":{},"3191":{},"3232":{},"3384":{},"3425":{},"3555":{},"3596":{},"3699":{},"3740":{},"3771":{},"3862":{},"3904":{}},"parent":{}}],["slasadmin",{"_index":893,"name":{"1691":{}},"parent":{}}],["slasratelimit",{"_index":835,"name":{"1471":{}},"parent":{}}],["sort",{"_index":182,"name":{"180":{},"418":{},"563":{},"786":{},"1069":{},"1181":{},"1403":{},"1540":{},"1614":{},"1814":{},"2011":{},"2191":{},"2354":{},"2468":{},"2603":{},"2719":{},"2861":{},"2973":{},"3088":{},"3212":{},"3405":{},"3576":{},"3720":{},"3790":{},"3883":{}},"parent":{}}],["sorting",{"_index":1032,"name":{"1904":{},"1940":{}},"parent":{}}],["sortingrule",{"_index":1573,"name":{"3298":{}},"parent":{}}],["sortingrulestep",{"_index":1594,"name":{"3326":{}},"parent":{}}],["sorttype",{"_index":1063,"name":{"1945":{}},"parent":{}}],["sourcecodegroup",{"_index":1491,"name":{"3131":{}},"parent":{}}],["sourcecodegroupinvalid",{"_index":1497,"name":{"3137":{}},"parent":{}}],["sourcecodegroupnotfound",{"_index":1495,"name":{"3135":{}},"parent":{}}],["sourcecodegroups",{"_index":1484,"name":{"3123":{}},"parent":{}}],["sourcecodegroupsearchresult",{"_index":1492,"name":{"3132":{}},"parent":{}}],["sourcecodegroupssearch",{"_index":1490,"name":{"3129":{}},"parent":{}}],["sourcecoderedirectinfo",{"_index":1493,"name":{"3133":{}},"parent":{}}],["sourcecodespecification",{"_index":1494,"name":{"3134":{}},"parent":{}}],["specifiedpropertiesallowed",{"_index":167,"name":{"165":{},"403":{},"548":{},"771":{},"1054":{},"1166":{},"1388":{},"1525":{},"1599":{},"1799":{},"1996":{},"2176":{},"2339":{},"2453":{},"2588":{},"2704":{},"2846":{},"2958":{},"3073":{},"3197":{},"3390":{},"3561":{},"3705":{},"3775":{},"3868":{}},"parent":{}}],["speedsetting",{"_index":80,"name":{"79":{}},"parent":{}}],["speedsettingsenvelope",{"_index":60,"name":{"59":{}},"parent":{}}],["status",{"_index":269,"name":{"270":{},"293":{},"321":{},"326":{},"342":{},"345":{},"370":{},"374":{},"689":{},"693":{},"912":{},"916":{},"1319":{}},"parent":{}}],["statuscode",{"_index":301,"name":{"299":{}},"parent":{}}],["statustransitionconflict",{"_index":237,"name":{"238":{}},"parent":{}}],["store",{"_index":1786,"name":{"3952":{}},"parent":{}}],["storefrontzonecreateenvelope",{"_index":107,"name":{"106":{}},"parent":{}}],["storefrontzonecreaterequest",{"_index":66,"name":{"65":{}},"parent":{}}],["storefrontzonecreateresponse",{"_index":57,"name":{"56":{}},"parent":{}}],["storeresult",{"_index":1785,"name":{"3951":{}},"parent":{}}],["stringtobase64",{"_index":1195,"name":{"2256":{}},"parent":{}}],["subject",{"_index":343,"name":{"337":{},"622":{},"845":{}},"parent":{}}],["suggestedcategory",{"_index":1126,"name":{"2088":{},"3824":{}},"parent":{}}],["suggestedphrase",{"_index":1124,"name":{"2085":{},"3821":{}},"parent":{}}],["suggestedproduct",{"_index":1123,"name":{"2084":{},"3820":{}},"parent":{}}],["suggestedsearchphrases",{"_index":1088,"name":{"1969":{}},"parent":{}}],["suggestedterm",{"_index":1130,"name":{"2096":{},"3829":{}},"parent":{}}],["suggestedterms",{"_index":1120,"name":{"2081":{},"3818":{}},"parent":{}}],["suggestion",{"_index":1080,"name":{"1963":{},"2104":{},"3836":{}},"parent":{}}],["suggestionresult",{"_index":1135,"name":{"2105":{},"3837":{}},"parent":{}}],["suggestions",{"_index":1084,"name":{"1966":{}},"parent":{}}],["synccreated",{"_index":133,"name":{"131":{},"461":{},"713":{},"936":{},"1010":{},"1122":{},"1332":{},"1483":{},"1665":{},"1728":{},"1767":{},"2055":{},"2132":{},"2295":{},"2409":{},"2544":{},"2661":{},"2802":{},"2914":{},"3030":{},"3153":{},"3351":{},"3518":{},"3661":{},"3799":{},"3927":{}},"parent":{}}],["system",{"_index":204,"name":{"202":{},"440":{},"585":{},"808":{},"1090":{},"1202":{},"1424":{},"1561":{},"1636":{},"2033":{},"2212":{},"2375":{},"2489":{},"2624":{},"2740":{},"2882":{},"2994":{},"3109":{},"3233":{},"3426":{},"3597":{},"3741":{},"3905":{}},"parent":{}}],["tag",{"_index":1215,"name":{"2278":{},"2782":{}},"parent":{}}],["taxes",{"_index":488,"name":{"635":{},"637":{},"858":{},"860":{}},"parent":{}}],["taxitem",{"_index":519,"name":{"684":{},"907":{}},"parent":{}}],["taxitems",{"_index":469,"name":{"597":{},"820":{}},"parent":{}}],["taxrate",{"_index":512,"name":{"669":{},"892":{},"1310":{}},"parent":{}}],["taxtotal",{"_index":366,"name":{"358":{}},"parent":{}}],["taxvalue",{"_index":514,"name":{"670":{},"893":{},"1311":{}},"parent":{}}],["tenant",{"_index":913,"name":{"1712":{}},"parent":{}}],["tenantdto",{"_index":914,"name":{"1713":{}},"parent":{}}],["tenantlistresponse",{"_index":912,"name":{"1711":{}},"parent":{}}],["termfilter",{"_index":175,"name":{"173":{},"411":{},"556":{},"779":{},"1062":{},"1174":{},"1396":{},"1533":{},"1607":{},"1807":{},"2004":{},"2184":{},"2347":{},"2461":{},"2596":{},"2712":{},"2854":{},"2966":{},"3081":{},"3205":{},"3398":{},"3569":{},"3713":{},"3783":{},"3876":{}},"parent":{}}],["termquery",{"_index":174,"name":{"172":{},"410":{},"555":{},"778":{},"1061":{},"1173":{},"1395":{},"1532":{},"1606":{},"1806":{},"2003":{},"2183":{},"2346":{},"2460":{},"2595":{},"2711":{},"2853":{},"2965":{},"3080":{},"3204":{},"3397":{},"3568":{},"3712":{},"3782":{},"3875":{}},"parent":{}}],["testid",{"_index":334,"name":{"330":{}},"parent":{}}],["text",{"_index":344,"name":{"338":{},"623":{},"846":{}},"parent":{}}],["textquery",{"_index":176,"name":{"174":{},"412":{},"557":{},"780":{},"1063":{},"1175":{},"1397":{},"1534":{},"1608":{},"1808":{},"2005":{},"2185":{},"2348":{},"2462":{},"2597":{},"2713":{},"2855":{},"2967":{},"3082":{},"3206":{},"3399":{},"3570":{},"3714":{},"3784":{},"3877":{}},"parent":{}}],["timeofday",{"_index":1212,"name":{"2275":{},"2779":{}},"parent":{}}],["title",{"_index":484,"name":{"630":{},"652":{},"853":{},"875":{},"1851":{},"1870":{}},"parent":{}}],["toggleocapicachingpagerule",{"_index":21,"name":{"20":{}},"parent":{}}],["tokenactionrequest",{"_index":833,"name":{"1469":{}},"parent":{}}],["tokenrequest",{"_index":832,"name":{"1468":{},"2254":{}},"parent":{}}],["tokenresponse",{"_index":831,"name":{"1467":{},"2255":{}},"parent":{}}],["total",{"_index":1024,"name":{"1895":{}},"parent":{}}],["totalgroupeditems",{"_index":1078,"name":{"1961":{}},"parent":{}}],["traceable",{"_index":958,"name":{"1821":{}},"parent":{}}],["transferbasket",{"_index":422,"name":{"490":{}},"parent":{}}],["trustedagenttokenrequest",{"_index":823,"name":{"1459":{}},"parent":{}}],["trustedsystemauthrequest",{"_index":729,"name":{"1256":{}},"parent":{}}],["trustedsystemtokenrequest",{"_index":829,"name":{"1465":{}},"parent":{}}],["type",{"_index":207,"name":{"205":{},"290":{},"368":{},"384":{},"443":{},"588":{},"657":{},"703":{},"811":{},"880":{},"926":{},"1093":{},"1205":{},"1427":{},"1564":{},"1639":{},"1850":{},"1869":{},"2036":{},"2215":{},"2378":{},"2492":{},"2627":{},"2743":{},"2885":{},"2997":{},"3112":{},"3236":{},"3429":{},"3600":{},"3744":{},"3908":{}},"parent":{}}],["unassignproductfromcategory",{"_index":1539,"name":{"3260":{}},"parent":{}}],["unassignvariationfrommasterproduct",{"_index":1640,"name":{"3453":{}},"parent":{}}],["unassignvariationgroupfrommasterproduct",{"_index":1635,"name":{"3448":{}},"parent":{}}],["unauthorized",{"_index":634,"name":{"999":{},"1366":{},"1651":{},"2106":{},"3340":{},"3503":{},"3648":{},"3955":{}},"parent":{}}],["undocancelorderconflict",{"_index":251,"name":{"252":{}},"parent":{}}],["undofailorderconflict",{"_index":263,"name":{"264":{}},"parent":{}}],["unit",{"_index":205,"name":{"203":{},"441":{},"586":{},"809":{},"1091":{},"1203":{},"1425":{},"1562":{},"1637":{},"2034":{},"2213":{},"2376":{},"2490":{},"2625":{},"2741":{},"2883":{},"2995":{},"3110":{},"3234":{},"3427":{},"3598":{},"3742":{},"3906":{}},"parent":{}}],["unqueryablefield",{"_index":1380,"name":{"2762":{}},"parent":{}}],["updateaddressforcustomerincustomerlist",{"_index":614,"name":{"975":{}},"parent":{}}],["updateasagentbasket",{"_index":427,"name":{"495":{}},"parent":{}}],["updateasstorefrontbasket",{"_index":455,"name":{"523":{}},"parent":{}}],["updatebasket",{"_index":426,"name":{"494":{}},"parent":{}}],["updatebillingaddressforbasket",{"_index":428,"name":{"496":{}},"parent":{}}],["updatecampaign",{"_index":1252,"name":{"2394":{}},"parent":{}}],["updatecatalog",{"_index":1531,"name":{"3252":{}},"parent":{}}],["updatecategoryincatalog",{"_index":1535,"name":{"3256":{}},"parent":{}}],["updatecertificate",{"_index":25,"name":{"24":{}},"parent":{}}],["updatecoupon",{"_index":1293,"name":{"2516":{}},"parent":{}}],["updatecouponcodes",{"_index":1296,"name":{"2519":{}},"parent":{}}],["updatecustomer",{"_index":700,"name":{"1224":{}},"parent":{}}],["updatecustomeraddress",{"_index":704,"name":{"1228":{}},"parent":{}}],["updatecustomerforbasket",{"_index":431,"name":{"499":{}},"parent":{}}],["updatecustomerincustomerlist",{"_index":608,"name":{"969":{}},"parent":{}}],["updatecustomerpassword",{"_index":707,"name":{"1231":{}},"parent":{}}],["updatecustomerproductlist",{"_index":715,"name":{"1239":{}},"parent":{}}],["updatecustomerproductlistitem",{"_index":719,"name":{"1243":{}},"parent":{}}],["updatecustomrule",{"_index":43,"name":{"42":{}},"parent":{}}],["updatefirewallrule",{"_index":14,"name":{"13":{}},"parent":{}}],["updategiftcertificate",{"_index":1341,"name":{"2644":{}},"parent":{}}],["updategiftcertificateiteminbasket",{"_index":434,"name":{"502":{}},"parent":{}}],["updateiteminbasket",{"_index":438,"name":{"506":{}},"parent":{}}],["updateitemsinbasket",{"_index":436,"name":{"504":{}},"parent":{}}],["updatelogpushjob",{"_index":37,"name":{"36":{}},"parent":{}}],["updatemrtrule",{"_index":32,"name":{"31":{}},"parent":{}}],["updatemrtruleset",{"_index":28,"name":{"27":{}},"parent":{}}],["updateorder",{"_index":223,"name":{"222":{}},"parent":{}}],["updateorderconfirmationstatus",{"_index":224,"name":{"223":{}},"parent":{}}],["updateorderexportstatus",{"_index":225,"name":{"224":{}},"parent":{}}],["updateorderexternalstatus",{"_index":226,"name":{"225":{}},"parent":{}}],["updateorderofcustomrules",{"_index":41,"name":{"40":{}},"parent":{}}],["updateorderpaymentinstrument",{"_index":230,"name":{"229":{}},"parent":{}}],["updateorderpaymentstatus",{"_index":227,"name":{"226":{}},"parent":{}}],["updateorderpaymenttransaction",{"_index":231,"name":{"230":{}},"parent":{}}],["updateordershippingaddress",{"_index":232,"name":{"231":{}},"parent":{}}],["updateordershippingstatus",{"_index":228,"name":{"227":{}},"parent":{}}],["updateorderstatus",{"_index":229,"name":{"228":{}},"parent":{}}],["updatepaymentinstrumentfororder",{"_index":548,"name":{"746":{}},"parent":{}}],["updatepaymentinstrumentinbasket",{"_index":442,"name":{"510":{}},"parent":{}}],["updatepriceadjustmentinbasket",{"_index":446,"name":{"514":{}},"parent":{}}],["updateproduct",{"_index":1631,"name":{"3444":{}},"parent":{}}],["updateproductcategoryassignment",{"_index":1540,"name":{"3261":{}},"parent":{}}],["updateproductoption",{"_index":1647,"name":{"3460":{}},"parent":{}}],["updateproductoptionvalue",{"_index":1651,"name":{"3464":{}},"parent":{}}],["updatepromotion",{"_index":1391,"name":{"2775":{}},"parent":{}}],["updateratelimitingrule",{"_index":48,"name":{"47":{}},"parent":{}}],["updatesecuritysettings",{"_index":19,"name":{"18":{}},"parent":{}}],["updateshipmentforbasket",{"_index":451,"name":{"519":{}},"parent":{}}],["updateshippingaddressforshipment",{"_index":452,"name":{"520":{}},"parent":{}}],["updateshippingmethodforshipment",{"_index":453,"name":{"521":{}},"parent":{}}],["updateshoppercontext",{"_index":666,"name":{"1109":{}},"parent":{}}],["updatesourcecodegroup",{"_index":1488,"name":{"3127":{}},"parent":{}}],["updatespeedsettings",{"_index":17,"name":{"16":{}},"parent":{}}],["updatevariationattribute",{"_index":1660,"name":{"3473":{}},"parent":{}}],["updatevariationattributevalue",{"_index":1655,"name":{"3468":{}},"parent":{}}],["updatevariationformasterproduct",{"_index":1642,"name":{"3455":{}},"parent":{}}],["updatevariationgroupformasterproduct",{"_index":1637,"name":{"3450":{}},"parent":{}}],["updatewafgroup",{"_index":7,"name":{"6":{}},"parent":{}}],["updatewafmanagedruleset",{"_index":51,"name":{"50":{}},"parent":{}}],["updatewafrule",{"_index":10,"name":{"9":{}},"parent":{}}],["urlmapping",{"_index":874,"name":{"1648":{}},"parent":{}}],["user_agent_header",{"_index":215,"name":{"214":{},"485":{},"737":{},"960":{},"1102":{},"1214":{},"1436":{},"1573":{},"1689":{},"1754":{},"1971":{},"2110":{},"2234":{},"2387":{},"2507":{},"2636":{},"2768":{},"2894":{},"3006":{},"3121":{},"3245":{},"3438":{},"3609":{},"3753":{},"3840":{},"3957":{}},"parent":{}}],["user_agent_value",{"_index":216,"name":{"215":{},"486":{},"738":{},"961":{},"1103":{},"1215":{},"1437":{},"1574":{},"1690":{},"1755":{},"1972":{},"2111":{},"2235":{},"2388":{},"2508":{},"2637":{},"2769":{},"2895":{},"3007":{},"3122":{},"3246":{},"3439":{},"3610":{},"3754":{},"3841":{},"3958":{}},"parent":{}}],["valid",{"_index":302,"name":{"300":{}},"parent":{}}],["validatecustomhostname",{"_index":26,"name":{"25":{}},"parent":{}}],["validfrommonth",{"_index":283,"name":{"282":{},"612":{},"681":{},"835":{},"904":{}},"parent":{}}],["validfromyear",{"_index":284,"name":{"283":{},"613":{},"682":{},"836":{},"905":{}},"parent":{}}],["value",{"_index":214,"name":{"213":{},"451":{},"596":{},"658":{},"688":{},"819":{},"881":{},"911":{},"1101":{},"1213":{},"1435":{},"1572":{},"1647":{},"1877":{},"1884":{},"2044":{},"2223":{},"2386":{},"2500":{},"2635":{},"2751":{},"2893":{},"3005":{},"3120":{},"3244":{},"3437":{},"3608":{},"3752":{},"3916":{}},"parent":{}}],["valuefacetinput",{"_index":1053,"name":{"1932":{}},"parent":{}}],["valuefacetoutput",{"_index":1043,"name":{"1918":{}},"parent":{}}],["valuefacetoutputentity",{"_index":1057,"name":{"1938":{}},"parent":{}}],["valuerefinement",{"_index":1034,"name":{"1907":{}},"parent":{}}],["values",{"_index":1036,"name":{"1909":{},"1920":{}},"parent":{}}],["variant",{"_index":741,"name":{"1275":{},"2090":{},"3301":{},"3487":{},"3628":{}},"parent":{}}],["variants",{"_index":1664,"name":{"3479":{}},"parent":{}}],["variantsearchresult",{"_index":1665,"name":{"3482":{}},"parent":{}}],["variationattribute",{"_index":732,"name":{"1264":{},"2086":{},"3293":{},"3483":{},"3624":{},"3822":{}},"parent":{}}],["variationattributes",{"_index":1576,"name":{"3304":{},"3490":{}},"parent":{}}],["variationattributevalue",{"_index":766,"name":{"1316":{},"2102":{},"3320":{},"3499":{},"3637":{},"3835":{}},"parent":{}}],["variationattributevalues",{"_index":1583,"name":{"3313":{},"3494":{}},"parent":{}}],["variationgroup",{"_index":743,"name":{"1280":{},"2091":{},"3302":{},"3488":{},"3629":{}},"parent":{}}],["variationgroups",{"_index":1668,"name":{"3501":{}},"parent":{}}],["visible",{"_index":208,"name":{"206":{},"444":{},"589":{},"812":{},"1094":{},"1206":{},"1428":{},"1565":{},"1640":{},"2037":{},"2216":{},"2379":{},"2493":{},"2628":{},"2744":{},"2886":{},"2998":{},"3113":{},"3237":{},"3430":{},"3601":{},"3745":{},"3909":{}},"parent":{}}],["wafgroup",{"_index":108,"name":{"107":{}},"parent":{}}],["wafgroupenvelope",{"_index":58,"name":{"57":{}},"parent":{}}],["wafgroupsenvelope",{"_index":97,"name":{"96":{}},"parent":{}}],["wafmanagedruleset",{"_index":113,"name":{"112":{}},"parent":{}}],["wafmanagedrulesetenvelope",{"_index":83,"name":{"82":{}},"parent":{}}],["wafmanagedrulesetrequest",{"_index":70,"name":{"69":{}},"parent":{}}],["wafmanagedrulesetsenvelope",{"_index":72,"name":{"71":{}},"parent":{}}],["wafrule",{"_index":115,"name":{"114":{}},"parent":{}}],["wafruleenvelope",{"_index":111,"name":{"110":{}},"parent":{}}],["wafrulesenvelope",{"_index":102,"name":{"101":{}},"parent":{}}],["zone",{"_index":62,"name":{"61":{}},"parent":{}}],["zoneenvelope",{"_index":79,"name":{"78":{}},"parent":{}}],["zonesenvelope",{"_index":63,"name":{"62":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +{"kinds":{"1":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","2097152":"Object literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"cdn","url":"modules/cdn.html","classes":"tsd-kind-module"},{"id":1,"kind":128,"name":"CdnZones","url":"classes/cdn.cdnzones.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"cdn"},{"id":2,"kind":512,"name":"constructor","url":"classes/cdn.cdnzones.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"cdn.CdnZones"},{"id":3,"kind":2048,"name":"createStorefrontZone","url":"classes/cdn.cdnzones.html#createstorefrontzone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":4,"kind":2048,"name":"getZonesInfo","url":"classes/cdn.cdnzones.html#getzonesinfo","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":5,"kind":2048,"name":"getWafGroups","url":"classes/cdn.cdnzones.html#getwafgroups","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":6,"kind":2048,"name":"updateWafGroup","url":"classes/cdn.cdnzones.html#updatewafgroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":7,"kind":2048,"name":"getWafRules","url":"classes/cdn.cdnzones.html#getwafrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":8,"kind":2048,"name":"getWafRule","url":"classes/cdn.cdnzones.html#getwafrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":9,"kind":2048,"name":"updateWafRule","url":"classes/cdn.cdnzones.html#updatewafrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":10,"kind":2048,"name":"getSpeedSettings","url":"classes/cdn.cdnzones.html#getspeedsettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":11,"kind":2048,"name":"updateSpeedSettings","url":"classes/cdn.cdnzones.html#updatespeedsettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":12,"kind":2048,"name":"getSecuritySettings","url":"classes/cdn.cdnzones.html#getsecuritysettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":13,"kind":2048,"name":"updateSecuritySettings","url":"classes/cdn.cdnzones.html#updatesecuritysettings","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":14,"kind":2048,"name":"cachePurge","url":"classes/cdn.cdnzones.html#cachepurge","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":15,"kind":2048,"name":"toggleOcapiCachingPageRule","url":"classes/cdn.cdnzones.html#toggleocapicachingpagerule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":16,"kind":2048,"name":"getCertificates","url":"classes/cdn.cdnzones.html#getcertificates","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":17,"kind":2048,"name":"addCertificateForZone","url":"classes/cdn.cdnzones.html#addcertificateforzone","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":18,"kind":2048,"name":"deleteCertificate","url":"classes/cdn.cdnzones.html#deletecertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":19,"kind":2048,"name":"updateCertificate","url":"classes/cdn.cdnzones.html#updatecertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":20,"kind":2048,"name":"validateCustomHostname","url":"classes/cdn.cdnzones.html#validatecustomhostname","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":21,"kind":2048,"name":"createMrtRules","url":"classes/cdn.cdnzones.html#createmrtrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":22,"kind":2048,"name":"updateMrtRuleset","url":"classes/cdn.cdnzones.html#updatemrtruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":23,"kind":2048,"name":"getMrtRules","url":"classes/cdn.cdnzones.html#getmrtrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":24,"kind":2048,"name":"deleteMrtRuleset","url":"classes/cdn.cdnzones.html#deletemrtruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":25,"kind":2048,"name":"deleteMrtRule","url":"classes/cdn.cdnzones.html#deletemrtrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":26,"kind":2048,"name":"updateMrtRule","url":"classes/cdn.cdnzones.html#updatemrtrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":27,"kind":2048,"name":"createLogpushOwnership","url":"classes/cdn.cdnzones.html#createlogpushownership","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":28,"kind":2048,"name":"createLogpushJob","url":"classes/cdn.cdnzones.html#createlogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":29,"kind":2048,"name":"listLogpushJob","url":"classes/cdn.cdnzones.html#listlogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":30,"kind":2048,"name":"getLogpushJob","url":"classes/cdn.cdnzones.html#getlogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":31,"kind":2048,"name":"updateLogpushJob","url":"classes/cdn.cdnzones.html#updatelogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":32,"kind":2048,"name":"deleteLogpushJob","url":"classes/cdn.cdnzones.html#deletelogpushjob","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":33,"kind":2048,"name":"getOwaspWafPackage","url":"classes/cdn.cdnzones.html#getowaspwafpackage","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":34,"kind":2048,"name":"patchOwaspWafPackage","url":"classes/cdn.cdnzones.html#patchowaspwafpackage","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":35,"kind":2048,"name":"createCustomRule","url":"classes/cdn.cdnzones.html#createcustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":36,"kind":2048,"name":"getCustomRules","url":"classes/cdn.cdnzones.html#getcustomrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":37,"kind":2048,"name":"updateOrderOfCustomRules","url":"classes/cdn.cdnzones.html#updateorderofcustomrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":38,"kind":2048,"name":"getCustomRule","url":"classes/cdn.cdnzones.html#getcustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":39,"kind":2048,"name":"updateCustomRule","url":"classes/cdn.cdnzones.html#updatecustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":40,"kind":2048,"name":"deleteCustomRule","url":"classes/cdn.cdnzones.html#deletecustomrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":41,"kind":2048,"name":"createRateLimitingRule","url":"classes/cdn.cdnzones.html#createratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":42,"kind":2048,"name":"getRateLimitingRules","url":"classes/cdn.cdnzones.html#getratelimitingrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":43,"kind":2048,"name":"getRateLimitingRule","url":"classes/cdn.cdnzones.html#getratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":44,"kind":2048,"name":"updateRateLimitingRule","url":"classes/cdn.cdnzones.html#updateratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":45,"kind":2048,"name":"deleteRateLimitingRule","url":"classes/cdn.cdnzones.html#deleteratelimitingrule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":46,"kind":2048,"name":"getWafManagedRulesets","url":"classes/cdn.cdnzones.html#getwafmanagedrulesets","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":47,"kind":2048,"name":"updateWafManagedRuleset","url":"classes/cdn.cdnzones.html#updatewafmanagedruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":48,"kind":2048,"name":"getWafManagedRulesInRuleset","url":"classes/cdn.cdnzones.html#getwafmanagedrulesinruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":49,"kind":2048,"name":"updateWafManagedRuleInRuleset","url":"classes/cdn.cdnzones.html#updatewafmanagedruleinruleset","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":50,"kind":2048,"name":"migrateZoneToWafV2","url":"classes/cdn.cdnzones.html#migratezonetowafv2","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":51,"kind":2048,"name":"upsertOriginHeaderModification","url":"classes/cdn.cdnzones.html#upsertoriginheadermodification","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":52,"kind":2048,"name":"getOriginHeaderModification","url":"classes/cdn.cdnzones.html#getoriginheadermodification","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":53,"kind":2048,"name":"deleteOriginHeaderModification","url":"classes/cdn.cdnzones.html#deleteoriginheadermodification","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"cdn.CdnZones"},{"id":54,"kind":1024,"name":"clientConfig","url":"classes/cdn.cdnzones.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"cdn.CdnZones"},{"id":55,"kind":4194304,"name":"FirewallRule","url":"classes/cdn.cdnzones.html#firewallrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":56,"kind":4194304,"name":"CachePurgeRequest","url":"classes/cdn.cdnzones.html#cachepurgerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":57,"kind":4194304,"name":"CachePurgeResponseEnvelope","url":"classes/cdn.cdnzones.html#cachepurgeresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":58,"kind":4194304,"name":"CollectionResponseEnvelope","url":"classes/cdn.cdnzones.html#collectionresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":59,"kind":4194304,"name":"StorefrontZoneCreateResponse","url":"classes/cdn.cdnzones.html#storefrontzonecreateresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":60,"kind":4194304,"name":"WafGroupEnvelope","url":"classes/cdn.cdnzones.html#wafgroupenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":61,"kind":4194304,"name":"LogpushOwnershipPostRequest","url":"classes/cdn.cdnzones.html#logpushownershippostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":62,"kind":4194304,"name":"SpeedSettingsEnvelope","url":"classes/cdn.cdnzones.html#speedsettingsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":63,"kind":4194304,"name":"LogpushResponse","url":"classes/cdn.cdnzones.html#logpushresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":64,"kind":4194304,"name":"Zone","url":"classes/cdn.cdnzones.html#zone","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":65,"kind":4194304,"name":"ZonesEnvelope","url":"classes/cdn.cdnzones.html#zonesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":66,"kind":4194304,"name":"WAFRulePackageEnvelope","url":"classes/cdn.cdnzones.html#wafrulepackageenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":67,"kind":4194304,"name":"ItemResponseEnvelope","url":"classes/cdn.cdnzones.html#itemresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":68,"kind":4194304,"name":"RateLimitingRuleEnvelope","url":"classes/cdn.cdnzones.html#ratelimitingruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":69,"kind":4194304,"name":"OriginHeaderModification","url":"classes/cdn.cdnzones.html#originheadermodification","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":70,"kind":4194304,"name":"StorefrontZoneCreateRequest","url":"classes/cdn.cdnzones.html#storefrontzonecreaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":71,"kind":4194304,"name":"LogpushCreateRequest","url":"classes/cdn.cdnzones.html#logpushcreaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":72,"kind":4194304,"name":"LogpushJobsEnvelope","url":"classes/cdn.cdnzones.html#logpushjobsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":73,"kind":4194304,"name":"RateLimitingRulesPostRequest","url":"classes/cdn.cdnzones.html#ratelimitingrulespostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":74,"kind":4194304,"name":"WAFManagedRulesetRequest","url":"classes/cdn.cdnzones.html#wafmanagedrulesetrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":75,"kind":4194304,"name":"CertificatesEnvelope","url":"classes/cdn.cdnzones.html#certificatesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":76,"kind":4194304,"name":"WAFManagedRulesetsEnvelope","url":"classes/cdn.cdnzones.html#wafmanagedrulesetsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":77,"kind":4194304,"name":"MRTRulesResponse","url":"classes/cdn.cdnzones.html#mrtrulesresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":78,"kind":4194304,"name":"Hsts","url":"classes/cdn.cdnzones.html#hsts","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":79,"kind":4194304,"name":"SecuritySettingsEnvelope","url":"classes/cdn.cdnzones.html#securitysettingsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":80,"kind":4194304,"name":"RulePosition","url":"classes/cdn.cdnzones.html#ruleposition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":81,"kind":4194304,"name":"CustomRulesPostRequest","url":"classes/cdn.cdnzones.html#customrulespostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":82,"kind":4194304,"name":"LogpushUpdateRequest","url":"classes/cdn.cdnzones.html#logpushupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":83,"kind":4194304,"name":"WAFRulePackage","url":"classes/cdn.cdnzones.html#wafrulepackage","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":84,"kind":4194304,"name":"ZoneEnvelope","url":"classes/cdn.cdnzones.html#zoneenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":85,"kind":4194304,"name":"SpeedSetting","url":"classes/cdn.cdnzones.html#speedsetting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":86,"kind":4194304,"name":"MRTRulePatchRequest","url":"classes/cdn.cdnzones.html#mrtrulepatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":87,"kind":4194304,"name":"WAFManagedRulesEnvelope","url":"classes/cdn.cdnzones.html#wafmanagedrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":88,"kind":4194304,"name":"WAFManagedRuleRequest","url":"classes/cdn.cdnzones.html#wafmanagedrulerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":89,"kind":4194304,"name":"CustomRulesEnvelope","url":"classes/cdn.cdnzones.html#customrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":90,"kind":4194304,"name":"WAFManagedRulesetEnvelope","url":"classes/cdn.cdnzones.html#wafmanagedrulesetenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":91,"kind":4194304,"name":"RateLimitingRulesPatchRequest","url":"classes/cdn.cdnzones.html#ratelimitingrulespatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":92,"kind":4194304,"name":"CertificateRequest","url":"classes/cdn.cdnzones.html#certificaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":93,"kind":4194304,"name":"RateLimitingRulesEnvelope","url":"classes/cdn.cdnzones.html#ratelimitingrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":94,"kind":4194304,"name":"CustomHostnameValidationResponse","url":"classes/cdn.cdnzones.html#customhostnamevalidationresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":95,"kind":4194304,"name":"LogpushOwnershipPostResponse","url":"classes/cdn.cdnzones.html#logpushownershippostresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":96,"kind":4194304,"name":"OriginHeaderModificationEnvelope","url":"classes/cdn.cdnzones.html#originheadermodificationenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":97,"kind":4194304,"name":"WafPackagePatchRequest","url":"classes/cdn.cdnzones.html#wafpackagepatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":98,"kind":4194304,"name":"MRTRulesPostRequest","url":"classes/cdn.cdnzones.html#mrtrulespostrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":99,"kind":4194304,"name":"LogpushEnvelope","url":"classes/cdn.cdnzones.html#logpushenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":100,"kind":4194304,"name":"ErrorResponse","url":"classes/cdn.cdnzones.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":101,"kind":4194304,"name":"MRTRulesResponseEnvelope","url":"classes/cdn.cdnzones.html#mrtrulesresponseenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":102,"kind":4194304,"name":"CustomRuleEnvelope","url":"classes/cdn.cdnzones.html#customruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":103,"kind":4194304,"name":"MRTRulesetPatchRequest","url":"classes/cdn.cdnzones.html#mrtrulesetpatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":104,"kind":4194304,"name":"WafGroupsEnvelope","url":"classes/cdn.cdnzones.html#wafgroupsenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":105,"kind":4194304,"name":"OCAPICachingToggleRequest","url":"classes/cdn.cdnzones.html#ocapicachingtogglerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":106,"kind":4194304,"name":"SecuritySetting","url":"classes/cdn.cdnzones.html#securitysetting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":107,"kind":4194304,"name":"CustomRule","url":"classes/cdn.cdnzones.html#customrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":108,"kind":4194304,"name":"WAFManagedRule","url":"classes/cdn.cdnzones.html#wafmanagedrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":109,"kind":4194304,"name":"MRTRules","url":"classes/cdn.cdnzones.html#mrtrules","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":110,"kind":4194304,"name":"WafRulesEnvelope","url":"classes/cdn.cdnzones.html#wafrulesenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":111,"kind":4194304,"name":"OriginHeaderModificationPutRequest","url":"classes/cdn.cdnzones.html#originheadermodificationputrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":112,"kind":4194304,"name":"CertificateEnvelope","url":"classes/cdn.cdnzones.html#certificateenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":113,"kind":4194304,"name":"CustomHostnameValidationEnvelope","url":"classes/cdn.cdnzones.html#customhostnamevalidationenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":114,"kind":4194304,"name":"RateLimitingRule","url":"classes/cdn.cdnzones.html#ratelimitingrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":115,"kind":4194304,"name":"CustomRulesPatchRequest","url":"classes/cdn.cdnzones.html#customrulespatchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":116,"kind":4194304,"name":"StorefrontZoneCreateEnvelope","url":"classes/cdn.cdnzones.html#storefrontzonecreateenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":117,"kind":4194304,"name":"WafGroup","url":"classes/cdn.cdnzones.html#wafgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":118,"kind":4194304,"name":"Certificate","url":"classes/cdn.cdnzones.html#certificate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":119,"kind":4194304,"name":"CustomRulesPatchOrderRequest","url":"classes/cdn.cdnzones.html#customrulespatchorderrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":120,"kind":4194304,"name":"WafRuleEnvelope","url":"classes/cdn.cdnzones.html#wafruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":121,"kind":4194304,"name":"CachePurgeResponse","url":"classes/cdn.cdnzones.html#cachepurgeresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":122,"kind":4194304,"name":"WAFManagedRuleEnvelope","url":"classes/cdn.cdnzones.html#wafmanagedruleenvelope","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":123,"kind":4194304,"name":"WAFManagedRuleset","url":"classes/cdn.cdnzones.html#wafmanagedruleset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":124,"kind":4194304,"name":"MRTRuleset","url":"classes/cdn.cdnzones.html#mrtruleset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":125,"kind":4194304,"name":"WafRule","url":"classes/cdn.cdnzones.html#wafrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":126,"kind":4194304,"name":"hasUnauthorizedResponse","url":"classes/cdn.cdnzones.html#hasunauthorizedresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":127,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasunauthorizedresponse.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasUnauthorizedResponse"},{"id":128,"kind":4194304,"name":"hasBadRequestResponse","url":"classes/cdn.cdnzones.html#hasbadrequestresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":129,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasbadrequestresponse.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasBadRequestResponse"},{"id":130,"kind":4194304,"name":"hasConflictResponse","url":"classes/cdn.cdnzones.html#hasconflictresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":131,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasconflictresponse.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasConflictResponse"},{"id":132,"kind":4194304,"name":"hasForbiddenAccessResponse","url":"classes/cdn.cdnzones.html#hasforbiddenaccessresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":133,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasforbiddenaccessresponse.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasForbiddenAccessResponse"},{"id":134,"kind":4194304,"name":"hasInternalServerErrorResponse","url":"classes/cdn.cdnzones.html#hasinternalservererrorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":135,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasinternalservererrorresponse.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasInternalServerErrorResponse"},{"id":136,"kind":4194304,"name":"hasResourceNotFoundResponse","url":"classes/cdn.cdnzones.html#hasresourcenotfoundresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":137,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#hasresourcenotfoundresponse.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.hasResourceNotFoundResponse"},{"id":138,"kind":4194304,"name":"EtagResponse","url":"classes/cdn.cdnzones.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":139,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#etagresponse.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.EtagResponse"},{"id":140,"kind":4194304,"name":"RateLimited3","url":"classes/cdn.cdnzones.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":141,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited3.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited3"},{"id":142,"kind":4194304,"name":"SyncCreated","url":"classes/cdn.cdnzones.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":143,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#synccreated.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.SyncCreated"},{"id":144,"kind":4194304,"name":"DateConditionalRequest","url":"classes/cdn.cdnzones.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":145,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.DateConditionalRequest"},{"id":146,"kind":4194304,"name":"RateLimited5","url":"classes/cdn.cdnzones.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":147,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited5.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited5"},{"id":148,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/cdn.cdnzones.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":149,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#etagconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.EtagConditionalRequest"},{"id":150,"kind":4194304,"name":"AsyncCreated","url":"classes/cdn.cdnzones.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":151,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.AsyncCreated"},{"id":152,"kind":4194304,"name":"RateLimited","url":"classes/cdn.cdnzones.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":153,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited"},{"id":154,"kind":4194304,"name":"RateLimited2","url":"classes/cdn.cdnzones.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":155,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited2"},{"id":156,"kind":4194304,"name":"OffsetPaginated","url":"classes/cdn.cdnzones.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":157,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#offsetpaginated.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.OffsetPaginated"},{"id":158,"kind":4194304,"name":"RateLimited4","url":"classes/cdn.cdnzones.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":159,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#ratelimited4.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.RateLimited4"},{"id":160,"kind":4194304,"name":"Money","url":"classes/cdn.cdnzones.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":161,"kind":4194304,"name":"SimpleSearchResult","url":"classes/cdn.cdnzones.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":162,"kind":4194304,"name":"SearchRequest","url":"classes/cdn.cdnzones.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":163,"kind":4194304,"name":"PropertyDefinition","url":"classes/cdn.cdnzones.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":164,"kind":4194304,"name":"LocalizedString","url":"classes/cdn.cdnzones.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":165,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/cdn.cdnzones.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":166,"kind":4194304,"name":"ClosedObject","url":"classes/cdn.cdnzones.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":167,"kind":4194304,"name":"OpenObject","url":"classes/cdn.cdnzones.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":168,"kind":4194304,"name":"QueryParamsLimit","url":"classes/cdn.cdnzones.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":169,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#queryparamslimit.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.QueryParamsLimit"},{"id":170,"kind":4194304,"name":"QueryParamsOffset","url":"classes/cdn.cdnzones.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":171,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#queryparamsoffset.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.QueryParamsOffset"},{"id":172,"kind":4194304,"name":"SiteSpecific","url":"classes/cdn.cdnzones.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":173,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#sitespecific-1.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.SiteSpecific"},{"id":174,"kind":4194304,"name":"Selectable","url":"classes/cdn.cdnzones.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":175,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#selectable.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.Selectable"},{"id":176,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/cdn.cdnzones.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":177,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#nopropertiesallowed.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.NoPropertiesAllowed"},{"id":178,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/cdn.cdnzones.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":179,"kind":4194304,"name":"BoolFilter","url":"classes/cdn.cdnzones.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":180,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/cdn.cdnzones.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":181,"kind":4194304,"name":"MatchAllQuery","url":"classes/cdn.cdnzones.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":182,"kind":4194304,"name":"FilteredQuery","url":"classes/cdn.cdnzones.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":183,"kind":4194304,"name":"QueryFilter","url":"classes/cdn.cdnzones.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":184,"kind":4194304,"name":"Query","url":"classes/cdn.cdnzones.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":185,"kind":4194304,"name":"TermQuery","url":"classes/cdn.cdnzones.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":186,"kind":4194304,"name":"TermFilter","url":"classes/cdn.cdnzones.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":187,"kind":4194304,"name":"TextQuery","url":"classes/cdn.cdnzones.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":188,"kind":4194304,"name":"Range2Filter","url":"classes/cdn.cdnzones.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":189,"kind":4194304,"name":"BoolQuery","url":"classes/cdn.cdnzones.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":190,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/cdn.cdnzones.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":191,"kind":4194304,"name":"NestedQuery","url":"classes/cdn.cdnzones.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":192,"kind":4194304,"name":"Filter","url":"classes/cdn.cdnzones.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":193,"kind":4194304,"name":"Sort","url":"classes/cdn.cdnzones.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":194,"kind":4194304,"name":"RangeFilter","url":"classes/cdn.cdnzones.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":195,"kind":4194304,"name":"SearchRequestBase","url":"classes/cdn.cdnzones.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":196,"kind":4194304,"name":"MoneyMnemonic","url":"classes/cdn.cdnzones.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":197,"kind":4194304,"name":"L10nString","url":"classes/cdn.cdnzones.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":198,"kind":4194304,"name":"AttributeDefinition","url":"classes/cdn.cdnzones.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":199,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.AttributeDefinition"},{"id":200,"kind":32,"name":"defaultValue","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":201,"kind":32,"name":"id","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":202,"kind":32,"name":"name","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":203,"kind":32,"name":"description","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":204,"kind":32,"name":"key","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":205,"kind":32,"name":"localizable","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":206,"kind":32,"name":"mandatory","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":207,"kind":32,"name":"max","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":208,"kind":32,"name":"minLength","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":209,"kind":32,"name":"min","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":210,"kind":32,"name":"multiValueType","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":211,"kind":32,"name":"regularExpression","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":212,"kind":32,"name":"scale","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":213,"kind":32,"name":"searchable","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":214,"kind":32,"name":"siteSpecific","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":215,"kind":32,"name":"system","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":216,"kind":32,"name":"unit","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":217,"kind":32,"name":"possibleValues","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":218,"kind":32,"name":"type","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":219,"kind":32,"name":"visible","url":"classes/cdn.cdnzones.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.AttributeDefinition.__type"},{"id":220,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/cdn.cdnzones.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"cdn.CdnZones"},{"id":221,"kind":65536,"name":"__type","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"cdn.CdnZones.PropertyValueDefinition"},{"id":222,"kind":32,"name":"description","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":223,"kind":32,"name":"displayValue","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":224,"kind":32,"name":"id","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":225,"kind":32,"name":"position","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":226,"kind":32,"name":"value","url":"classes/cdn.cdnzones.html#propertyvaluedefinition.__type-7.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"cdn.CdnZones.PropertyValueDefinition.__type"},{"id":227,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/cdn.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"cdn"},{"id":228,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/cdn.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"cdn"},{"id":229,"kind":1,"name":"checkout","url":"modules/checkout.html","classes":"tsd-kind-module"},{"id":230,"kind":128,"name":"Orders","url":"classes/checkout.orders.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"checkout"},{"id":231,"kind":512,"name":"constructor","url":"classes/checkout.orders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"checkout.Orders"},{"id":232,"kind":2048,"name":"getOrders","url":"classes/checkout.orders.html#getorders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":233,"kind":2048,"name":"createOrders","url":"classes/checkout.orders.html#createorders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":234,"kind":2048,"name":"getOrder","url":"classes/checkout.orders.html#getorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":235,"kind":2048,"name":"updateOrder","url":"classes/checkout.orders.html#updateorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":236,"kind":2048,"name":"updateOrderConfirmationStatus","url":"classes/checkout.orders.html#updateorderconfirmationstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":237,"kind":2048,"name":"updateOrderExportStatus","url":"classes/checkout.orders.html#updateorderexportstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":238,"kind":2048,"name":"updateOrderExternalStatus","url":"classes/checkout.orders.html#updateorderexternalstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":239,"kind":2048,"name":"updateOrderPaymentStatus","url":"classes/checkout.orders.html#updateorderpaymentstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":240,"kind":2048,"name":"updateOrderShippingStatus","url":"classes/checkout.orders.html#updateordershippingstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":241,"kind":2048,"name":"updateOrderStatus","url":"classes/checkout.orders.html#updateorderstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":242,"kind":2048,"name":"updateOrderPaymentInstrument","url":"classes/checkout.orders.html#updateorderpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":243,"kind":2048,"name":"updateOrderPaymentTransaction","url":"classes/checkout.orders.html#updateorderpaymenttransaction","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":244,"kind":2048,"name":"updateOrderShippingAddress","url":"classes/checkout.orders.html#updateordershippingaddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.Orders"},{"id":245,"kind":1024,"name":"clientConfig","url":"classes/checkout.orders.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"checkout.Orders"},{"id":246,"kind":4194304,"name":"ErrorResponse","url":"classes/checkout.orders.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":247,"kind":4194304,"name":"SiteNotFound","url":"classes/checkout.orders.html#sitenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":248,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#sitenotfound.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.SiteNotFound"},{"id":249,"kind":4194304,"name":"OrderNotFound","url":"classes/checkout.orders.html#ordernotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":250,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordernotfound.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderNotFound"},{"id":251,"kind":4194304,"name":"StatusTransitionConflict","url":"classes/checkout.orders.html#statustransitionconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":252,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#statustransitionconflict.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.StatusTransitionConflict"},{"id":253,"kind":4194304,"name":"CancelOrderConflict","url":"classes/checkout.orders.html#cancelorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":254,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#cancelorderconflict.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CancelOrderConflict"},{"id":255,"kind":4194304,"name":"BadRequest","url":"classes/checkout.orders.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":256,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#badrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.BadRequest"},{"id":257,"kind":4194304,"name":"OrderCreated","url":"classes/checkout.orders.html#ordercreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":258,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordercreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderCreated"},{"id":259,"kind":4194304,"name":"ShipmentNotFound","url":"classes/checkout.orders.html#shipmentnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":260,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#shipmentnotfound.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ShipmentNotFound"},{"id":261,"kind":4194304,"name":"InvalidTaxTotal","url":"classes/checkout.orders.html#invalidtaxtotal","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":262,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#invalidtaxtotal.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.InvalidTaxTotal"},{"id":263,"kind":4194304,"name":"PaymentInstrumentNotFound","url":"classes/checkout.orders.html#paymentinstrumentnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":264,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#paymentinstrumentnotfound.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PaymentInstrumentNotFound"},{"id":265,"kind":4194304,"name":"UndoCancelOrderConflict","url":"classes/checkout.orders.html#undocancelorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":266,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#undocancelorderconflict.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.UndoCancelOrderConflict"},{"id":267,"kind":4194304,"name":"InvalidOrderTotal","url":"classes/checkout.orders.html#invalidordertotal","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":268,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#invalidordertotal.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.InvalidOrderTotal"},{"id":269,"kind":4194304,"name":"PlaceOrderConflict","url":"classes/checkout.orders.html#placeorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":270,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#placeorderconflict.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PlaceOrderConflict"},{"id":271,"kind":4194304,"name":"InvalidCurrency","url":"classes/checkout.orders.html#invalidcurrency","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":272,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#invalidcurrency.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.InvalidCurrency"},{"id":273,"kind":4194304,"name":"BasketReopen","url":"classes/checkout.orders.html#basketreopen","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":274,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#basketreopen.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.BasketReopen"},{"id":275,"kind":4194304,"name":"NoContent","url":"classes/checkout.orders.html#nocontent","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":276,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#nocontent.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.NoContent"},{"id":277,"kind":4194304,"name":"UndoFailOrderConflict","url":"classes/checkout.orders.html#undofailorderconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":278,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#undofailorderconflict.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.UndoFailOrderConflict"},{"id":279,"kind":4194304,"name":"PaymentTransactionUpdateRequest","url":"classes/checkout.orders.html#paymenttransactionupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":280,"kind":4194304,"name":"PaymentInstrumentUpdateRequest","url":"classes/checkout.orders.html#paymentinstrumentupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":281,"kind":4194304,"name":"OrderPaymentStatusUpdateRequest","url":"classes/checkout.orders.html#orderpaymentstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":282,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderpaymentstatusupdaterequest.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderPaymentStatusUpdateRequest"},{"id":283,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderpaymentstatusupdaterequest.__type-29.status-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderPaymentStatusUpdateRequest.__type"},{"id":284,"kind":4194304,"name":"PaymentCard","url":"classes/checkout.orders.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":285,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#paymentcard.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PaymentCard"},{"id":286,"kind":32,"name":"cardType","url":"classes/checkout.orders.html#paymentcard.__type-33.cardtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":287,"kind":32,"name":"creditCardExpired","url":"classes/checkout.orders.html#paymentcard.__type-33.creditcardexpired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":288,"kind":32,"name":"creditCardToken","url":"classes/checkout.orders.html#paymentcard.__type-33.creditcardtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":289,"kind":32,"name":"expirationMonth","url":"classes/checkout.orders.html#paymentcard.__type-33.expirationmonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":290,"kind":32,"name":"expirationYear","url":"classes/checkout.orders.html#paymentcard.__type-33.expirationyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":291,"kind":32,"name":"holder","url":"classes/checkout.orders.html#paymentcard.__type-33.holder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":292,"kind":32,"name":"issueNumber","url":"classes/checkout.orders.html#paymentcard.__type-33.issuenumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":293,"kind":32,"name":"maskedNumber","url":"classes/checkout.orders.html#paymentcard.__type-33.maskednumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":294,"kind":32,"name":"numberLastDigits","url":"classes/checkout.orders.html#paymentcard.__type-33.numberlastdigits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":295,"kind":32,"name":"validFromMonth","url":"classes/checkout.orders.html#paymentcard.__type-33.validfrommonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":296,"kind":32,"name":"validFromYear","url":"classes/checkout.orders.html#paymentcard.__type-33.validfromyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PaymentCard.__type"},{"id":297,"kind":4194304,"name":"ShippingItem","url":"classes/checkout.orders.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":298,"kind":4194304,"name":"Discount","url":"classes/checkout.orders.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":299,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#discount.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.Discount"},{"id":300,"kind":32,"name":"amount","url":"classes/checkout.orders.html#discount.__type-12.amount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":301,"kind":32,"name":"percentage","url":"classes/checkout.orders.html#discount.__type-12.percentage","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":302,"kind":32,"name":"priceBookId","url":"classes/checkout.orders.html#discount.__type-12.pricebookid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":303,"kind":32,"name":"type","url":"classes/checkout.orders.html#discount.__type-12.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Discount.__type"},{"id":304,"kind":4194304,"name":"OrderConfirmationStatusUpdateRequest","url":"classes/checkout.orders.html#orderconfirmationstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":305,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderconfirmationstatusupdaterequest.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderConfirmationStatusUpdateRequest"},{"id":306,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderconfirmationstatusupdaterequest.__type-23.status","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderConfirmationStatusUpdateRequest.__type"},{"id":307,"kind":4194304,"name":"Address","url":"classes/checkout.orders.html#address","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":308,"kind":4194304,"name":"CouponItem","url":"classes/checkout.orders.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":309,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#couponitem.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CouponItem"},{"id":310,"kind":32,"name":"code","url":"classes/checkout.orders.html#couponitem.__type-6.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":311,"kind":32,"name":"couponItemId","url":"classes/checkout.orders.html#couponitem.__type-6.couponitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":312,"kind":32,"name":"statusCode","url":"classes/checkout.orders.html#couponitem.__type-6.statuscode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":313,"kind":32,"name":"valid","url":"classes/checkout.orders.html#couponitem.__type-6.valid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CouponItem.__type"},{"id":314,"kind":4194304,"name":"OrdersResponse","url":"classes/checkout.orders.html#ordersresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":315,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordersresponse.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrdersResponse"},{"id":316,"kind":32,"name":"data","url":"classes/checkout.orders.html#ordersresponse.__type-32.data","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrdersResponse.__type"},{"id":317,"kind":4194304,"name":"ShippingMethodReference","url":"classes/checkout.orders.html#shippingmethodreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":318,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#shippingmethodreference.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ShippingMethodReference"},{"id":319,"kind":32,"name":"id","url":"classes/checkout.orders.html#shippingmethodreference.__type-49.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ShippingMethodReference.__type"},{"id":320,"kind":4194304,"name":"ProductItem","url":"classes/checkout.orders.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":321,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/checkout.orders.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":322,"kind":4194304,"name":"ShippingAddressUpdateRequest","url":"classes/checkout.orders.html#shippingaddressupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":323,"kind":4194304,"name":"Shipment","url":"classes/checkout.orders.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":324,"kind":4194304,"name":"CustomerInfo","url":"classes/checkout.orders.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":325,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#customerinfo.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CustomerInfo"},{"id":326,"kind":32,"name":"customerId","url":"classes/checkout.orders.html#customerinfo.__type-8.customerid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":327,"kind":32,"name":"customerName","url":"classes/checkout.orders.html#customerinfo.__type-8.customername","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":328,"kind":32,"name":"customerNo","url":"classes/checkout.orders.html#customerinfo.__type-8.customerno","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":329,"kind":32,"name":"email","url":"classes/checkout.orders.html#customerinfo.__type-8.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":330,"kind":32,"name":"guest","url":"classes/checkout.orders.html#customerinfo.__type-8.guest","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CustomerInfo.__type"},{"id":331,"kind":4194304,"name":"PriceAdjustment","url":"classes/checkout.orders.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":332,"kind":4194304,"name":"OrderExternalStatusUpdateRequest","url":"classes/checkout.orders.html#orderexternalstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":333,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderexternalstatusupdaterequest.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderExternalStatusUpdateRequest"},{"id":334,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderexternalstatusupdaterequest.__type-26.status-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderExternalStatusUpdateRequest.__type"},{"id":335,"kind":4194304,"name":"OptionItem","url":"classes/checkout.orders.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":336,"kind":4194304,"name":"CreateOrderPaymentInstrument","url":"classes/checkout.orders.html#createorderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":337,"kind":4194304,"name":"OrderShippingStatusUpdateRequest","url":"classes/checkout.orders.html#ordershippingstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":338,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordershippingstatusupdaterequest.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderShippingStatusUpdateRequest"},{"id":339,"kind":32,"name":"status","url":"classes/checkout.orders.html#ordershippingstatusupdaterequest.__type-30.status-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderShippingStatusUpdateRequest.__type"},{"id":340,"kind":4194304,"name":"OrderUpdateRequest","url":"classes/checkout.orders.html#orderupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":341,"kind":4194304,"name":"ABTestSegment","url":"classes/checkout.orders.html#abtestsegment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":342,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#abtestsegment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ABTestSegment"},{"id":343,"kind":32,"name":"testId","url":"classes/checkout.orders.html#abtestsegment.__type.testid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ABTestSegment.__type"},{"id":344,"kind":32,"name":"segmentId","url":"classes/checkout.orders.html#abtestsegment.__type.segmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ABTestSegment.__type"},{"id":345,"kind":4194304,"name":"CreateOrderPriceAdjustment","url":"classes/checkout.orders.html#createorderpriceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":346,"kind":4194304,"name":"OrderNote","url":"classes/checkout.orders.html#ordernote","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":347,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ordernote.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderNote"},{"id":348,"kind":32,"name":"createdBy","url":"classes/checkout.orders.html#ordernote.__type-28.createdby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":349,"kind":32,"name":"creationDate","url":"classes/checkout.orders.html#ordernote.__type-28.creationdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":350,"kind":32,"name":"subject","url":"classes/checkout.orders.html#ordernote.__type-28.subject","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":351,"kind":32,"name":"text","url":"classes/checkout.orders.html#ordernote.__type-28.text","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderNote.__type"},{"id":352,"kind":4194304,"name":"PaymentInstrument","url":"classes/checkout.orders.html#paymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":353,"kind":4194304,"name":"OrderExportStatusUpdateRequest","url":"classes/checkout.orders.html#orderexportstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":354,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderexportstatusupdaterequest.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderExportStatusUpdateRequest"},{"id":355,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderexportstatusupdaterequest.__type-25.status-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderExportStatusUpdateRequest.__type"},{"id":356,"kind":4194304,"name":"OrderStatusUpdateRequest","url":"classes/checkout.orders.html#orderstatusupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":357,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#orderstatusupdaterequest.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OrderStatusUpdateRequest"},{"id":358,"kind":32,"name":"status","url":"classes/checkout.orders.html#orderstatusupdaterequest.__type-31.status-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.OrderStatusUpdateRequest.__type"},{"id":359,"kind":4194304,"name":"CreateOrderPaymentTransaction","url":"classes/checkout.orders.html#createorderpaymenttransaction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":360,"kind":4194304,"name":"CreateOrderProductItems","url":"classes/checkout.orders.html#createorderproductitems","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":361,"kind":4194304,"name":"ProductReference","url":"classes/checkout.orders.html#productreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":362,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#productreference.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ProductReference"},{"id":363,"kind":32,"name":"productId","url":"classes/checkout.orders.html#productreference.__type-38.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductReference.__type"},{"id":364,"kind":32,"name":"productName","url":"classes/checkout.orders.html#productreference.__type-38.productname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductReference.__type"},{"id":365,"kind":4194304,"name":"CreateOrderShipment","url":"classes/checkout.orders.html#createordershipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":366,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#createordershipment.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.CreateOrderShipment"},{"id":367,"kind":32,"name":"shipmentId","url":"classes/checkout.orders.html#createordershipment.__type-7.shipmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":368,"kind":32,"name":"shippingMethod","url":"classes/checkout.orders.html#createordershipment.__type-7.shippingmethod","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":369,"kind":32,"name":"shippingAddress","url":"classes/checkout.orders.html#createordershipment.__type-7.shippingaddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":370,"kind":32,"name":"shippingTotal","url":"classes/checkout.orders.html#createordershipment.__type-7.shippingtotal","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":371,"kind":32,"name":"taxTotal","url":"classes/checkout.orders.html#createordershipment.__type-7.taxtotal","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.CreateOrderShipment.__type"},{"id":372,"kind":4194304,"name":"GiftCertificateItem","url":"classes/checkout.orders.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":373,"kind":4194304,"name":"PaymentTransaction","url":"classes/checkout.orders.html#paymenttransaction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":374,"kind":4194304,"name":"Order","url":"classes/checkout.orders.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":375,"kind":4194304,"name":"CreateOrderRequest","url":"classes/checkout.orders.html#createorderrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":376,"kind":4194304,"name":"ProductListReference","url":"classes/checkout.orders.html#productlistreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":377,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#productlistreference.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ProductListReference"},{"id":378,"kind":32,"name":"description","url":"classes/checkout.orders.html#productlistreference.__type-37.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":379,"kind":32,"name":"name","url":"classes/checkout.orders.html#productlistreference.__type-37.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":380,"kind":32,"name":"public","url":"classes/checkout.orders.html#productlistreference.__type-37.public-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":381,"kind":32,"name":"type","url":"classes/checkout.orders.html#productlistreference.__type-37.type-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListReference.__type"},{"id":382,"kind":4194304,"name":"CreateOrderOptionItem","url":"classes/checkout.orders.html#createorderoptionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":383,"kind":4194304,"name":"Status","url":"classes/checkout.orders.html#status-6","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":384,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#status-6.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.Status"},{"id":385,"kind":32,"name":"code","url":"classes/checkout.orders.html#status-6.__type-52.code-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Status.__type"},{"id":386,"kind":32,"name":"message","url":"classes/checkout.orders.html#status-6.__type-52.message","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Status.__type"},{"id":387,"kind":32,"name":"status","url":"classes/checkout.orders.html#status-6.__type-52.status-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.Status.__type"},{"id":388,"kind":4194304,"name":"ProductListItemReference","url":"classes/checkout.orders.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":389,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#productlistitemreference.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.ProductListItemReference"},{"id":390,"kind":32,"name":"id","url":"classes/checkout.orders.html#productlistitemreference.__type-36.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":391,"kind":32,"name":"priority","url":"classes/checkout.orders.html#productlistitemreference.__type-36.priority","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":392,"kind":32,"name":"product","url":"classes/checkout.orders.html#productlistitemreference.__type-36.product","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":393,"kind":32,"name":"productList","url":"classes/checkout.orders.html#productlistitemreference.__type-36.productlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":394,"kind":32,"name":"public","url":"classes/checkout.orders.html#productlistitemreference.__type-36.public","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":395,"kind":32,"name":"purchasedQuantity","url":"classes/checkout.orders.html#productlistitemreference.__type-36.purchasedquantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":396,"kind":32,"name":"quantity","url":"classes/checkout.orders.html#productlistitemreference.__type-36.quantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":397,"kind":32,"name":"type","url":"classes/checkout.orders.html#productlistitemreference.__type-36.type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.ProductListItemReference.__type"},{"id":398,"kind":4194304,"name":"Money","url":"classes/checkout.orders.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":399,"kind":4194304,"name":"SimpleSearchResult","url":"classes/checkout.orders.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":400,"kind":4194304,"name":"SearchRequest","url":"classes/checkout.orders.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":401,"kind":4194304,"name":"PropertyDefinition","url":"classes/checkout.orders.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":402,"kind":4194304,"name":"LocalizedString","url":"classes/checkout.orders.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":403,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/checkout.orders.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":404,"kind":4194304,"name":"ClosedObject","url":"classes/checkout.orders.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":405,"kind":4194304,"name":"OpenObject","url":"classes/checkout.orders.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":406,"kind":4194304,"name":"QueryParamsLimit","url":"classes/checkout.orders.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":407,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#queryparamslimit.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.QueryParamsLimit"},{"id":408,"kind":4194304,"name":"QueryParamsOffset","url":"classes/checkout.orders.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":409,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#queryparamsoffset.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.QueryParamsOffset"},{"id":410,"kind":4194304,"name":"SiteSpecific","url":"classes/checkout.orders.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":411,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#sitespecific-1.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.SiteSpecific"},{"id":412,"kind":4194304,"name":"Selectable","url":"classes/checkout.orders.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":413,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#selectable.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.Selectable"},{"id":414,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/checkout.orders.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":415,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#nopropertiesallowed.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.NoPropertiesAllowed"},{"id":416,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/checkout.orders.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":417,"kind":4194304,"name":"BoolFilter","url":"classes/checkout.orders.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":418,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/checkout.orders.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":419,"kind":4194304,"name":"MatchAllQuery","url":"classes/checkout.orders.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":420,"kind":4194304,"name":"FilteredQuery","url":"classes/checkout.orders.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":421,"kind":4194304,"name":"QueryFilter","url":"classes/checkout.orders.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":422,"kind":4194304,"name":"Query","url":"classes/checkout.orders.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":423,"kind":4194304,"name":"TermQuery","url":"classes/checkout.orders.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":424,"kind":4194304,"name":"TermFilter","url":"classes/checkout.orders.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":425,"kind":4194304,"name":"TextQuery","url":"classes/checkout.orders.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":426,"kind":4194304,"name":"Range2Filter","url":"classes/checkout.orders.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":427,"kind":4194304,"name":"BoolQuery","url":"classes/checkout.orders.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":428,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/checkout.orders.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":429,"kind":4194304,"name":"NestedQuery","url":"classes/checkout.orders.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":430,"kind":4194304,"name":"Filter","url":"classes/checkout.orders.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":431,"kind":4194304,"name":"Sort","url":"classes/checkout.orders.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":432,"kind":4194304,"name":"RangeFilter","url":"classes/checkout.orders.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":433,"kind":4194304,"name":"SearchRequestBase","url":"classes/checkout.orders.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":434,"kind":4194304,"name":"MoneyMnemonic","url":"classes/checkout.orders.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":435,"kind":4194304,"name":"L10nString","url":"classes/checkout.orders.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":436,"kind":4194304,"name":"AttributeDefinition","url":"classes/checkout.orders.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":437,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#attributedefinition.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.AttributeDefinition"},{"id":438,"kind":32,"name":"defaultValue","url":"classes/checkout.orders.html#attributedefinition.__type-2.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":439,"kind":32,"name":"id","url":"classes/checkout.orders.html#attributedefinition.__type-2.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":440,"kind":32,"name":"name","url":"classes/checkout.orders.html#attributedefinition.__type-2.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":441,"kind":32,"name":"description","url":"classes/checkout.orders.html#attributedefinition.__type-2.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":442,"kind":32,"name":"key","url":"classes/checkout.orders.html#attributedefinition.__type-2.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":443,"kind":32,"name":"localizable","url":"classes/checkout.orders.html#attributedefinition.__type-2.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":444,"kind":32,"name":"mandatory","url":"classes/checkout.orders.html#attributedefinition.__type-2.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":445,"kind":32,"name":"max","url":"classes/checkout.orders.html#attributedefinition.__type-2.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":446,"kind":32,"name":"minLength","url":"classes/checkout.orders.html#attributedefinition.__type-2.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":447,"kind":32,"name":"min","url":"classes/checkout.orders.html#attributedefinition.__type-2.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":448,"kind":32,"name":"multiValueType","url":"classes/checkout.orders.html#attributedefinition.__type-2.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":449,"kind":32,"name":"regularExpression","url":"classes/checkout.orders.html#attributedefinition.__type-2.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":450,"kind":32,"name":"scale","url":"classes/checkout.orders.html#attributedefinition.__type-2.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":451,"kind":32,"name":"searchable","url":"classes/checkout.orders.html#attributedefinition.__type-2.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":452,"kind":32,"name":"siteSpecific","url":"classes/checkout.orders.html#attributedefinition.__type-2.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":453,"kind":32,"name":"system","url":"classes/checkout.orders.html#attributedefinition.__type-2.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":454,"kind":32,"name":"unit","url":"classes/checkout.orders.html#attributedefinition.__type-2.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":455,"kind":32,"name":"possibleValues","url":"classes/checkout.orders.html#attributedefinition.__type-2.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":456,"kind":32,"name":"type","url":"classes/checkout.orders.html#attributedefinition.__type-2.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":457,"kind":32,"name":"visible","url":"classes/checkout.orders.html#attributedefinition.__type-2.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.AttributeDefinition.__type"},{"id":458,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/checkout.orders.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":459,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.PropertyValueDefinition"},{"id":460,"kind":32,"name":"description","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.description-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":461,"kind":32,"name":"displayValue","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":462,"kind":32,"name":"id","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":463,"kind":32,"name":"position","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":464,"kind":32,"name":"value","url":"classes/checkout.orders.html#propertyvaluedefinition.__type-39.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.Orders.PropertyValueDefinition.__type"},{"id":465,"kind":4194304,"name":"ChangeControlled","url":"classes/checkout.orders.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":466,"kind":4194304,"name":"DateRangeFilter","url":"classes/checkout.orders.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":467,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#daterangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.DateRangeFilter"},{"id":468,"kind":4194304,"name":"EtagResponse","url":"classes/checkout.orders.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":469,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#etagresponse.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.EtagResponse"},{"id":470,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/checkout.orders.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":471,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#integerrangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.IntegerRangeFilter"},{"id":472,"kind":4194304,"name":"RateLimited3","url":"classes/checkout.orders.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":473,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited3.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited3"},{"id":474,"kind":4194304,"name":"SyncCreated","url":"classes/checkout.orders.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":475,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#synccreated.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.SyncCreated"},{"id":476,"kind":4194304,"name":"DateConditionalRequest","url":"classes/checkout.orders.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":477,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#dateconditionalrequest.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.DateConditionalRequest"},{"id":478,"kind":4194304,"name":"RateLimited5","url":"classes/checkout.orders.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":479,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited5.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited5"},{"id":480,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/checkout.orders.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":481,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#etagconditionalrequest.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.EtagConditionalRequest"},{"id":482,"kind":4194304,"name":"AsyncCreated","url":"classes/checkout.orders.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":483,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#asynccreated.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.AsyncCreated"},{"id":484,"kind":4194304,"name":"RateLimited","url":"classes/checkout.orders.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":485,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited"},{"id":486,"kind":4194304,"name":"RateLimited2","url":"classes/checkout.orders.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":487,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited2"},{"id":488,"kind":4194304,"name":"OffsetPaginated","url":"classes/checkout.orders.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":489,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#offsetpaginated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.OffsetPaginated"},{"id":490,"kind":4194304,"name":"RateLimited4","url":"classes/checkout.orders.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":491,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#ratelimited4.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.RateLimited4"},{"id":492,"kind":4194304,"name":"NumericRangeFilter","url":"classes/checkout.orders.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":493,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#numericrangefilter.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.NumericRangeFilter"},{"id":494,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/checkout.orders.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":495,"kind":65536,"name":"__type","url":"classes/checkout.orders.html#datetimerangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.Orders.DatetimeRangeFilter"},{"id":496,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/checkout.orders.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":497,"kind":4194304,"name":"Error","url":"classes/checkout.orders.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.Orders"},{"id":498,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/checkout.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":499,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/checkout.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":500,"kind":128,"name":"ShopperBaskets","url":"classes/checkout.shopperbaskets.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"checkout"},{"id":501,"kind":512,"name":"constructor","url":"classes/checkout.shopperbaskets.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"checkout.ShopperBaskets"},{"id":502,"kind":2048,"name":"createBasket","url":"classes/checkout.shopperbaskets.html#createbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":503,"kind":2048,"name":"transferBasket","url":"classes/checkout.shopperbaskets.html#transferbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":504,"kind":2048,"name":"mergeBasket","url":"classes/checkout.shopperbaskets.html#mergebasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":505,"kind":2048,"name":"deleteBasket","url":"classes/checkout.shopperbaskets.html#deletebasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":506,"kind":2048,"name":"getBasket","url":"classes/checkout.shopperbaskets.html#getbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":507,"kind":2048,"name":"updateBasket","url":"classes/checkout.shopperbaskets.html#updatebasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":508,"kind":2048,"name":"updateAsAgentBasket","url":"classes/checkout.shopperbaskets.html#updateasagentbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":509,"kind":2048,"name":"updateBillingAddressForBasket","url":"classes/checkout.shopperbaskets.html#updatebillingaddressforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":510,"kind":2048,"name":"addCouponToBasket","url":"classes/checkout.shopperbaskets.html#addcoupontobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":511,"kind":2048,"name":"removeCouponFromBasket","url":"classes/checkout.shopperbaskets.html#removecouponfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":512,"kind":2048,"name":"updateCustomerForBasket","url":"classes/checkout.shopperbaskets.html#updatecustomerforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":513,"kind":2048,"name":"addGiftCertificateItemToBasket","url":"classes/checkout.shopperbaskets.html#addgiftcertificateitemtobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":514,"kind":2048,"name":"removeGiftCertificateItemFromBasket","url":"classes/checkout.shopperbaskets.html#removegiftcertificateitemfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":515,"kind":2048,"name":"updateGiftCertificateItemInBasket","url":"classes/checkout.shopperbaskets.html#updategiftcertificateiteminbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":516,"kind":2048,"name":"addItemToBasket","url":"classes/checkout.shopperbaskets.html#additemtobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":517,"kind":2048,"name":"updateItemsInBasket","url":"classes/checkout.shopperbaskets.html#updateitemsinbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":518,"kind":2048,"name":"removeItemFromBasket","url":"classes/checkout.shopperbaskets.html#removeitemfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":519,"kind":2048,"name":"updateItemInBasket","url":"classes/checkout.shopperbaskets.html#updateiteminbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":520,"kind":2048,"name":"addTaxesForBasketItem","url":"classes/checkout.shopperbaskets.html#addtaxesforbasketitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":521,"kind":2048,"name":"addPaymentInstrumentToBasket","url":"classes/checkout.shopperbaskets.html#addpaymentinstrumenttobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":522,"kind":2048,"name":"removePaymentInstrumentFromBasket","url":"classes/checkout.shopperbaskets.html#removepaymentinstrumentfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":523,"kind":2048,"name":"updatePaymentInstrumentInBasket","url":"classes/checkout.shopperbaskets.html#updatepaymentinstrumentinbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":524,"kind":2048,"name":"getPaymentMethodsForBasket","url":"classes/checkout.shopperbaskets.html#getpaymentmethodsforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":525,"kind":2048,"name":"addPriceAdjustmentToBasket","url":"classes/checkout.shopperbaskets.html#addpriceadjustmenttobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":526,"kind":2048,"name":"removePriceAdjustmentFromBasket","url":"classes/checkout.shopperbaskets.html#removepriceadjustmentfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":527,"kind":2048,"name":"updatePriceAdjustmentInBasket","url":"classes/checkout.shopperbaskets.html#updatepriceadjustmentinbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":528,"kind":2048,"name":"getPriceBooksForBasket","url":"classes/checkout.shopperbaskets.html#getpricebooksforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":529,"kind":2048,"name":"addPriceBooksToBasket","url":"classes/checkout.shopperbaskets.html#addpricebookstobasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":530,"kind":2048,"name":"createShipmentForBasket","url":"classes/checkout.shopperbaskets.html#createshipmentforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":531,"kind":2048,"name":"removeShipmentFromBasket","url":"classes/checkout.shopperbaskets.html#removeshipmentfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":532,"kind":2048,"name":"updateShipmentForBasket","url":"classes/checkout.shopperbaskets.html#updateshipmentforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":533,"kind":2048,"name":"updateShippingAddressForShipment","url":"classes/checkout.shopperbaskets.html#updateshippingaddressforshipment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":534,"kind":2048,"name":"updateShippingMethodForShipment","url":"classes/checkout.shopperbaskets.html#updateshippingmethodforshipment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":535,"kind":2048,"name":"getShippingMethodsForShipment","url":"classes/checkout.shopperbaskets.html#getshippingmethodsforshipment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":536,"kind":2048,"name":"updateAsStorefrontBasket","url":"classes/checkout.shopperbaskets.html#updateasstorefrontbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":537,"kind":2048,"name":"getTaxesFromBasket","url":"classes/checkout.shopperbaskets.html#gettaxesfrombasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":538,"kind":2048,"name":"addTaxesForBasket","url":"classes/checkout.shopperbaskets.html#addtaxesforbasket","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperBaskets"},{"id":539,"kind":1024,"name":"clientConfig","url":"classes/checkout.shopperbaskets.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"checkout.ShopperBaskets"},{"id":540,"kind":4194304,"name":"ErrorResponse","url":"classes/checkout.shopperbaskets.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":541,"kind":4194304,"name":"LocaleSpecific","url":"classes/checkout.shopperbaskets.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":542,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#localespecific.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.LocaleSpecific"},{"id":543,"kind":4194304,"name":"Money","url":"classes/checkout.shopperbaskets.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":544,"kind":4194304,"name":"SimpleSearchResult","url":"classes/checkout.shopperbaskets.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":545,"kind":4194304,"name":"SearchRequest","url":"classes/checkout.shopperbaskets.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":546,"kind":4194304,"name":"PropertyDefinition","url":"classes/checkout.shopperbaskets.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":547,"kind":4194304,"name":"LocalizedString","url":"classes/checkout.shopperbaskets.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":548,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/checkout.shopperbaskets.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":549,"kind":4194304,"name":"ClosedObject","url":"classes/checkout.shopperbaskets.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":550,"kind":4194304,"name":"OpenObject","url":"classes/checkout.shopperbaskets.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":551,"kind":4194304,"name":"QueryParamsLimit","url":"classes/checkout.shopperbaskets.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":552,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#queryparamslimit.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.QueryParamsLimit"},{"id":553,"kind":4194304,"name":"QueryParamsOffset","url":"classes/checkout.shopperbaskets.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":554,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#queryparamsoffset.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.QueryParamsOffset"},{"id":555,"kind":4194304,"name":"SiteSpecific","url":"classes/checkout.shopperbaskets.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":556,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#sitespecific-1.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.SiteSpecific"},{"id":557,"kind":4194304,"name":"Selectable","url":"classes/checkout.shopperbaskets.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":558,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#selectable.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Selectable"},{"id":559,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/checkout.shopperbaskets.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":560,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.NoPropertiesAllowed"},{"id":561,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/checkout.shopperbaskets.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":562,"kind":4194304,"name":"BoolFilter","url":"classes/checkout.shopperbaskets.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":563,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/checkout.shopperbaskets.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":564,"kind":4194304,"name":"MatchAllQuery","url":"classes/checkout.shopperbaskets.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":565,"kind":4194304,"name":"FilteredQuery","url":"classes/checkout.shopperbaskets.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":566,"kind":4194304,"name":"QueryFilter","url":"classes/checkout.shopperbaskets.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":567,"kind":4194304,"name":"Query","url":"classes/checkout.shopperbaskets.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":568,"kind":4194304,"name":"TermQuery","url":"classes/checkout.shopperbaskets.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":569,"kind":4194304,"name":"TermFilter","url":"classes/checkout.shopperbaskets.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":570,"kind":4194304,"name":"TextQuery","url":"classes/checkout.shopperbaskets.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":571,"kind":4194304,"name":"Range2Filter","url":"classes/checkout.shopperbaskets.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":572,"kind":4194304,"name":"BoolQuery","url":"classes/checkout.shopperbaskets.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":573,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/checkout.shopperbaskets.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":574,"kind":4194304,"name":"NestedQuery","url":"classes/checkout.shopperbaskets.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":575,"kind":4194304,"name":"Filter","url":"classes/checkout.shopperbaskets.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":576,"kind":4194304,"name":"Sort","url":"classes/checkout.shopperbaskets.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":577,"kind":4194304,"name":"RangeFilter","url":"classes/checkout.shopperbaskets.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":578,"kind":4194304,"name":"SearchRequestBase","url":"classes/checkout.shopperbaskets.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":579,"kind":4194304,"name":"MoneyMnemonic","url":"classes/checkout.shopperbaskets.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":580,"kind":4194304,"name":"L10nString","url":"classes/checkout.shopperbaskets.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":581,"kind":4194304,"name":"AttributeDefinition","url":"classes/checkout.shopperbaskets.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":582,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.AttributeDefinition"},{"id":583,"kind":32,"name":"defaultValue","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":584,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":585,"kind":32,"name":"name","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":586,"kind":32,"name":"description","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":587,"kind":32,"name":"key","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":588,"kind":32,"name":"localizable","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":589,"kind":32,"name":"mandatory","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":590,"kind":32,"name":"max","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":591,"kind":32,"name":"minLength","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":592,"kind":32,"name":"min","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":593,"kind":32,"name":"multiValueType","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":594,"kind":32,"name":"regularExpression","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":595,"kind":32,"name":"scale","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":596,"kind":32,"name":"searchable","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":597,"kind":32,"name":"siteSpecific","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":598,"kind":32,"name":"system","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":599,"kind":32,"name":"unit","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":600,"kind":32,"name":"possibleValues","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":601,"kind":32,"name":"type","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":602,"kind":32,"name":"visible","url":"classes/checkout.shopperbaskets.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.AttributeDefinition.__type"},{"id":603,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":604,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.PropertyValueDefinition"},{"id":605,"kind":32,"name":"description","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":606,"kind":32,"name":"displayValue","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":607,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":608,"kind":32,"name":"position","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":609,"kind":32,"name":"value","url":"classes/checkout.shopperbaskets.html#propertyvaluedefinition.__type-21.value-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PropertyValueDefinition.__type"},{"id":610,"kind":4194304,"name":"TaxItems","url":"classes/checkout.shopperbaskets.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":611,"kind":4194304,"name":"PaymentCardSpec","url":"classes/checkout.shopperbaskets.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":612,"kind":4194304,"name":"OrderAddress","url":"classes/checkout.shopperbaskets.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":613,"kind":4194304,"name":"PriceAdjustmentRequest","url":"classes/checkout.shopperbaskets.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":614,"kind":4194304,"name":"PaymentCard","url":"classes/checkout.shopperbaskets.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":615,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.PaymentCard"},{"id":616,"kind":32,"name":"cardType","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.cardtype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":617,"kind":32,"name":"creditCardExpired","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.creditcardexpired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":618,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.creditcardtoken-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":619,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.expirationmonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":620,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.expirationyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":621,"kind":32,"name":"holder","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.holder-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":622,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.issuenumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":623,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.maskednumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":624,"kind":32,"name":"numberLastDigits","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.numberlastdigits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":625,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.validfrommonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":626,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperbaskets.html#paymentcard.__type-17.validfromyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PaymentCard.__type"},{"id":627,"kind":4194304,"name":"NotesResult","url":"classes/checkout.shopperbaskets.html#notesresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":628,"kind":4194304,"name":"ShippingItem","url":"classes/checkout.shopperbaskets.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":629,"kind":4194304,"name":"Discount","url":"classes/checkout.shopperbaskets.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":630,"kind":4194304,"name":"Note","url":"classes/checkout.shopperbaskets.html#note","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":631,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#note.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Note"},{"id":632,"kind":32,"name":"createdBy","url":"classes/checkout.shopperbaskets.html#note.__type-12.createdby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":633,"kind":32,"name":"creationDate","url":"classes/checkout.shopperbaskets.html#note.__type-12.creationdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":634,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#note.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":635,"kind":32,"name":"subject","url":"classes/checkout.shopperbaskets.html#note.__type-12.subject","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":636,"kind":32,"name":"text","url":"classes/checkout.shopperbaskets.html#note.__type-12.text","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Note.__type"},{"id":637,"kind":4194304,"name":"CouponItem","url":"classes/checkout.shopperbaskets.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":638,"kind":4194304,"name":"PromotionLink","url":"classes/checkout.shopperbaskets.html#promotionlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":639,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.PromotionLink"},{"id":640,"kind":32,"name":"calloutMsg","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.calloutmsg","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":641,"kind":32,"name":"name","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":642,"kind":32,"name":"promotionId","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.promotionid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":643,"kind":32,"name":"title","url":"classes/checkout.shopperbaskets.html#promotionlink.__type-20.title-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.PromotionLink.__type"},{"id":644,"kind":4194304,"name":"PriceBookIds","url":"classes/checkout.shopperbaskets.html#pricebookids","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":645,"kind":4194304,"name":"ShippingPromotion","url":"classes/checkout.shopperbaskets.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":646,"kind":4194304,"name":"ProductItem","url":"classes/checkout.shopperbaskets.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":647,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"classes/checkout.shopperbaskets.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":648,"kind":4194304,"name":"Taxes","url":"classes/checkout.shopperbaskets.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":649,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#taxes.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Taxes"},{"id":650,"kind":32,"name":"taxes","url":"classes/checkout.shopperbaskets.html#taxes.__type-35.taxes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Taxes.__type"},{"id":651,"kind":4194304,"name":"OrderPaymentInstrument","url":"classes/checkout.shopperbaskets.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":652,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/checkout.shopperbaskets.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":653,"kind":4194304,"name":"PaymentMethodResult","url":"classes/checkout.shopperbaskets.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":654,"kind":4194304,"name":"Shipment","url":"classes/checkout.shopperbaskets.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":655,"kind":4194304,"name":"CustomerInfo","url":"classes/checkout.shopperbaskets.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":656,"kind":4194304,"name":"SimpleLink","url":"classes/checkout.shopperbaskets.html#simplelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":657,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#simplelink.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.SimpleLink"},{"id":658,"kind":4194304,"name":"PriceAdjustment","url":"classes/checkout.shopperbaskets.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":659,"kind":4194304,"name":"ShippingMethodResult","url":"classes/checkout.shopperbaskets.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":660,"kind":4194304,"name":"ProductDetailsLink","url":"classes/checkout.shopperbaskets.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":661,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.ProductDetailsLink"},{"id":662,"kind":32,"name":"productDescription","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.productdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":663,"kind":32,"name":"productId","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":664,"kind":32,"name":"productName","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.productname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":665,"kind":32,"name":"title","url":"classes/checkout.shopperbaskets.html#productdetailslink.__type-18.title","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductDetailsLink.__type"},{"id":666,"kind":4194304,"name":"OptionItem","url":"classes/checkout.shopperbaskets.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":667,"kind":4194304,"name":"ShippingMethod","url":"classes/checkout.shopperbaskets.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":668,"kind":4194304,"name":"DiscountRequest","url":"classes/checkout.shopperbaskets.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":669,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#discountrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DiscountRequest"},{"id":670,"kind":32,"name":"type","url":"classes/checkout.shopperbaskets.html#discountrequest.__type-5.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.DiscountRequest.__type"},{"id":671,"kind":32,"name":"value","url":"classes/checkout.shopperbaskets.html#discountrequest.__type-5.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.DiscountRequest.__type"},{"id":672,"kind":4194304,"name":"Basket","url":"classes/checkout.shopperbaskets.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":673,"kind":4194304,"name":"OrderLookupRequest","url":"classes/checkout.shopperbaskets.html#orderlookuprequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":674,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#orderlookuprequest.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.OrderLookupRequest"},{"id":675,"kind":32,"name":"email","url":"classes/checkout.shopperbaskets.html#orderlookuprequest.__type-15.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderLookupRequest.__type"},{"id":676,"kind":32,"name":"orderViewCode","url":"classes/checkout.shopperbaskets.html#orderlookuprequest.__type-15.orderviewcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderLookupRequest.__type"},{"id":677,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"classes/checkout.shopperbaskets.html#orderpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":678,"kind":4194304,"name":"GiftCertificateItem","url":"classes/checkout.shopperbaskets.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":679,"kind":4194304,"name":"ProductListLink","url":"classes/checkout.shopperbaskets.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":680,"kind":4194304,"name":"GroupedTaxItem","url":"classes/checkout.shopperbaskets.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":681,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#groupedtaxitem.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.GroupedTaxItem"},{"id":682,"kind":32,"name":"taxRate","url":"classes/checkout.shopperbaskets.html#groupedtaxitem.__type-8.taxrate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.GroupedTaxItem.__type"},{"id":683,"kind":32,"name":"taxValue","url":"classes/checkout.shopperbaskets.html#groupedtaxitem.__type-8.taxvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.GroupedTaxItem.__type"},{"id":684,"kind":4194304,"name":"Order","url":"classes/checkout.shopperbaskets.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":685,"kind":4194304,"name":"OrderPaymentCardRequest","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":686,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest"},{"id":687,"kind":32,"name":"cardType","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.cardtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":688,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.creditcardtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":689,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.expirationmonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":690,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.expirationyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":691,"kind":32,"name":"holder","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.holder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":692,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.issuenumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":693,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.maskednumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":694,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.validfrommonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":695,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperbaskets.html#orderpaymentcardrequest.__type-16.validfromyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.OrderPaymentCardRequest.__type"},{"id":696,"kind":4194304,"name":"PaymentMethod","url":"classes/checkout.shopperbaskets.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":697,"kind":4194304,"name":"TaxItem","url":"classes/checkout.shopperbaskets.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":698,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.TaxItem"},{"id":699,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34.id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.TaxItem.__type"},{"id":700,"kind":32,"name":"rate","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34.rate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.TaxItem.__type"},{"id":701,"kind":32,"name":"value","url":"classes/checkout.shopperbaskets.html#taxitem.__type-34.value-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.TaxItem.__type"},{"id":702,"kind":4194304,"name":"Status","url":"classes/checkout.shopperbaskets.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":703,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#status.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.Status"},{"id":704,"kind":32,"name":"code","url":"classes/checkout.shopperbaskets.html#status.__type-32.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Status.__type"},{"id":705,"kind":32,"name":"message","url":"classes/checkout.shopperbaskets.html#status.__type-32.message","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Status.__type"},{"id":706,"kind":32,"name":"status","url":"classes/checkout.shopperbaskets.html#status.__type-32.status-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.Status.__type"},{"id":707,"kind":4194304,"name":"ProductListItemReference","url":"classes/checkout.shopperbaskets.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":708,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.ProductListItemReference"},{"id":709,"kind":32,"name":"id","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":710,"kind":32,"name":"priority","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.priority","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":711,"kind":32,"name":"productDetailsLink","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.productdetailslink-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":712,"kind":32,"name":"productList","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.productlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":713,"kind":32,"name":"public","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.public","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":714,"kind":32,"name":"purchasedQuantity","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.purchasedquantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":715,"kind":32,"name":"quantity","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.quantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":716,"kind":32,"name":"type","url":"classes/checkout.shopperbaskets.html#productlistitemreference.__type-19.type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperBaskets.ProductListItemReference.__type"},{"id":717,"kind":4194304,"name":"ChangeControlled","url":"classes/checkout.shopperbaskets.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":718,"kind":4194304,"name":"DateRangeFilter","url":"classes/checkout.shopperbaskets.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":719,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DateRangeFilter"},{"id":720,"kind":4194304,"name":"EtagResponse","url":"classes/checkout.shopperbaskets.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":721,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.EtagResponse"},{"id":722,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/checkout.shopperbaskets.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":723,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#integerrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.IntegerRangeFilter"},{"id":724,"kind":4194304,"name":"RateLimited3","url":"classes/checkout.shopperbaskets.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":725,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited3.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited3"},{"id":726,"kind":4194304,"name":"SyncCreated","url":"classes/checkout.shopperbaskets.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":727,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#synccreated.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.SyncCreated"},{"id":728,"kind":4194304,"name":"DateConditionalRequest","url":"classes/checkout.shopperbaskets.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":729,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DateConditionalRequest"},{"id":730,"kind":4194304,"name":"RateLimited5","url":"classes/checkout.shopperbaskets.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":731,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited5.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited5"},{"id":732,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/checkout.shopperbaskets.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":733,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.EtagConditionalRequest"},{"id":734,"kind":4194304,"name":"AsyncCreated","url":"classes/checkout.shopperbaskets.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":735,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.AsyncCreated"},{"id":736,"kind":4194304,"name":"RateLimited","url":"classes/checkout.shopperbaskets.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":737,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited"},{"id":738,"kind":4194304,"name":"RateLimited2","url":"classes/checkout.shopperbaskets.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":739,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited2"},{"id":740,"kind":4194304,"name":"OffsetPaginated","url":"classes/checkout.shopperbaskets.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":741,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.OffsetPaginated"},{"id":742,"kind":4194304,"name":"RateLimited4","url":"classes/checkout.shopperbaskets.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":743,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#ratelimited4.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.RateLimited4"},{"id":744,"kind":4194304,"name":"NumericRangeFilter","url":"classes/checkout.shopperbaskets.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":745,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.NumericRangeFilter"},{"id":746,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/checkout.shopperbaskets.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":747,"kind":65536,"name":"__type","url":"classes/checkout.shopperbaskets.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperBaskets.DatetimeRangeFilter"},{"id":748,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/checkout.shopperbaskets.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":749,"kind":4194304,"name":"Error","url":"classes/checkout.shopperbaskets.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperBaskets"},{"id":750,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/checkout.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":751,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/checkout.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":752,"kind":128,"name":"ShopperOrders","url":"classes/checkout.shopperorders.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"checkout"},{"id":753,"kind":512,"name":"constructor","url":"classes/checkout.shopperorders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"checkout.ShopperOrders"},{"id":754,"kind":2048,"name":"createOrder","url":"classes/checkout.shopperorders.html#createorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":755,"kind":2048,"name":"getOrder","url":"classes/checkout.shopperorders.html#getorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":756,"kind":2048,"name":"guestOrderLookup","url":"classes/checkout.shopperorders.html#guestorderlookup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":757,"kind":2048,"name":"createPaymentInstrumentForOrder","url":"classes/checkout.shopperorders.html#createpaymentinstrumentfororder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":758,"kind":2048,"name":"removePaymentInstrumentFromOrder","url":"classes/checkout.shopperorders.html#removepaymentinstrumentfromorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":759,"kind":2048,"name":"updatePaymentInstrumentForOrder","url":"classes/checkout.shopperorders.html#updatepaymentinstrumentfororder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":760,"kind":2048,"name":"getPaymentMethodsForOrder","url":"classes/checkout.shopperorders.html#getpaymentmethodsfororder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":761,"kind":2048,"name":"getTaxesFromOrder","url":"classes/checkout.shopperorders.html#gettaxesfromorder","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"checkout.ShopperOrders"},{"id":762,"kind":1024,"name":"clientConfig","url":"classes/checkout.shopperorders.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"checkout.ShopperOrders"},{"id":763,"kind":4194304,"name":"ErrorResponse","url":"classes/checkout.shopperorders.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":764,"kind":4194304,"name":"LocaleSpecific","url":"classes/checkout.shopperorders.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":765,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#localespecific.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.LocaleSpecific"},{"id":766,"kind":4194304,"name":"Money","url":"classes/checkout.shopperorders.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":767,"kind":4194304,"name":"SimpleSearchResult","url":"classes/checkout.shopperorders.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":768,"kind":4194304,"name":"SearchRequest","url":"classes/checkout.shopperorders.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":769,"kind":4194304,"name":"PropertyDefinition","url":"classes/checkout.shopperorders.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":770,"kind":4194304,"name":"LocalizedString","url":"classes/checkout.shopperorders.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":771,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/checkout.shopperorders.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":772,"kind":4194304,"name":"ClosedObject","url":"classes/checkout.shopperorders.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":773,"kind":4194304,"name":"OpenObject","url":"classes/checkout.shopperorders.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":774,"kind":4194304,"name":"QueryParamsLimit","url":"classes/checkout.shopperorders.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":775,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#queryparamslimit.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.QueryParamsLimit"},{"id":776,"kind":4194304,"name":"QueryParamsOffset","url":"classes/checkout.shopperorders.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":777,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#queryparamsoffset.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.QueryParamsOffset"},{"id":778,"kind":4194304,"name":"SiteSpecific","url":"classes/checkout.shopperorders.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":779,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#sitespecific-1.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.SiteSpecific"},{"id":780,"kind":4194304,"name":"Selectable","url":"classes/checkout.shopperorders.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":781,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#selectable.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Selectable"},{"id":782,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/checkout.shopperorders.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":783,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.NoPropertiesAllowed"},{"id":784,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/checkout.shopperorders.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":785,"kind":4194304,"name":"BoolFilter","url":"classes/checkout.shopperorders.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":786,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/checkout.shopperorders.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":787,"kind":4194304,"name":"MatchAllQuery","url":"classes/checkout.shopperorders.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":788,"kind":4194304,"name":"FilteredQuery","url":"classes/checkout.shopperorders.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":789,"kind":4194304,"name":"QueryFilter","url":"classes/checkout.shopperorders.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":790,"kind":4194304,"name":"Query","url":"classes/checkout.shopperorders.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":791,"kind":4194304,"name":"TermQuery","url":"classes/checkout.shopperorders.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":792,"kind":4194304,"name":"TermFilter","url":"classes/checkout.shopperorders.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":793,"kind":4194304,"name":"TextQuery","url":"classes/checkout.shopperorders.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":794,"kind":4194304,"name":"Range2Filter","url":"classes/checkout.shopperorders.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":795,"kind":4194304,"name":"BoolQuery","url":"classes/checkout.shopperorders.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":796,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/checkout.shopperorders.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":797,"kind":4194304,"name":"NestedQuery","url":"classes/checkout.shopperorders.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":798,"kind":4194304,"name":"Filter","url":"classes/checkout.shopperorders.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":799,"kind":4194304,"name":"Sort","url":"classes/checkout.shopperorders.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":800,"kind":4194304,"name":"RangeFilter","url":"classes/checkout.shopperorders.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":801,"kind":4194304,"name":"SearchRequestBase","url":"classes/checkout.shopperorders.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":802,"kind":4194304,"name":"MoneyMnemonic","url":"classes/checkout.shopperorders.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":803,"kind":4194304,"name":"L10nString","url":"classes/checkout.shopperorders.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":804,"kind":4194304,"name":"AttributeDefinition","url":"classes/checkout.shopperorders.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":805,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.AttributeDefinition"},{"id":806,"kind":32,"name":"defaultValue","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":807,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":808,"kind":32,"name":"name","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":809,"kind":32,"name":"description","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":810,"kind":32,"name":"key","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":811,"kind":32,"name":"localizable","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":812,"kind":32,"name":"mandatory","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":813,"kind":32,"name":"max","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":814,"kind":32,"name":"minLength","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":815,"kind":32,"name":"min","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":816,"kind":32,"name":"multiValueType","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":817,"kind":32,"name":"regularExpression","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":818,"kind":32,"name":"scale","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":819,"kind":32,"name":"searchable","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":820,"kind":32,"name":"siteSpecific","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":821,"kind":32,"name":"system","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":822,"kind":32,"name":"unit","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":823,"kind":32,"name":"possibleValues","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":824,"kind":32,"name":"type","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":825,"kind":32,"name":"visible","url":"classes/checkout.shopperorders.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.AttributeDefinition.__type"},{"id":826,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/checkout.shopperorders.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":827,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.PropertyValueDefinition"},{"id":828,"kind":32,"name":"description","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":829,"kind":32,"name":"displayValue","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":830,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":831,"kind":32,"name":"position","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":832,"kind":32,"name":"value","url":"classes/checkout.shopperorders.html#propertyvaluedefinition.__type-21.value-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PropertyValueDefinition.__type"},{"id":833,"kind":4194304,"name":"TaxItems","url":"classes/checkout.shopperorders.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":834,"kind":4194304,"name":"PaymentCardSpec","url":"classes/checkout.shopperorders.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":835,"kind":4194304,"name":"OrderAddress","url":"classes/checkout.shopperorders.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":836,"kind":4194304,"name":"PriceAdjustmentRequest","url":"classes/checkout.shopperorders.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":837,"kind":4194304,"name":"PaymentCard","url":"classes/checkout.shopperorders.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":838,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#paymentcard.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.PaymentCard"},{"id":839,"kind":32,"name":"cardType","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.cardtype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":840,"kind":32,"name":"creditCardExpired","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.creditcardexpired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":841,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.creditcardtoken-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":842,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.expirationmonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":843,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.expirationyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":844,"kind":32,"name":"holder","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.holder-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":845,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.issuenumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":846,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.maskednumber-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":847,"kind":32,"name":"numberLastDigits","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.numberlastdigits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":848,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.validfrommonth-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":849,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperorders.html#paymentcard.__type-17.validfromyear-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PaymentCard.__type"},{"id":850,"kind":4194304,"name":"NotesResult","url":"classes/checkout.shopperorders.html#notesresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":851,"kind":4194304,"name":"ShippingItem","url":"classes/checkout.shopperorders.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":852,"kind":4194304,"name":"Discount","url":"classes/checkout.shopperorders.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":853,"kind":4194304,"name":"Note","url":"classes/checkout.shopperorders.html#note","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":854,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#note.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Note"},{"id":855,"kind":32,"name":"createdBy","url":"classes/checkout.shopperorders.html#note.__type-12.createdby","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":856,"kind":32,"name":"creationDate","url":"classes/checkout.shopperorders.html#note.__type-12.creationdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":857,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#note.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":858,"kind":32,"name":"subject","url":"classes/checkout.shopperorders.html#note.__type-12.subject","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":859,"kind":32,"name":"text","url":"classes/checkout.shopperorders.html#note.__type-12.text","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Note.__type"},{"id":860,"kind":4194304,"name":"CouponItem","url":"classes/checkout.shopperorders.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":861,"kind":4194304,"name":"PromotionLink","url":"classes/checkout.shopperorders.html#promotionlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":862,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#promotionlink.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.PromotionLink"},{"id":863,"kind":32,"name":"calloutMsg","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.calloutmsg","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":864,"kind":32,"name":"name","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":865,"kind":32,"name":"promotionId","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.promotionid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":866,"kind":32,"name":"title","url":"classes/checkout.shopperorders.html#promotionlink.__type-20.title-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.PromotionLink.__type"},{"id":867,"kind":4194304,"name":"PriceBookIds","url":"classes/checkout.shopperorders.html#pricebookids","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":868,"kind":4194304,"name":"ShippingPromotion","url":"classes/checkout.shopperorders.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":869,"kind":4194304,"name":"ProductItem","url":"classes/checkout.shopperorders.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":870,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"classes/checkout.shopperorders.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":871,"kind":4194304,"name":"Taxes","url":"classes/checkout.shopperorders.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":872,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#taxes.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Taxes"},{"id":873,"kind":32,"name":"taxes","url":"classes/checkout.shopperorders.html#taxes.__type-35.taxes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Taxes.__type"},{"id":874,"kind":4194304,"name":"OrderPaymentInstrument","url":"classes/checkout.shopperorders.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":875,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/checkout.shopperorders.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":876,"kind":4194304,"name":"PaymentMethodResult","url":"classes/checkout.shopperorders.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":877,"kind":4194304,"name":"Shipment","url":"classes/checkout.shopperorders.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":878,"kind":4194304,"name":"CustomerInfo","url":"classes/checkout.shopperorders.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":879,"kind":4194304,"name":"SimpleLink","url":"classes/checkout.shopperorders.html#simplelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":880,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#simplelink.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.SimpleLink"},{"id":881,"kind":4194304,"name":"PriceAdjustment","url":"classes/checkout.shopperorders.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":882,"kind":4194304,"name":"ShippingMethodResult","url":"classes/checkout.shopperorders.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":883,"kind":4194304,"name":"ProductDetailsLink","url":"classes/checkout.shopperorders.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":884,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.ProductDetailsLink"},{"id":885,"kind":32,"name":"productDescription","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.productdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":886,"kind":32,"name":"productId","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":887,"kind":32,"name":"productName","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.productname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":888,"kind":32,"name":"title","url":"classes/checkout.shopperorders.html#productdetailslink.__type-18.title","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductDetailsLink.__type"},{"id":889,"kind":4194304,"name":"OptionItem","url":"classes/checkout.shopperorders.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":890,"kind":4194304,"name":"ShippingMethod","url":"classes/checkout.shopperorders.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":891,"kind":4194304,"name":"DiscountRequest","url":"classes/checkout.shopperorders.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":892,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#discountrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DiscountRequest"},{"id":893,"kind":32,"name":"type","url":"classes/checkout.shopperorders.html#discountrequest.__type-5.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.DiscountRequest.__type"},{"id":894,"kind":32,"name":"value","url":"classes/checkout.shopperorders.html#discountrequest.__type-5.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.DiscountRequest.__type"},{"id":895,"kind":4194304,"name":"Basket","url":"classes/checkout.shopperorders.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":896,"kind":4194304,"name":"OrderLookupRequest","url":"classes/checkout.shopperorders.html#orderlookuprequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":897,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#orderlookuprequest.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.OrderLookupRequest"},{"id":898,"kind":32,"name":"email","url":"classes/checkout.shopperorders.html#orderlookuprequest.__type-15.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderLookupRequest.__type"},{"id":899,"kind":32,"name":"orderViewCode","url":"classes/checkout.shopperorders.html#orderlookuprequest.__type-15.orderviewcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderLookupRequest.__type"},{"id":900,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"classes/checkout.shopperorders.html#orderpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":901,"kind":4194304,"name":"GiftCertificateItem","url":"classes/checkout.shopperorders.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":902,"kind":4194304,"name":"ProductListLink","url":"classes/checkout.shopperorders.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":903,"kind":4194304,"name":"GroupedTaxItem","url":"classes/checkout.shopperorders.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":904,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#groupedtaxitem.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.GroupedTaxItem"},{"id":905,"kind":32,"name":"taxRate","url":"classes/checkout.shopperorders.html#groupedtaxitem.__type-8.taxrate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.GroupedTaxItem.__type"},{"id":906,"kind":32,"name":"taxValue","url":"classes/checkout.shopperorders.html#groupedtaxitem.__type-8.taxvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.GroupedTaxItem.__type"},{"id":907,"kind":4194304,"name":"Order","url":"classes/checkout.shopperorders.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":908,"kind":4194304,"name":"OrderPaymentCardRequest","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":909,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.OrderPaymentCardRequest"},{"id":910,"kind":32,"name":"cardType","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.cardtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":911,"kind":32,"name":"creditCardToken","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.creditcardtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":912,"kind":32,"name":"expirationMonth","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.expirationmonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":913,"kind":32,"name":"expirationYear","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.expirationyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":914,"kind":32,"name":"holder","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.holder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":915,"kind":32,"name":"issueNumber","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.issuenumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":916,"kind":32,"name":"maskedNumber","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.maskednumber","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":917,"kind":32,"name":"validFromMonth","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.validfrommonth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":918,"kind":32,"name":"validFromYear","url":"classes/checkout.shopperorders.html#orderpaymentcardrequest.__type-16.validfromyear","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.OrderPaymentCardRequest.__type"},{"id":919,"kind":4194304,"name":"PaymentMethod","url":"classes/checkout.shopperorders.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":920,"kind":4194304,"name":"TaxItem","url":"classes/checkout.shopperorders.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":921,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#taxitem.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.TaxItem"},{"id":922,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#taxitem.__type-34.id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.TaxItem.__type"},{"id":923,"kind":32,"name":"rate","url":"classes/checkout.shopperorders.html#taxitem.__type-34.rate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.TaxItem.__type"},{"id":924,"kind":32,"name":"value","url":"classes/checkout.shopperorders.html#taxitem.__type-34.value-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.TaxItem.__type"},{"id":925,"kind":4194304,"name":"Status","url":"classes/checkout.shopperorders.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":926,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#status.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.Status"},{"id":927,"kind":32,"name":"code","url":"classes/checkout.shopperorders.html#status.__type-32.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Status.__type"},{"id":928,"kind":32,"name":"message","url":"classes/checkout.shopperorders.html#status.__type-32.message","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Status.__type"},{"id":929,"kind":32,"name":"status","url":"classes/checkout.shopperorders.html#status.__type-32.status-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.Status.__type"},{"id":930,"kind":4194304,"name":"ProductListItemReference","url":"classes/checkout.shopperorders.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":931,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.ProductListItemReference"},{"id":932,"kind":32,"name":"id","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":933,"kind":32,"name":"priority","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.priority","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":934,"kind":32,"name":"productDetailsLink","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.productdetailslink-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":935,"kind":32,"name":"productList","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.productlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":936,"kind":32,"name":"public","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.public","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":937,"kind":32,"name":"purchasedQuantity","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.purchasedquantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":938,"kind":32,"name":"quantity","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.quantity","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":939,"kind":32,"name":"type","url":"classes/checkout.shopperorders.html#productlistitemreference.__type-19.type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"checkout.ShopperOrders.ProductListItemReference.__type"},{"id":940,"kind":4194304,"name":"ChangeControlled","url":"classes/checkout.shopperorders.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":941,"kind":4194304,"name":"DateRangeFilter","url":"classes/checkout.shopperorders.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":942,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DateRangeFilter"},{"id":943,"kind":4194304,"name":"EtagResponse","url":"classes/checkout.shopperorders.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":944,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.EtagResponse"},{"id":945,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/checkout.shopperorders.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":946,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#integerrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.IntegerRangeFilter"},{"id":947,"kind":4194304,"name":"RateLimited3","url":"classes/checkout.shopperorders.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":948,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited3.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited3"},{"id":949,"kind":4194304,"name":"SyncCreated","url":"classes/checkout.shopperorders.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":950,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#synccreated.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.SyncCreated"},{"id":951,"kind":4194304,"name":"DateConditionalRequest","url":"classes/checkout.shopperorders.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":952,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DateConditionalRequest"},{"id":953,"kind":4194304,"name":"RateLimited5","url":"classes/checkout.shopperorders.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":954,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited5.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited5"},{"id":955,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/checkout.shopperorders.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":956,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.EtagConditionalRequest"},{"id":957,"kind":4194304,"name":"AsyncCreated","url":"classes/checkout.shopperorders.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":958,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.AsyncCreated"},{"id":959,"kind":4194304,"name":"RateLimited","url":"classes/checkout.shopperorders.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":960,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited"},{"id":961,"kind":4194304,"name":"RateLimited2","url":"classes/checkout.shopperorders.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":962,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited2"},{"id":963,"kind":4194304,"name":"OffsetPaginated","url":"classes/checkout.shopperorders.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":964,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.OffsetPaginated"},{"id":965,"kind":4194304,"name":"RateLimited4","url":"classes/checkout.shopperorders.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":966,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#ratelimited4.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.RateLimited4"},{"id":967,"kind":4194304,"name":"NumericRangeFilter","url":"classes/checkout.shopperorders.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":968,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.NumericRangeFilter"},{"id":969,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/checkout.shopperorders.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":970,"kind":65536,"name":"__type","url":"classes/checkout.shopperorders.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"checkout.ShopperOrders.DatetimeRangeFilter"},{"id":971,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/checkout.shopperorders.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":972,"kind":4194304,"name":"Error","url":"classes/checkout.shopperorders.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"checkout.ShopperOrders"},{"id":973,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/checkout.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":974,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/checkout.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"checkout"},{"id":975,"kind":1,"name":"customer","url":"modules/customer.html","classes":"tsd-kind-module"},{"id":976,"kind":128,"name":"Customers","url":"classes/customer.customers.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":977,"kind":512,"name":"constructor","url":"classes/customer.customers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.Customers"},{"id":978,"kind":2048,"name":"searchCustomerInCustomerList","url":"classes/customer.customers.html#searchcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":979,"kind":2048,"name":"createCustomerList","url":"classes/customer.customers.html#createcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":980,"kind":2048,"name":"deleteCustomerFromCustomerList","url":"classes/customer.customers.html#deletecustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":981,"kind":2048,"name":"getCustomerFromCustomerList","url":"classes/customer.customers.html#getcustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":982,"kind":2048,"name":"updateCustomerInCustomerList","url":"classes/customer.customers.html#updatecustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":983,"kind":2048,"name":"createCustomerInCustomerList","url":"classes/customer.customers.html#createcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":984,"kind":2048,"name":"getAddressesForCustomerFromCustomerList","url":"classes/customer.customers.html#getaddressesforcustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":985,"kind":2048,"name":"createAddressForCustomerInCustomerList","url":"classes/customer.customers.html#createaddressforcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":986,"kind":2048,"name":"getAddressForCustomerFromCustomerList","url":"classes/customer.customers.html#getaddressforcustomerfromcustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":987,"kind":2048,"name":"removeAddressForCustomerInCustomerList","url":"classes/customer.customers.html#removeaddressforcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":988,"kind":2048,"name":"updateAddressForCustomerInCustomerList","url":"classes/customer.customers.html#updateaddressforcustomerincustomerlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":989,"kind":2048,"name":"searchCustomerGroup","url":"classes/customer.customers.html#searchcustomergroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.Customers"},{"id":990,"kind":1024,"name":"clientConfig","url":"classes/customer.customers.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.Customers"},{"id":991,"kind":4194304,"name":"CustomerAddress","url":"classes/customer.customers.html#customeraddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":992,"kind":4194304,"name":"CustomerGroupSearchResult","url":"classes/customer.customers.html#customergroupsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":993,"kind":4194304,"name":"CustomerList","url":"classes/customer.customers.html#customerlist","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":994,"kind":4194304,"name":"CustomerSearchHit","url":"classes/customer.customers.html#customersearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":995,"kind":4194304,"name":"CustomerGroup","url":"classes/customer.customers.html#customergroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":996,"kind":4194304,"name":"CustomerAddressResult","url":"classes/customer.customers.html#customeraddressresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":997,"kind":4194304,"name":"Customer","url":"classes/customer.customers.html#customer","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":998,"kind":4194304,"name":"CustomerGroupRule","url":"classes/customer.customers.html#customergrouprule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":999,"kind":4194304,"name":"Credentials","url":"classes/customer.customers.html#credentials","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1000,"kind":4194304,"name":"CustomerSearchResult","url":"classes/customer.customers.html#customersearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1001,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.customers.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1002,"kind":4194304,"name":"NotFound","url":"classes/customer.customers.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1003,"kind":65536,"name":"__type","url":"classes/customer.customers.html#notfound.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.NotFound"},{"id":1004,"kind":4194304,"name":"Forbidden","url":"classes/customer.customers.html#forbidden","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1005,"kind":65536,"name":"__type","url":"classes/customer.customers.html#forbidden.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.Forbidden"},{"id":1006,"kind":4194304,"name":"BadRequest","url":"classes/customer.customers.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1007,"kind":65536,"name":"__type","url":"classes/customer.customers.html#badrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.BadRequest"},{"id":1008,"kind":4194304,"name":"CustomerGroupSearchBadRequest","url":"classes/customer.customers.html#customergroupsearchbadrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1009,"kind":65536,"name":"__type","url":"classes/customer.customers.html#customergroupsearchbadrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.CustomerGroupSearchBadRequest"},{"id":1010,"kind":4194304,"name":"AlreadyExists","url":"classes/customer.customers.html#alreadyexists","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1011,"kind":65536,"name":"__type","url":"classes/customer.customers.html#alreadyexists.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.AlreadyExists"},{"id":1012,"kind":4194304,"name":"Unauthorized","url":"classes/customer.customers.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1013,"kind":65536,"name":"__type","url":"classes/customer.customers.html#unauthorized.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.Unauthorized"},{"id":1014,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.customers.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1015,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.customers.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1016,"kind":65536,"name":"__type","url":"classes/customer.customers.html#daterangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.DateRangeFilter"},{"id":1017,"kind":4194304,"name":"EtagResponse","url":"classes/customer.customers.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1018,"kind":65536,"name":"__type","url":"classes/customer.customers.html#etagresponse.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.EtagResponse"},{"id":1019,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.customers.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1020,"kind":65536,"name":"__type","url":"classes/customer.customers.html#integerrangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.IntegerRangeFilter"},{"id":1021,"kind":4194304,"name":"RateLimited3","url":"classes/customer.customers.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1022,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited3.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited3"},{"id":1023,"kind":4194304,"name":"SyncCreated","url":"classes/customer.customers.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1024,"kind":65536,"name":"__type","url":"classes/customer.customers.html#synccreated.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.SyncCreated"},{"id":1025,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.customers.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1026,"kind":65536,"name":"__type","url":"classes/customer.customers.html#dateconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.DateConditionalRequest"},{"id":1027,"kind":4194304,"name":"RateLimited5","url":"classes/customer.customers.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1028,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited5.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited5"},{"id":1029,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.customers.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1030,"kind":65536,"name":"__type","url":"classes/customer.customers.html#etagconditionalrequest.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.EtagConditionalRequest"},{"id":1031,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.customers.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1032,"kind":65536,"name":"__type","url":"classes/customer.customers.html#asynccreated.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.AsyncCreated"},{"id":1033,"kind":4194304,"name":"RateLimited","url":"classes/customer.customers.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1034,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited"},{"id":1035,"kind":4194304,"name":"RateLimited2","url":"classes/customer.customers.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1036,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited2"},{"id":1037,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.customers.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1038,"kind":65536,"name":"__type","url":"classes/customer.customers.html#offsetpaginated.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.OffsetPaginated"},{"id":1039,"kind":4194304,"name":"RangeFilter","url":"classes/customer.customers.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1040,"kind":65536,"name":"__type","url":"classes/customer.customers.html#rangefilter.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RangeFilter"},{"id":1041,"kind":4194304,"name":"RateLimited4","url":"classes/customer.customers.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1042,"kind":65536,"name":"__type","url":"classes/customer.customers.html#ratelimited4.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.RateLimited4"},{"id":1043,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.customers.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1044,"kind":65536,"name":"__type","url":"classes/customer.customers.html#numericrangefilter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.NumericRangeFilter"},{"id":1045,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.customers.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1046,"kind":65536,"name":"__type","url":"classes/customer.customers.html#datetimerangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.DatetimeRangeFilter"},{"id":1047,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.customers.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1048,"kind":4194304,"name":"Error","url":"classes/customer.customers.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1049,"kind":4194304,"name":"Money","url":"classes/customer.customers.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1050,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.customers.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1051,"kind":4194304,"name":"SearchRequest","url":"classes/customer.customers.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1052,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.customers.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1053,"kind":4194304,"name":"LocalizedString","url":"classes/customer.customers.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1054,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.customers.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1055,"kind":4194304,"name":"ClosedObject","url":"classes/customer.customers.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1056,"kind":4194304,"name":"OpenObject","url":"classes/customer.customers.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1057,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.customers.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1058,"kind":65536,"name":"__type","url":"classes/customer.customers.html#queryparamslimit.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.QueryParamsLimit"},{"id":1059,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.customers.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1060,"kind":65536,"name":"__type","url":"classes/customer.customers.html#queryparamsoffset.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.QueryParamsOffset"},{"id":1061,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.customers.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1062,"kind":65536,"name":"__type","url":"classes/customer.customers.html#sitespecific-1.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.SiteSpecific"},{"id":1063,"kind":4194304,"name":"Selectable","url":"classes/customer.customers.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1064,"kind":65536,"name":"__type","url":"classes/customer.customers.html#selectable.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.Selectable"},{"id":1065,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.customers.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1066,"kind":65536,"name":"__type","url":"classes/customer.customers.html#nopropertiesallowed.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.NoPropertiesAllowed"},{"id":1067,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.customers.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1068,"kind":4194304,"name":"BoolFilter","url":"classes/customer.customers.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1069,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.customers.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1070,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.customers.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1071,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.customers.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1072,"kind":4194304,"name":"QueryFilter","url":"classes/customer.customers.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1073,"kind":4194304,"name":"Query","url":"classes/customer.customers.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1074,"kind":4194304,"name":"TermQuery","url":"classes/customer.customers.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1075,"kind":4194304,"name":"TermFilter","url":"classes/customer.customers.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1076,"kind":4194304,"name":"TextQuery","url":"classes/customer.customers.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1077,"kind":4194304,"name":"Range2Filter","url":"classes/customer.customers.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1078,"kind":4194304,"name":"BoolQuery","url":"classes/customer.customers.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1079,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.customers.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1080,"kind":4194304,"name":"NestedQuery","url":"classes/customer.customers.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1081,"kind":4194304,"name":"Filter","url":"classes/customer.customers.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1082,"kind":4194304,"name":"Sort","url":"classes/customer.customers.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1083,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.customers.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1084,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.customers.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1085,"kind":4194304,"name":"L10nString","url":"classes/customer.customers.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1086,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.customers.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1087,"kind":65536,"name":"__type","url":"classes/customer.customers.html#attributedefinition.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.AttributeDefinition"},{"id":1088,"kind":32,"name":"defaultValue","url":"classes/customer.customers.html#attributedefinition.__type-2.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1089,"kind":32,"name":"id","url":"classes/customer.customers.html#attributedefinition.__type-2.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1090,"kind":32,"name":"name","url":"classes/customer.customers.html#attributedefinition.__type-2.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1091,"kind":32,"name":"description","url":"classes/customer.customers.html#attributedefinition.__type-2.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1092,"kind":32,"name":"key","url":"classes/customer.customers.html#attributedefinition.__type-2.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1093,"kind":32,"name":"localizable","url":"classes/customer.customers.html#attributedefinition.__type-2.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1094,"kind":32,"name":"mandatory","url":"classes/customer.customers.html#attributedefinition.__type-2.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1095,"kind":32,"name":"max","url":"classes/customer.customers.html#attributedefinition.__type-2.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1096,"kind":32,"name":"minLength","url":"classes/customer.customers.html#attributedefinition.__type-2.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1097,"kind":32,"name":"min","url":"classes/customer.customers.html#attributedefinition.__type-2.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1098,"kind":32,"name":"multiValueType","url":"classes/customer.customers.html#attributedefinition.__type-2.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1099,"kind":32,"name":"regularExpression","url":"classes/customer.customers.html#attributedefinition.__type-2.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1100,"kind":32,"name":"scale","url":"classes/customer.customers.html#attributedefinition.__type-2.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1101,"kind":32,"name":"searchable","url":"classes/customer.customers.html#attributedefinition.__type-2.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1102,"kind":32,"name":"siteSpecific","url":"classes/customer.customers.html#attributedefinition.__type-2.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1103,"kind":32,"name":"system","url":"classes/customer.customers.html#attributedefinition.__type-2.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1104,"kind":32,"name":"unit","url":"classes/customer.customers.html#attributedefinition.__type-2.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1105,"kind":32,"name":"possibleValues","url":"classes/customer.customers.html#attributedefinition.__type-2.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1106,"kind":32,"name":"type","url":"classes/customer.customers.html#attributedefinition.__type-2.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1107,"kind":32,"name":"visible","url":"classes/customer.customers.html#attributedefinition.__type-2.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.AttributeDefinition.__type"},{"id":1108,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.customers.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.Customers"},{"id":1109,"kind":65536,"name":"__type","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.Customers.PropertyValueDefinition"},{"id":1110,"kind":32,"name":"description","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1111,"kind":32,"name":"displayValue","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1112,"kind":32,"name":"id","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1113,"kind":32,"name":"position","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1114,"kind":32,"name":"value","url":"classes/customer.customers.html#propertyvaluedefinition.__type-16.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.Customers.PropertyValueDefinition.__type"},{"id":1115,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1116,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1117,"kind":128,"name":"ShopperContext","url":"classes/customer.shoppercontext.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1118,"kind":512,"name":"constructor","url":"classes/customer.shoppercontext.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperContext"},{"id":1119,"kind":2048,"name":"getShopperContext","url":"classes/customer.shoppercontext.html#getshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1120,"kind":2048,"name":"createShopperContext","url":"classes/customer.shoppercontext.html#createshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1121,"kind":2048,"name":"deleteShopperContext","url":"classes/customer.shoppercontext.html#deleteshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1122,"kind":2048,"name":"updateShopperContext","url":"classes/customer.shoppercontext.html#updateshoppercontext","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperContext"},{"id":1123,"kind":1024,"name":"clientConfig","url":"classes/customer.shoppercontext.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperContext"},{"id":1124,"kind":4194304,"name":"ShopperContext","url":"classes/customer.shoppercontext.html#shoppercontext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1125,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shoppercontext.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1126,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shoppercontext.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1127,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shoppercontext.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1128,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.DateRangeFilter"},{"id":1129,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shoppercontext.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1130,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.EtagResponse"},{"id":1131,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shoppercontext.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1132,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.IntegerRangeFilter"},{"id":1133,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shoppercontext.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1134,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited3.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited3"},{"id":1135,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shoppercontext.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1136,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#synccreated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.SyncCreated"},{"id":1137,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shoppercontext.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1138,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.DateConditionalRequest"},{"id":1139,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shoppercontext.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1140,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited5.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited5"},{"id":1141,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shoppercontext.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1142,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.EtagConditionalRequest"},{"id":1143,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shoppercontext.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1144,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.AsyncCreated"},{"id":1145,"kind":4194304,"name":"RateLimited","url":"classes/customer.shoppercontext.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1146,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited"},{"id":1147,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shoppercontext.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1148,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited2"},{"id":1149,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shoppercontext.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1150,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.OffsetPaginated"},{"id":1151,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shoppercontext.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1152,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#rangefilter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RangeFilter"},{"id":1153,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shoppercontext.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1154,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#ratelimited4.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.RateLimited4"},{"id":1155,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shoppercontext.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1156,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.NumericRangeFilter"},{"id":1157,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shoppercontext.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1158,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.DatetimeRangeFilter"},{"id":1159,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shoppercontext.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1160,"kind":4194304,"name":"Error","url":"classes/customer.shoppercontext.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1161,"kind":4194304,"name":"Money","url":"classes/customer.shoppercontext.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1162,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shoppercontext.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1163,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shoppercontext.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1164,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shoppercontext.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1165,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shoppercontext.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1166,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shoppercontext.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1167,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shoppercontext.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1168,"kind":4194304,"name":"OpenObject","url":"classes/customer.shoppercontext.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1169,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shoppercontext.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1170,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#queryparamslimit.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.QueryParamsLimit"},{"id":1171,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shoppercontext.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1172,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#queryparamsoffset.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.QueryParamsOffset"},{"id":1173,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shoppercontext.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1174,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#sitespecific-1.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.SiteSpecific"},{"id":1175,"kind":4194304,"name":"Selectable","url":"classes/customer.shoppercontext.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1176,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#selectable.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.Selectable"},{"id":1177,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shoppercontext.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1178,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.NoPropertiesAllowed"},{"id":1179,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shoppercontext.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1180,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shoppercontext.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1181,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shoppercontext.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1182,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shoppercontext.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1183,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shoppercontext.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1184,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shoppercontext.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1185,"kind":4194304,"name":"Query","url":"classes/customer.shoppercontext.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1186,"kind":4194304,"name":"TermQuery","url":"classes/customer.shoppercontext.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1187,"kind":4194304,"name":"TermFilter","url":"classes/customer.shoppercontext.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1188,"kind":4194304,"name":"TextQuery","url":"classes/customer.shoppercontext.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1189,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shoppercontext.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1190,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shoppercontext.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1191,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shoppercontext.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1192,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shoppercontext.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1193,"kind":4194304,"name":"Filter","url":"classes/customer.shoppercontext.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1194,"kind":4194304,"name":"Sort","url":"classes/customer.shoppercontext.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1195,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shoppercontext.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1196,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shoppercontext.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1197,"kind":4194304,"name":"L10nString","url":"classes/customer.shoppercontext.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1198,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shoppercontext.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1199,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.AttributeDefinition"},{"id":1200,"kind":32,"name":"defaultValue","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1201,"kind":32,"name":"id","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1202,"kind":32,"name":"name","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1203,"kind":32,"name":"description","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1204,"kind":32,"name":"key","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1205,"kind":32,"name":"localizable","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1206,"kind":32,"name":"mandatory","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1207,"kind":32,"name":"max","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1208,"kind":32,"name":"minLength","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1209,"kind":32,"name":"min","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1210,"kind":32,"name":"multiValueType","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1211,"kind":32,"name":"regularExpression","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1212,"kind":32,"name":"scale","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1213,"kind":32,"name":"searchable","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1214,"kind":32,"name":"siteSpecific","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1215,"kind":32,"name":"system","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1216,"kind":32,"name":"unit","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1217,"kind":32,"name":"possibleValues","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1218,"kind":32,"name":"type","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1219,"kind":32,"name":"visible","url":"classes/customer.shoppercontext.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.AttributeDefinition.__type"},{"id":1220,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shoppercontext.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperContext"},{"id":1221,"kind":65536,"name":"__type","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperContext.PropertyValueDefinition"},{"id":1222,"kind":32,"name":"description","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1223,"kind":32,"name":"displayValue","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1224,"kind":32,"name":"id","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1225,"kind":32,"name":"position","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1226,"kind":32,"name":"value","url":"classes/customer.shoppercontext.html#propertyvaluedefinition.__type-11.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperContext.PropertyValueDefinition.__type"},{"id":1227,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1228,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1229,"kind":128,"name":"ShopperCustomers","url":"classes/customer.shoppercustomers.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1230,"kind":512,"name":"constructor","url":"classes/customer.shoppercustomers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperCustomers"},{"id":1231,"kind":2048,"name":"registerCustomer","url":"classes/customer.shoppercustomers.html#registercustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1232,"kind":2048,"name":"resetPassword","url":"classes/customer.shoppercustomers.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1233,"kind":2048,"name":"getResetPasswordToken","url":"classes/customer.shoppercustomers.html#getresetpasswordtoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1234,"kind":2048,"name":"registerExternalProfile","url":"classes/customer.shoppercustomers.html#registerexternalprofile","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1235,"kind":2048,"name":"getExternalProfile","url":"classes/customer.shoppercustomers.html#getexternalprofile","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1236,"kind":2048,"name":"getCustomer","url":"classes/customer.shoppercustomers.html#getcustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1237,"kind":2048,"name":"updateCustomer","url":"classes/customer.shoppercustomers.html#updatecustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1238,"kind":2048,"name":"createCustomerAddress","url":"classes/customer.shoppercustomers.html#createcustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1239,"kind":2048,"name":"getCustomerAddress","url":"classes/customer.shoppercustomers.html#getcustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1240,"kind":2048,"name":"removeCustomerAddress","url":"classes/customer.shoppercustomers.html#removecustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1241,"kind":2048,"name":"updateCustomerAddress","url":"classes/customer.shoppercustomers.html#updatecustomeraddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1242,"kind":2048,"name":"getCustomerBaskets","url":"classes/customer.shoppercustomers.html#getcustomerbaskets","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1243,"kind":2048,"name":"getCustomerOrders","url":"classes/customer.shoppercustomers.html#getcustomerorders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1244,"kind":2048,"name":"updateCustomerPassword","url":"classes/customer.shoppercustomers.html#updatecustomerpassword","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1245,"kind":2048,"name":"createCustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#createcustomerpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1246,"kind":2048,"name":"deleteCustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#deletecustomerpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1247,"kind":2048,"name":"getCustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#getcustomerpaymentinstrument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1248,"kind":2048,"name":"getCustomerProductLists","url":"classes/customer.shoppercustomers.html#getcustomerproductlists","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1249,"kind":2048,"name":"createCustomerProductList","url":"classes/customer.shoppercustomers.html#createcustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1250,"kind":2048,"name":"deleteCustomerProductList","url":"classes/customer.shoppercustomers.html#deletecustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1251,"kind":2048,"name":"getCustomerProductList","url":"classes/customer.shoppercustomers.html#getcustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1252,"kind":2048,"name":"updateCustomerProductList","url":"classes/customer.shoppercustomers.html#updatecustomerproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1253,"kind":2048,"name":"createCustomerProductListItem","url":"classes/customer.shoppercustomers.html#createcustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1254,"kind":2048,"name":"deleteCustomerProductListItem","url":"classes/customer.shoppercustomers.html#deletecustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1255,"kind":2048,"name":"getCustomerProductListItem","url":"classes/customer.shoppercustomers.html#getcustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1256,"kind":2048,"name":"updateCustomerProductListItem","url":"classes/customer.shoppercustomers.html#updatecustomerproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1257,"kind":2048,"name":"getPublicProductListsBySearchTerm","url":"classes/customer.shoppercustomers.html#getpublicproductlistsbysearchterm","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1258,"kind":2048,"name":"getPublicProductList","url":"classes/customer.shoppercustomers.html#getpublicproductlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1259,"kind":2048,"name":"getProductListItem","url":"classes/customer.shoppercustomers.html#getproductlistitem","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperCustomers"},{"id":1260,"kind":1024,"name":"clientConfig","url":"classes/customer.shoppercustomers.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperCustomers"},{"id":1261,"kind":4194304,"name":"CustomerAddress","url":"classes/customer.shoppercustomers.html#customeraddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1262,"kind":4194304,"name":"CustomerProductListResult","url":"classes/customer.shoppercustomers.html#customerproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1263,"kind":4194304,"name":"CustomerProductListItemPurchase","url":"classes/customer.shoppercustomers.html#customerproductlistitempurchase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1264,"kind":4194304,"name":"OptionValue","url":"classes/customer.shoppercustomers.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1265,"kind":4194304,"name":"Master","url":"classes/customer.shoppercustomers.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1266,"kind":4194304,"name":"OrderAddress","url":"classes/customer.shoppercustomers.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1267,"kind":4194304,"name":"PublicProductListResult","url":"classes/customer.shoppercustomers.html#publicproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1268,"kind":4194304,"name":"BasketsResult","url":"classes/customer.shoppercustomers.html#basketsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1269,"kind":4194304,"name":"TrustedSystemAuthRequest","url":"classes/customer.shoppercustomers.html#trustedsystemauthrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1270,"kind":4194304,"name":"ResetPasswordRequest","url":"classes/customer.shoppercustomers.html#resetpasswordrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1271,"kind":4194304,"name":"PaymentCard","url":"classes/customer.shoppercustomers.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1272,"kind":4194304,"name":"ShippingItem","url":"classes/customer.shoppercustomers.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1273,"kind":4194304,"name":"Discount","url":"classes/customer.shoppercustomers.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1274,"kind":4194304,"name":"ResetPasswordToken","url":"classes/customer.shoppercustomers.html#resetpasswordtoken","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1275,"kind":4194304,"name":"CouponItem","url":"classes/customer.shoppercustomers.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1276,"kind":4194304,"name":"ShippingPromotion","url":"classes/customer.shoppercustomers.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1277,"kind":4194304,"name":"VariationAttribute","url":"classes/customer.shoppercustomers.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1278,"kind":4194304,"name":"ProductListShippingAddress","url":"classes/customer.shoppercustomers.html#productlistshippingaddress","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1279,"kind":4194304,"name":"ProductItem","url":"classes/customer.shoppercustomers.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1280,"kind":4194304,"name":"CustomerProductListRegistrant","url":"classes/customer.shoppercustomers.html#customerproductlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1281,"kind":4194304,"name":"PublicProductListInfo","url":"classes/customer.shoppercustomers.html#publicproductlistinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1282,"kind":4194304,"name":"CustomerPaymentCardRequest","url":"classes/customer.shoppercustomers.html#customerpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1283,"kind":4194304,"name":"RecommendationType","url":"classes/customer.shoppercustomers.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1284,"kind":4194304,"name":"OrderPaymentInstrument","url":"classes/customer.shoppercustomers.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1285,"kind":4194304,"name":"ProductType","url":"classes/customer.shoppercustomers.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1286,"kind":4194304,"name":"PaymentBankAccount","url":"classes/customer.shoppercustomers.html#paymentbankaccount","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1287,"kind":4194304,"name":"Recommendation","url":"classes/customer.shoppercustomers.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1288,"kind":4194304,"name":"Variant","url":"classes/customer.shoppercustomers.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1289,"kind":4194304,"name":"BonusDiscountLineItem","url":"classes/customer.shoppercustomers.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1290,"kind":4194304,"name":"CustomerPaymentInstrument","url":"classes/customer.shoppercustomers.html#customerpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1291,"kind":4194304,"name":"Shipment","url":"classes/customer.shoppercustomers.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1292,"kind":4194304,"name":"CustomerInfo","url":"classes/customer.shoppercustomers.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1293,"kind":4194304,"name":"VariationGroup","url":"classes/customer.shoppercustomers.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1294,"kind":4194304,"name":"SimpleLink","url":"classes/customer.shoppercustomers.html#simplelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1295,"kind":4194304,"name":"PaymentBankAccountRequest","url":"classes/customer.shoppercustomers.html#paymentbankaccountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1296,"kind":4194304,"name":"PriceAdjustment","url":"classes/customer.shoppercustomers.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1297,"kind":4194304,"name":"PublicProductListItem","url":"classes/customer.shoppercustomers.html#publicproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1298,"kind":4194304,"name":"ProductDetailsLink","url":"classes/customer.shoppercustomers.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1299,"kind":4194304,"name":"ProductLink","url":"classes/customer.shoppercustomers.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1300,"kind":4194304,"name":"OptionItem","url":"classes/customer.shoppercustomers.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1301,"kind":4194304,"name":"ShippingMethod","url":"classes/customer.shoppercustomers.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1302,"kind":4194304,"name":"ProductListEvent","url":"classes/customer.shoppercustomers.html#productlistevent","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1303,"kind":4194304,"name":"PasswordChangeRequest","url":"classes/customer.shoppercustomers.html#passwordchangerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1304,"kind":4194304,"name":"AuthRequest","url":"classes/customer.shoppercustomers.html#authrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1305,"kind":4194304,"name":"Inventory","url":"classes/customer.shoppercustomers.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1306,"kind":4194304,"name":"CustomerProductList","url":"classes/customer.shoppercustomers.html#customerproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1307,"kind":4194304,"name":"Basket","url":"classes/customer.shoppercustomers.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1308,"kind":4194304,"name":"CustomerPaymentInstrumentRequest","url":"classes/customer.shoppercustomers.html#customerpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1309,"kind":4194304,"name":"ImageGroup","url":"classes/customer.shoppercustomers.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1310,"kind":4194304,"name":"CustomerRegistration","url":"classes/customer.shoppercustomers.html#customerregistration","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1311,"kind":4194304,"name":"Customer","url":"classes/customer.shoppercustomers.html#customer","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1312,"kind":4194304,"name":"PublicProductList","url":"classes/customer.shoppercustomers.html#publicproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1313,"kind":4194304,"name":"Option","url":"classes/customer.shoppercustomers.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1314,"kind":4194304,"name":"CustomerOrderResult","url":"classes/customer.shoppercustomers.html#customerorderresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1315,"kind":4194304,"name":"CustomerExtProfileRequest","url":"classes/customer.shoppercustomers.html#customerextprofilerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1316,"kind":4194304,"name":"GiftCertificateItem","url":"classes/customer.shoppercustomers.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1317,"kind":4194304,"name":"CustomerExternalProfile","url":"classes/customer.shoppercustomers.html#customerexternalprofile","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1318,"kind":4194304,"name":"CustomerAddressInfo","url":"classes/customer.shoppercustomers.html#customeraddressinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1319,"kind":4194304,"name":"ResetPasswordTokenRequest","url":"classes/customer.shoppercustomers.html#resetpasswordtokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1320,"kind":4194304,"name":"ProductListLink","url":"classes/customer.shoppercustomers.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1321,"kind":4194304,"name":"GroupedTaxItem","url":"classes/customer.shoppercustomers.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1322,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#groupedtaxitem.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.GroupedTaxItem"},{"id":1323,"kind":32,"name":"taxRate","url":"classes/customer.shoppercustomers.html#groupedtaxitem.__type-11.taxrate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.GroupedTaxItem.__type"},{"id":1324,"kind":32,"name":"taxValue","url":"classes/customer.shoppercustomers.html#groupedtaxitem.__type-11.taxvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.GroupedTaxItem.__type"},{"id":1325,"kind":4194304,"name":"ProductListRegistrant","url":"classes/customer.shoppercustomers.html#productlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1326,"kind":4194304,"name":"Order","url":"classes/customer.shoppercustomers.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1327,"kind":4194304,"name":"Product","url":"classes/customer.shoppercustomers.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1328,"kind":4194304,"name":"Image","url":"classes/customer.shoppercustomers.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1329,"kind":4194304,"name":"VariationAttributeValue","url":"classes/customer.shoppercustomers.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1330,"kind":4194304,"name":"ProductPromotion","url":"classes/customer.shoppercustomers.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1331,"kind":4194304,"name":"BundledProduct","url":"classes/customer.shoppercustomers.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1332,"kind":4194304,"name":"Status","url":"classes/customer.shoppercustomers.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1333,"kind":4194304,"name":"CustomerProductListItem","url":"classes/customer.shoppercustomers.html#customerproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1334,"kind":4194304,"name":"ProductListItemReference","url":"classes/customer.shoppercustomers.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1335,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shoppercustomers.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1336,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shoppercustomers.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1337,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shoppercustomers.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1338,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#daterangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.DateRangeFilter"},{"id":1339,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shoppercustomers.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1340,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#etagresponse.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.EtagResponse"},{"id":1341,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shoppercustomers.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1342,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#integerrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.IntegerRangeFilter"},{"id":1343,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shoppercustomers.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1344,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited3.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited3"},{"id":1345,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shoppercustomers.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1346,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#synccreated.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.SyncCreated"},{"id":1347,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shoppercustomers.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1348,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#dateconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.DateConditionalRequest"},{"id":1349,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shoppercustomers.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1350,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited5.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited5"},{"id":1351,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shoppercustomers.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1352,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#etagconditionalrequest.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.EtagConditionalRequest"},{"id":1353,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shoppercustomers.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1354,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.AsyncCreated"},{"id":1355,"kind":4194304,"name":"RateLimited","url":"classes/customer.shoppercustomers.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1356,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited"},{"id":1357,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shoppercustomers.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1358,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited2"},{"id":1359,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shoppercustomers.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1360,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#offsetpaginated.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.OffsetPaginated"},{"id":1361,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shoppercustomers.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1362,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#rangefilter.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RangeFilter"},{"id":1363,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shoppercustomers.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1364,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#ratelimited4.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.RateLimited4"},{"id":1365,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shoppercustomers.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1366,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#numericrangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.NumericRangeFilter"},{"id":1367,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shoppercustomers.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1368,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#datetimerangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.DatetimeRangeFilter"},{"id":1369,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shoppercustomers.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1370,"kind":4194304,"name":"Error","url":"classes/customer.shoppercustomers.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1371,"kind":4194304,"name":"CustomerAuthenticationFailed","url":"classes/customer.shoppercustomers.html#customerauthenticationfailed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1372,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#customerauthenticationfailed.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.CustomerAuthenticationFailed"},{"id":1373,"kind":4194304,"name":"NotFound","url":"classes/customer.shoppercustomers.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1374,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#notfound.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.NotFound"},{"id":1375,"kind":4194304,"name":"BadRequest","url":"classes/customer.shoppercustomers.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1376,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.BadRequest"},{"id":1377,"kind":4194304,"name":"CustomerExtProfileNotFound","url":"classes/customer.shoppercustomers.html#customerextprofilenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1378,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#customerextprofilenotfound.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.CustomerExtProfileNotFound"},{"id":1379,"kind":4194304,"name":"Unauthorized","url":"classes/customer.shoppercustomers.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1380,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#unauthorized.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.Unauthorized"},{"id":1381,"kind":4194304,"name":"CustomerExtProfileBadRequest","url":"classes/customer.shoppercustomers.html#customerextprofilebadrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1382,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#customerextprofilebadrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.CustomerExtProfileBadRequest"},{"id":1383,"kind":4194304,"name":"Money","url":"classes/customer.shoppercustomers.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1384,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shoppercustomers.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1385,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shoppercustomers.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1386,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shoppercustomers.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1387,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shoppercustomers.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1388,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shoppercustomers.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1389,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shoppercustomers.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1390,"kind":4194304,"name":"OpenObject","url":"classes/customer.shoppercustomers.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1391,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shoppercustomers.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1392,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#queryparamslimit.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.QueryParamsLimit"},{"id":1393,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shoppercustomers.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1394,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#queryparamsoffset.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.QueryParamsOffset"},{"id":1395,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shoppercustomers.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1396,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#sitespecific-1.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.SiteSpecific"},{"id":1397,"kind":4194304,"name":"Selectable","url":"classes/customer.shoppercustomers.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1398,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#selectable.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.Selectable"},{"id":1399,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shoppercustomers.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1400,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#nopropertiesallowed.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.NoPropertiesAllowed"},{"id":1401,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shoppercustomers.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1402,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shoppercustomers.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1403,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shoppercustomers.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1404,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shoppercustomers.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1405,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shoppercustomers.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1406,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shoppercustomers.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1407,"kind":4194304,"name":"Query","url":"classes/customer.shoppercustomers.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1408,"kind":4194304,"name":"TermQuery","url":"classes/customer.shoppercustomers.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1409,"kind":4194304,"name":"TermFilter","url":"classes/customer.shoppercustomers.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1410,"kind":4194304,"name":"TextQuery","url":"classes/customer.shoppercustomers.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1411,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shoppercustomers.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1412,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shoppercustomers.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1413,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shoppercustomers.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1414,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shoppercustomers.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1415,"kind":4194304,"name":"Filter","url":"classes/customer.shoppercustomers.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1416,"kind":4194304,"name":"Sort","url":"classes/customer.shoppercustomers.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1417,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shoppercustomers.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1418,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shoppercustomers.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1419,"kind":4194304,"name":"L10nString","url":"classes/customer.shoppercustomers.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1420,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shoppercustomers.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1421,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.AttributeDefinition"},{"id":1422,"kind":32,"name":"defaultValue","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1423,"kind":32,"name":"id","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1424,"kind":32,"name":"name","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1425,"kind":32,"name":"description","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1426,"kind":32,"name":"key","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1427,"kind":32,"name":"localizable","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1428,"kind":32,"name":"mandatory","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1429,"kind":32,"name":"max","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1430,"kind":32,"name":"minLength","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1431,"kind":32,"name":"min","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1432,"kind":32,"name":"multiValueType","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1433,"kind":32,"name":"regularExpression","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1434,"kind":32,"name":"scale","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1435,"kind":32,"name":"searchable","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1436,"kind":32,"name":"siteSpecific","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1437,"kind":32,"name":"system","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1438,"kind":32,"name":"unit","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1439,"kind":32,"name":"possibleValues","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1440,"kind":32,"name":"type","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1441,"kind":32,"name":"visible","url":"classes/customer.shoppercustomers.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.AttributeDefinition.__type"},{"id":1442,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperCustomers"},{"id":1443,"kind":65536,"name":"__type","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperCustomers.PropertyValueDefinition"},{"id":1444,"kind":32,"name":"description","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1445,"kind":32,"name":"displayValue","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1446,"kind":32,"name":"id","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1447,"kind":32,"name":"position","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1448,"kind":32,"name":"value","url":"classes/customer.shoppercustomers.html#propertyvaluedefinition.__type-17.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperCustomers.PropertyValueDefinition.__type"},{"id":1449,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1450,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1451,"kind":128,"name":"ShopperLogin","url":"classes/customer.shopperlogin.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1452,"kind":512,"name":"constructor","url":"classes/customer.shopperlogin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperLogin"},{"id":1453,"kind":2048,"name":"authenticateCustomer","url":"classes/customer.shopperlogin.html#authenticatecustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1454,"kind":2048,"name":"authorizePasswordlessCustomer","url":"classes/customer.shopperlogin.html#authorizepasswordlesscustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1455,"kind":2048,"name":"logoutCustomer","url":"classes/customer.shopperlogin.html#logoutcustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1456,"kind":2048,"name":"authorizeCustomer","url":"classes/customer.shopperlogin.html#authorizecustomer","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1457,"kind":2048,"name":"getAccessToken","url":"classes/customer.shopperlogin.html#getaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1458,"kind":2048,"name":"getSessionBridgeAccessToken","url":"classes/customer.shopperlogin.html#getsessionbridgeaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1459,"kind":2048,"name":"getTrustedSystemAccessToken","url":"classes/customer.shopperlogin.html#gettrustedsystemaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1460,"kind":2048,"name":"getTrustedAgentAuthorizationToken","url":"classes/customer.shopperlogin.html#gettrustedagentauthorizationtoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1461,"kind":2048,"name":"getTrustedAgentAccessToken","url":"classes/customer.shopperlogin.html#gettrustedagentaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1462,"kind":2048,"name":"getPasswordResetToken","url":"classes/customer.shopperlogin.html#getpasswordresettoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1463,"kind":2048,"name":"resetPassword","url":"classes/customer.shopperlogin.html#resetpassword","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1464,"kind":2048,"name":"getPasswordLessAccessToken","url":"classes/customer.shopperlogin.html#getpasswordlessaccesstoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1465,"kind":2048,"name":"revokeToken","url":"classes/customer.shopperlogin.html#revoketoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1466,"kind":2048,"name":"introspectToken","url":"classes/customer.shopperlogin.html#introspecttoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1467,"kind":2048,"name":"getUserInfo","url":"classes/customer.shopperlogin.html#getuserinfo","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1468,"kind":2048,"name":"getWellknownOpenidConfiguration","url":"classes/customer.shopperlogin.html#getwellknownopenidconfiguration","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1469,"kind":2048,"name":"getJwksUri","url":"classes/customer.shopperlogin.html#getjwksuri","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperLogin"},{"id":1470,"kind":1024,"name":"clientConfig","url":"classes/customer.shopperlogin.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperLogin"},{"id":1471,"kind":4194304,"name":"LoginRequest","url":"classes/customer.shopperlogin.html#loginrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1472,"kind":4194304,"name":"TrustedAgentTokenRequest","url":"classes/customer.shopperlogin.html#trustedagenttokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1473,"kind":4194304,"name":"IntrospectResponse","url":"classes/customer.shopperlogin.html#introspectresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1474,"kind":4194304,"name":"PasswordlessLoginRequest","url":"classes/customer.shopperlogin.html#passwordlessloginrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1475,"kind":4194304,"name":"PasswordLessLoginTokenRequest","url":"classes/customer.shopperlogin.html#passwordlesslogintokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1476,"kind":4194304,"name":"Oauth2ErrorResponse","url":"classes/customer.shopperlogin.html#oauth2errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1477,"kind":4194304,"name":"PasswordActionVerifyRequest","url":"classes/customer.shopperlogin.html#passwordactionverifyrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1478,"kind":4194304,"name":"TrustedSystemTokenRequest","url":"classes/customer.shopperlogin.html#trustedsystemtokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1479,"kind":4194304,"name":"PasswordActionRequest","url":"classes/customer.shopperlogin.html#passwordactionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1480,"kind":4194304,"name":"TokenResponse","url":"classes/customer.shopperlogin.html#tokenresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1481,"kind":4194304,"name":"TokenRequest","url":"classes/customer.shopperlogin.html#tokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1482,"kind":4194304,"name":"TokenActionRequest","url":"classes/customer.shopperlogin.html#tokenactionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1483,"kind":4194304,"name":"SessionBridgeTokenRequest","url":"classes/customer.shopperlogin.html#sessionbridgetokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1484,"kind":4194304,"name":"SlasRateLimit","url":"classes/customer.shopperlogin.html#slasratelimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1485,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#slasratelimit.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.SlasRateLimit"},{"id":1486,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shopperlogin.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1487,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shopperlogin.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1488,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shopperlogin.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1489,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.DateRangeFilter"},{"id":1490,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shopperlogin.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1491,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.EtagResponse"},{"id":1492,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shopperlogin.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1493,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.IntegerRangeFilter"},{"id":1494,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shopperlogin.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1495,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited3.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited3"},{"id":1496,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shopperlogin.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1497,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#synccreated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.SyncCreated"},{"id":1498,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shopperlogin.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1499,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.DateConditionalRequest"},{"id":1500,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shopperlogin.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1501,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited5.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited5"},{"id":1502,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shopperlogin.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1503,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.EtagConditionalRequest"},{"id":1504,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shopperlogin.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1505,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.AsyncCreated"},{"id":1506,"kind":4194304,"name":"RateLimited","url":"classes/customer.shopperlogin.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1507,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited"},{"id":1508,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shopperlogin.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1509,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited2"},{"id":1510,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shopperlogin.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1511,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.OffsetPaginated"},{"id":1512,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shopperlogin.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1513,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#rangefilter.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RangeFilter"},{"id":1514,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shopperlogin.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1515,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#ratelimited4.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.RateLimited4"},{"id":1516,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shopperlogin.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1517,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.NumericRangeFilter"},{"id":1518,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shopperlogin.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1519,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.DatetimeRangeFilter"},{"id":1520,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shopperlogin.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1521,"kind":4194304,"name":"Error","url":"classes/customer.shopperlogin.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1522,"kind":4194304,"name":"Money","url":"classes/customer.shopperlogin.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1523,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shopperlogin.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1524,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shopperlogin.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1525,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shopperlogin.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1526,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shopperlogin.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1527,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shopperlogin.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1528,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shopperlogin.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1529,"kind":4194304,"name":"OpenObject","url":"classes/customer.shopperlogin.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1530,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shopperlogin.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1531,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#queryparamslimit.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.QueryParamsLimit"},{"id":1532,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shopperlogin.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1533,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#queryparamsoffset.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.QueryParamsOffset"},{"id":1534,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shopperlogin.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1535,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#sitespecific-1.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.SiteSpecific"},{"id":1536,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shopperlogin.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1537,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.NoPropertiesAllowed"},{"id":1538,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shopperlogin.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1539,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shopperlogin.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1540,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shopperlogin.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1541,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shopperlogin.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1542,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shopperlogin.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1543,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shopperlogin.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1544,"kind":4194304,"name":"Query","url":"classes/customer.shopperlogin.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1545,"kind":4194304,"name":"TermQuery","url":"classes/customer.shopperlogin.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1546,"kind":4194304,"name":"TermFilter","url":"classes/customer.shopperlogin.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1547,"kind":4194304,"name":"TextQuery","url":"classes/customer.shopperlogin.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1548,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shopperlogin.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1549,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shopperlogin.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1550,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shopperlogin.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1551,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shopperlogin.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1552,"kind":4194304,"name":"Filter","url":"classes/customer.shopperlogin.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1553,"kind":4194304,"name":"Sort","url":"classes/customer.shopperlogin.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1554,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shopperlogin.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1555,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shopperlogin.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1556,"kind":4194304,"name":"L10nString","url":"classes/customer.shopperlogin.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1557,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shopperlogin.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1558,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.AttributeDefinition"},{"id":1559,"kind":32,"name":"defaultValue","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1560,"kind":32,"name":"id","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1561,"kind":32,"name":"name","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1562,"kind":32,"name":"description","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1563,"kind":32,"name":"key","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1564,"kind":32,"name":"localizable","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1565,"kind":32,"name":"mandatory","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1566,"kind":32,"name":"max","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1567,"kind":32,"name":"minLength","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1568,"kind":32,"name":"min","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1569,"kind":32,"name":"multiValueType","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1570,"kind":32,"name":"regularExpression","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1571,"kind":32,"name":"scale","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1572,"kind":32,"name":"searchable","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1573,"kind":32,"name":"siteSpecific","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1574,"kind":32,"name":"system","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1575,"kind":32,"name":"unit","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1576,"kind":32,"name":"possibleValues","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1577,"kind":32,"name":"type","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1578,"kind":32,"name":"visible","url":"classes/customer.shopperlogin.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.AttributeDefinition.__type"},{"id":1579,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shopperlogin.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperLogin"},{"id":1580,"kind":65536,"name":"__type","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperLogin.PropertyValueDefinition"},{"id":1581,"kind":32,"name":"description","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1582,"kind":32,"name":"displayValue","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1583,"kind":32,"name":"id","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1584,"kind":32,"name":"position","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1585,"kind":32,"name":"value","url":"classes/customer.shopperlogin.html#propertyvaluedefinition.__type-11.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperLogin.PropertyValueDefinition.__type"},{"id":1586,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1587,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1588,"kind":128,"name":"ShopperSeo","url":"classes/customer.shopperseo.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1589,"kind":512,"name":"constructor","url":"classes/customer.shopperseo.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.ShopperSeo"},{"id":1590,"kind":2048,"name":"getUrlMapping","url":"classes/customer.shopperseo.html#geturlmapping","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.ShopperSeo"},{"id":1591,"kind":1024,"name":"clientConfig","url":"classes/customer.shopperseo.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.ShopperSeo"},{"id":1592,"kind":4194304,"name":"LocaleSpecific","url":"classes/customer.shopperseo.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1593,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#localespecific.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.LocaleSpecific"},{"id":1594,"kind":4194304,"name":"Money","url":"classes/customer.shopperseo.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1595,"kind":4194304,"name":"SimpleSearchResult","url":"classes/customer.shopperseo.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1596,"kind":4194304,"name":"SearchRequest","url":"classes/customer.shopperseo.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1597,"kind":4194304,"name":"PropertyDefinition","url":"classes/customer.shopperseo.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1598,"kind":4194304,"name":"LocalizedString","url":"classes/customer.shopperseo.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1599,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/customer.shopperseo.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1600,"kind":4194304,"name":"ClosedObject","url":"classes/customer.shopperseo.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1601,"kind":4194304,"name":"OpenObject","url":"classes/customer.shopperseo.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1602,"kind":4194304,"name":"QueryParamsLimit","url":"classes/customer.shopperseo.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1603,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#queryparamslimit.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.QueryParamsLimit"},{"id":1604,"kind":4194304,"name":"QueryParamsOffset","url":"classes/customer.shopperseo.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1605,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#queryparamsoffset.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.QueryParamsOffset"},{"id":1606,"kind":4194304,"name":"SiteSpecific","url":"classes/customer.shopperseo.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1607,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.SiteSpecific"},{"id":1608,"kind":4194304,"name":"Selectable","url":"classes/customer.shopperseo.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1609,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.Selectable"},{"id":1610,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/customer.shopperseo.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1611,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.NoPropertiesAllowed"},{"id":1612,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/customer.shopperseo.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1613,"kind":4194304,"name":"BoolFilter","url":"classes/customer.shopperseo.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1614,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/customer.shopperseo.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1615,"kind":4194304,"name":"MatchAllQuery","url":"classes/customer.shopperseo.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1616,"kind":4194304,"name":"FilteredQuery","url":"classes/customer.shopperseo.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1617,"kind":4194304,"name":"QueryFilter","url":"classes/customer.shopperseo.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1618,"kind":4194304,"name":"Query","url":"classes/customer.shopperseo.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1619,"kind":4194304,"name":"TermQuery","url":"classes/customer.shopperseo.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1620,"kind":4194304,"name":"TermFilter","url":"classes/customer.shopperseo.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1621,"kind":4194304,"name":"TextQuery","url":"classes/customer.shopperseo.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1622,"kind":4194304,"name":"Range2Filter","url":"classes/customer.shopperseo.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1623,"kind":4194304,"name":"BoolQuery","url":"classes/customer.shopperseo.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1624,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/customer.shopperseo.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1625,"kind":4194304,"name":"NestedQuery","url":"classes/customer.shopperseo.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1626,"kind":4194304,"name":"Filter","url":"classes/customer.shopperseo.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1627,"kind":4194304,"name":"Sort","url":"classes/customer.shopperseo.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1628,"kind":4194304,"name":"RangeFilter","url":"classes/customer.shopperseo.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1629,"kind":4194304,"name":"SearchRequestBase","url":"classes/customer.shopperseo.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1630,"kind":4194304,"name":"MoneyMnemonic","url":"classes/customer.shopperseo.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1631,"kind":4194304,"name":"L10nString","url":"classes/customer.shopperseo.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1632,"kind":4194304,"name":"AttributeDefinition","url":"classes/customer.shopperseo.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1633,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.AttributeDefinition"},{"id":1634,"kind":32,"name":"defaultValue","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1635,"kind":32,"name":"id","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1636,"kind":32,"name":"name","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1637,"kind":32,"name":"description","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1638,"kind":32,"name":"key","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1639,"kind":32,"name":"localizable","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1640,"kind":32,"name":"mandatory","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1641,"kind":32,"name":"max","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1642,"kind":32,"name":"minLength","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1643,"kind":32,"name":"min","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1644,"kind":32,"name":"multiValueType","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1645,"kind":32,"name":"regularExpression","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1646,"kind":32,"name":"scale","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1647,"kind":32,"name":"searchable","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1648,"kind":32,"name":"siteSpecific","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1649,"kind":32,"name":"system","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1650,"kind":32,"name":"unit","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1651,"kind":32,"name":"possibleValues","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1652,"kind":32,"name":"type","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1653,"kind":32,"name":"visible","url":"classes/customer.shopperseo.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.AttributeDefinition.__type"},{"id":1654,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/customer.shopperseo.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1655,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.PropertyValueDefinition"},{"id":1656,"kind":32,"name":"description","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1657,"kind":32,"name":"displayValue","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1658,"kind":32,"name":"id","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1659,"kind":32,"name":"position","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1660,"kind":32,"name":"value","url":"classes/customer.shopperseo.html#propertyvaluedefinition.__type-14.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"customer.ShopperSeo.PropertyValueDefinition.__type"},{"id":1661,"kind":4194304,"name":"UrlMapping","url":"classes/customer.shopperseo.html#urlmapping","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1662,"kind":4194304,"name":"BadRequest","url":"classes/customer.shopperseo.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1663,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.BadRequest"},{"id":1664,"kind":4194304,"name":"Unauthorized","url":"classes/customer.shopperseo.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1665,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#unauthorized.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.Unauthorized"},{"id":1666,"kind":4194304,"name":"NotFound","url":"classes/customer.shopperseo.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1667,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#notfound.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.NotFound"},{"id":1668,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.shopperseo.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1669,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.shopperseo.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1670,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.shopperseo.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1671,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.DateRangeFilter"},{"id":1672,"kind":4194304,"name":"EtagResponse","url":"classes/customer.shopperseo.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1673,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.EtagResponse"},{"id":1674,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.shopperseo.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1675,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.IntegerRangeFilter"},{"id":1676,"kind":4194304,"name":"RateLimited3","url":"classes/customer.shopperseo.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1677,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited3"},{"id":1678,"kind":4194304,"name":"SyncCreated","url":"classes/customer.shopperseo.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1679,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#synccreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.SyncCreated"},{"id":1680,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.shopperseo.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1681,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.DateConditionalRequest"},{"id":1682,"kind":4194304,"name":"RateLimited5","url":"classes/customer.shopperseo.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1683,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited5"},{"id":1684,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.shopperseo.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1685,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.EtagConditionalRequest"},{"id":1686,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.shopperseo.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1687,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.AsyncCreated"},{"id":1688,"kind":4194304,"name":"RateLimited","url":"classes/customer.shopperseo.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1689,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited"},{"id":1690,"kind":4194304,"name":"RateLimited2","url":"classes/customer.shopperseo.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1691,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited2"},{"id":1692,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.shopperseo.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1693,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#offsetpaginated.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.OffsetPaginated"},{"id":1694,"kind":4194304,"name":"RateLimited4","url":"classes/customer.shopperseo.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1695,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.RateLimited4"},{"id":1696,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.shopperseo.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1697,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#numericrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.NumericRangeFilter"},{"id":1698,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.shopperseo.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1699,"kind":65536,"name":"__type","url":"classes/customer.shopperseo.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.ShopperSeo.DatetimeRangeFilter"},{"id":1700,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.shopperseo.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1701,"kind":4194304,"name":"Error","url":"classes/customer.shopperseo.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.ShopperSeo"},{"id":1702,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1703,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1704,"kind":128,"name":"SlasAdmin","url":"classes/customer.slasadmin.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"customer"},{"id":1705,"kind":512,"name":"constructor","url":"classes/customer.slasadmin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"customer.SlasAdmin"},{"id":1706,"kind":2048,"name":"retrieveTenant","url":"classes/customer.slasadmin.html#retrievetenant","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1707,"kind":2048,"name":"registerTenant","url":"classes/customer.slasadmin.html#registertenant","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1708,"kind":2048,"name":"retrieveClients","url":"classes/customer.slasadmin.html#retrieveclients","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1709,"kind":2048,"name":"retrieveClient","url":"classes/customer.slasadmin.html#retrieveclient","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1710,"kind":2048,"name":"registerClient","url":"classes/customer.slasadmin.html#registerclient","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1711,"kind":2048,"name":"deleteClient","url":"classes/customer.slasadmin.html#deleteclient","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1712,"kind":2048,"name":"retrievePwdlessTemplate","url":"classes/customer.slasadmin.html#retrievepwdlesstemplate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1713,"kind":2048,"name":"registerPwdlessTemplate","url":"classes/customer.slasadmin.html#registerpwdlesstemplate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1714,"kind":2048,"name":"deletePwdlessTemplate","url":"classes/customer.slasadmin.html#deletepwdlesstemplate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1715,"kind":2048,"name":"retrieveIdentityProviders","url":"classes/customer.slasadmin.html#retrieveidentityproviders","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1716,"kind":2048,"name":"retrieveIdentityProvider","url":"classes/customer.slasadmin.html#retrieveidentityprovider","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1717,"kind":2048,"name":"registerIdentityProvider","url":"classes/customer.slasadmin.html#registeridentityprovider","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1718,"kind":2048,"name":"deleteIdentityProvider","url":"classes/customer.slasadmin.html#deleteidentityprovider","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1719,"kind":2048,"name":"deleteShopper","url":"classes/customer.slasadmin.html#deleteshopper","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"customer.SlasAdmin"},{"id":1720,"kind":1024,"name":"clientConfig","url":"classes/customer.slasadmin.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"customer.SlasAdmin"},{"id":1721,"kind":4194304,"name":"IdentityProviderResponse","url":"classes/customer.slasadmin.html#identityproviderresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1722,"kind":4194304,"name":"IdentityProviderListResponse","url":"classes/customer.slasadmin.html#identityproviderlistresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1723,"kind":4194304,"name":"PasswordActionTemplate","url":"classes/customer.slasadmin.html#passwordactiontemplate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1724,"kind":4194304,"name":"TenantListResponse","url":"classes/customer.slasadmin.html#tenantlistresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1725,"kind":4194304,"name":"Tenant","url":"classes/customer.slasadmin.html#tenant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1726,"kind":4194304,"name":"TenantDto","url":"classes/customer.slasadmin.html#tenantdto","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1727,"kind":4194304,"name":"ClientRequest","url":"classes/customer.slasadmin.html#clientrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1728,"kind":4194304,"name":"ClientListResponse","url":"classes/customer.slasadmin.html#clientlistresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1729,"kind":4194304,"name":"IdentityProvider","url":"classes/customer.slasadmin.html#identityprovider","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1730,"kind":4194304,"name":"Client","url":"classes/customer.slasadmin.html#client","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1731,"kind":4194304,"name":"ErrorResponse","url":"classes/customer.slasadmin.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1732,"kind":4194304,"name":"ChangeControlled","url":"classes/customer.slasadmin.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1733,"kind":4194304,"name":"DateRangeFilter","url":"classes/customer.slasadmin.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1734,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#daterangefilter.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.DateRangeFilter"},{"id":1735,"kind":4194304,"name":"EtagResponse","url":"classes/customer.slasadmin.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1736,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#etagresponse.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.EtagResponse"},{"id":1737,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/customer.slasadmin.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1738,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#integerrangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.IntegerRangeFilter"},{"id":1739,"kind":4194304,"name":"RateLimited3","url":"classes/customer.slasadmin.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1740,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited3.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited3"},{"id":1741,"kind":4194304,"name":"SyncCreated","url":"classes/customer.slasadmin.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1742,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#synccreated.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.SyncCreated"},{"id":1743,"kind":4194304,"name":"DateConditionalRequest","url":"classes/customer.slasadmin.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1744,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#dateconditionalrequest.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.DateConditionalRequest"},{"id":1745,"kind":4194304,"name":"RateLimited5","url":"classes/customer.slasadmin.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1746,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited5.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited5"},{"id":1747,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/customer.slasadmin.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1748,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#etagconditionalrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.EtagConditionalRequest"},{"id":1749,"kind":4194304,"name":"AsyncCreated","url":"classes/customer.slasadmin.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1750,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.AsyncCreated"},{"id":1751,"kind":4194304,"name":"RateLimited","url":"classes/customer.slasadmin.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1752,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited"},{"id":1753,"kind":4194304,"name":"RateLimited2","url":"classes/customer.slasadmin.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1754,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited2"},{"id":1755,"kind":4194304,"name":"OffsetPaginated","url":"classes/customer.slasadmin.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1756,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#offsetpaginated.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.OffsetPaginated"},{"id":1757,"kind":4194304,"name":"RangeFilter","url":"classes/customer.slasadmin.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1758,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#rangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RangeFilter"},{"id":1759,"kind":4194304,"name":"RateLimited4","url":"classes/customer.slasadmin.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1760,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#ratelimited4.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.RateLimited4"},{"id":1761,"kind":4194304,"name":"NumericRangeFilter","url":"classes/customer.slasadmin.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1762,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#numericrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.NumericRangeFilter"},{"id":1763,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/customer.slasadmin.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1764,"kind":65536,"name":"__type","url":"classes/customer.slasadmin.html#datetimerangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"customer.SlasAdmin.DatetimeRangeFilter"},{"id":1765,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/customer.slasadmin.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1766,"kind":4194304,"name":"Error","url":"classes/customer.slasadmin.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"customer.SlasAdmin"},{"id":1767,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/customer.html#user_agent_header-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1768,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/customer.html#user_agent_value-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"customer"},{"id":1769,"kind":1,"name":"discovery","url":"modules/discovery.html","classes":"tsd-kind-module"},{"id":1770,"kind":128,"name":"ShopperDiscoverySearch","url":"classes/discovery.shopperdiscoverysearch.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"discovery"},{"id":1771,"kind":512,"name":"constructor","url":"classes/discovery.shopperdiscoverysearch.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"discovery.ShopperDiscoverySearch"},{"id":1772,"kind":2048,"name":"retrieveResults","url":"classes/discovery.shopperdiscoverysearch.html#retrieveresults","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperDiscoverySearch"},{"id":1773,"kind":2048,"name":"getSuggestions","url":"classes/discovery.shopperdiscoverysearch.html#getsuggestions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperDiscoverySearch"},{"id":1774,"kind":1024,"name":"clientConfig","url":"classes/discovery.shopperdiscoverysearch.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"discovery.ShopperDiscoverySearch"},{"id":1775,"kind":4194304,"name":"ErrorResponse","url":"classes/discovery.shopperdiscoverysearch.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1776,"kind":4194304,"name":"EtagResponse","url":"classes/discovery.shopperdiscoverysearch.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1777,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#etagresponse.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.EtagResponse"},{"id":1778,"kind":4194304,"name":"RateLimited3","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1779,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited3.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited3"},{"id":1780,"kind":4194304,"name":"SyncCreated","url":"classes/discovery.shopperdiscoverysearch.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1781,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#synccreated.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.SyncCreated"},{"id":1782,"kind":4194304,"name":"DateConditionalRequest","url":"classes/discovery.shopperdiscoverysearch.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1783,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#dateconditionalrequest.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.DateConditionalRequest"},{"id":1784,"kind":4194304,"name":"RateLimited5","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1785,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited5.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited5"},{"id":1786,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/discovery.shopperdiscoverysearch.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1787,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#etagconditionalrequest.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.EtagConditionalRequest"},{"id":1788,"kind":4194304,"name":"AsyncCreated","url":"classes/discovery.shopperdiscoverysearch.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1789,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AsyncCreated"},{"id":1790,"kind":4194304,"name":"RateLimited","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1791,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited"},{"id":1792,"kind":4194304,"name":"RateLimited2","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1793,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited2"},{"id":1794,"kind":4194304,"name":"OffsetPaginated","url":"classes/discovery.shopperdiscoverysearch.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1795,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#offsetpaginated.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.OffsetPaginated"},{"id":1796,"kind":4194304,"name":"RateLimited4","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1797,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimited4.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimited4"},{"id":1798,"kind":4194304,"name":"Money","url":"classes/discovery.shopperdiscoverysearch.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1799,"kind":4194304,"name":"SimpleSearchResult","url":"classes/discovery.shopperdiscoverysearch.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1800,"kind":4194304,"name":"SearchRequest","url":"classes/discovery.shopperdiscoverysearch.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1801,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/discovery.shopperdiscoverysearch.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1802,"kind":4194304,"name":"ClosedObject","url":"classes/discovery.shopperdiscoverysearch.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1803,"kind":4194304,"name":"OpenObject","url":"classes/discovery.shopperdiscoverysearch.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1804,"kind":4194304,"name":"QueryParamsLimit","url":"classes/discovery.shopperdiscoverysearch.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1805,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryparamslimit.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryParamsLimit"},{"id":1806,"kind":4194304,"name":"QueryParamsOffset","url":"classes/discovery.shopperdiscoverysearch.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1807,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryparamsoffset.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryParamsOffset"},{"id":1808,"kind":4194304,"name":"SiteSpecific","url":"classes/discovery.shopperdiscoverysearch.html#sitespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1809,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#sitespecific.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.SiteSpecific"},{"id":1810,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/discovery.shopperdiscoverysearch.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1811,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#nopropertiesallowed.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.NoPropertiesAllowed"},{"id":1812,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/discovery.shopperdiscoverysearch.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1813,"kind":4194304,"name":"BoolFilter","url":"classes/discovery.shopperdiscoverysearch.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1814,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/discovery.shopperdiscoverysearch.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1815,"kind":4194304,"name":"MatchAllQuery","url":"classes/discovery.shopperdiscoverysearch.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1816,"kind":4194304,"name":"FilteredQuery","url":"classes/discovery.shopperdiscoverysearch.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1817,"kind":4194304,"name":"QueryFilter","url":"classes/discovery.shopperdiscoverysearch.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1818,"kind":4194304,"name":"Query","url":"classes/discovery.shopperdiscoverysearch.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1819,"kind":4194304,"name":"TermQuery","url":"classes/discovery.shopperdiscoverysearch.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1820,"kind":4194304,"name":"TermFilter","url":"classes/discovery.shopperdiscoverysearch.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1821,"kind":4194304,"name":"TextQuery","url":"classes/discovery.shopperdiscoverysearch.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1822,"kind":4194304,"name":"Range2Filter","url":"classes/discovery.shopperdiscoverysearch.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1823,"kind":4194304,"name":"BoolQuery","url":"classes/discovery.shopperdiscoverysearch.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1824,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/discovery.shopperdiscoverysearch.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1825,"kind":4194304,"name":"NestedQuery","url":"classes/discovery.shopperdiscoverysearch.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1826,"kind":4194304,"name":"Filter","url":"classes/discovery.shopperdiscoverysearch.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1827,"kind":4194304,"name":"Sort","url":"classes/discovery.shopperdiscoverysearch.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1828,"kind":4194304,"name":"RangeFilter","url":"classes/discovery.shopperdiscoverysearch.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1829,"kind":4194304,"name":"SearchRequestBase","url":"classes/discovery.shopperdiscoverysearch.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1830,"kind":4194304,"name":"MoneyMnemonic","url":"classes/discovery.shopperdiscoverysearch.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1831,"kind":4194304,"name":"ExpansionAttribute","url":"classes/discovery.shopperdiscoverysearch.html#expansionattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1832,"kind":4194304,"name":"PaginationLinks","url":"classes/discovery.shopperdiscoverysearch.html#paginationlinks","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1833,"kind":4194304,"name":"ResourceLink","url":"classes/discovery.shopperdiscoverysearch.html#resourcelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1834,"kind":4194304,"name":"Traceable","url":"classes/discovery.shopperdiscoverysearch.html#traceable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1835,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#traceable.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Traceable"},{"id":1836,"kind":4194304,"name":"Filterable","url":"classes/discovery.shopperdiscoverysearch.html#filterable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1837,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#filterable.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Filterable"},{"id":1838,"kind":4194304,"name":"CommonErrors","url":"classes/discovery.shopperdiscoverysearch.html#commonerrors","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1839,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#commonerrors.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.CommonErrors"},{"id":1840,"kind":4194304,"name":"ResourceCommonErrors","url":"classes/discovery.shopperdiscoverysearch.html#resourcecommonerrors","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1841,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourcecommonerrors.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceCommonErrors"},{"id":1842,"kind":4194304,"name":"Self","url":"classes/discovery.shopperdiscoverysearch.html#self-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1843,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#self-1.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Self"},{"id":1844,"kind":32,"name":"href","url":"classes/discovery.shopperdiscoverysearch.html#self-1.__type-40.href","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Self.__type"},{"id":1845,"kind":4194304,"name":"SelfResourceLink","url":"classes/discovery.shopperdiscoverysearch.html#selfresourcelink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1846,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#selfresourcelink.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.SelfResourceLink"},{"id":1847,"kind":32,"name":"self","url":"classes/discovery.shopperdiscoverysearch.html#selfresourcelink.__type-41.self-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.SelfResourceLink.__type"},{"id":1848,"kind":4194304,"name":"Pagination","url":"classes/discovery.shopperdiscoverysearch.html#pagination","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1849,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Pagination"},{"id":1850,"kind":32,"name":"prev","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19.prev","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Pagination.__type"},{"id":1851,"kind":32,"name":"self","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19.self","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Pagination.__type"},{"id":1852,"kind":32,"name":"next","url":"classes/discovery.shopperdiscoverysearch.html#pagination.__type-19.next","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Pagination.__type"},{"id":1853,"kind":4194304,"name":"ResourceBadRequest","url":"classes/discovery.shopperdiscoverysearch.html#resourcebadrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1854,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourcebadrequest.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceBadRequest"},{"id":1855,"kind":4194304,"name":"ResourceNonReadableHttpMessage","url":"classes/discovery.shopperdiscoverysearch.html#resourcenonreadablehttpmessage","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1856,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourcenonreadablehttpmessage.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceNonReadableHttpMessage"},{"id":1857,"kind":4194304,"name":"ResourceInvalidRequest","url":"classes/discovery.shopperdiscoverysearch.html#resourceinvalidrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1858,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#resourceinvalidrequest.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ResourceInvalidRequest"},{"id":1859,"kind":4194304,"name":"AuthenticationFailure","url":"classes/discovery.shopperdiscoverysearch.html#authenticationfailure","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1860,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#authenticationfailure.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AuthenticationFailure"},{"id":1861,"kind":4194304,"name":"BaseError","url":"classes/discovery.shopperdiscoverysearch.html#baseerror","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1862,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.BaseError"},{"id":1863,"kind":32,"name":"type","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1864,"kind":32,"name":"title","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.title","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1865,"kind":32,"name":"detail","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.detail","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1866,"kind":32,"name":"instance","url":"classes/discovery.shopperdiscoverysearch.html#baseerror.__type-7.instance","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.BaseError.__type"},{"id":1867,"kind":4194304,"name":"NotFound","url":"classes/discovery.shopperdiscoverysearch.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1868,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#notfound.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.NotFound"},{"id":1869,"kind":4194304,"name":"InvalidRequest","url":"classes/discovery.shopperdiscoverysearch.html#invalidrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1870,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#invalidrequest.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.InvalidRequest"},{"id":1871,"kind":4194304,"name":"AuthorizationFailure","url":"classes/discovery.shopperdiscoverysearch.html#authorizationfailure","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1872,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#authorizationfailure.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AuthorizationFailure"},{"id":1873,"kind":4194304,"name":"BadRequest","url":"classes/discovery.shopperdiscoverysearch.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1874,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#badrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.BadRequest"},{"id":1875,"kind":4194304,"name":"ServiceUnavailable","url":"classes/discovery.shopperdiscoverysearch.html#serviceunavailable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1876,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#serviceunavailable.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ServiceUnavailable"},{"id":1877,"kind":4194304,"name":"InternalServerError","url":"classes/discovery.shopperdiscoverysearch.html#internalservererror","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1878,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#internalservererror.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.InternalServerError"},{"id":1879,"kind":4194304,"name":"RateLimitExceeded","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1880,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded"},{"id":1881,"kind":32,"name":"requestLimit","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.requestlimit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1882,"kind":32,"name":"type","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1883,"kind":32,"name":"title","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.title-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1884,"kind":32,"name":"detail","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.detail-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1885,"kind":32,"name":"instance","url":"classes/discovery.shopperdiscoverysearch.html#ratelimitexceeded.__type-28.instance-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RateLimitExceeded.__type"},{"id":1886,"kind":4194304,"name":"NonReadableHttpMessage","url":"classes/discovery.shopperdiscoverysearch.html#nonreadablehttpmessage","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1887,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#nonreadablehttpmessage.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.NonReadableHttpMessage"},{"id":1888,"kind":4194304,"name":"AttributesQuery","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1889,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AttributesQuery"},{"id":1890,"kind":32,"name":"value","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1891,"kind":32,"name":"queryType","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.querytype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1892,"kind":32,"name":"correctableAttributes","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.correctableattributes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1893,"kind":32,"name":"highlighting","url":"classes/discovery.shopperdiscoverysearch.html#attributesquery.__type-3.highlighting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributesQuery.__type"},{"id":1894,"kind":4194304,"name":"Highlighting","url":"classes/discovery.shopperdiscoverysearch.html#highlighting-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1895,"kind":4194304,"name":"PhraseQuery","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1896,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.PhraseQuery"},{"id":1897,"kind":32,"name":"value","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.value-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1898,"kind":32,"name":"queryType","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.querytype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1899,"kind":32,"name":"correctableAttributes","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.correctableattributes-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1900,"kind":32,"name":"highlighting","url":"classes/discovery.shopperdiscoverysearch.html#phrasequery.__type-20.highlighting-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.PhraseQuery.__type"},{"id":1901,"kind":4194304,"name":"QueryOutput","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1902,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryOutput"},{"id":1903,"kind":32,"name":"hits","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.hits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1904,"kind":32,"name":"facets","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.facets-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1905,"kind":32,"name":"links","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.links","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1906,"kind":32,"name":"limit","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1907,"kind":32,"name":"offset","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1908,"kind":32,"name":"total","url":"classes/discovery.shopperdiscoverysearch.html#queryoutput.__type-22.total","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryOutput.__type"},{"id":1909,"kind":4194304,"name":"QueryInput","url":"classes/discovery.shopperdiscoverysearch.html#queryinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1910,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.QueryInput"},{"id":1911,"kind":32,"name":"query","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.query-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1912,"kind":32,"name":"refinements","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.refinements","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1913,"kind":32,"name":"returnedAttributes","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.returnedattributes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1914,"kind":32,"name":"grouping","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.grouping-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1915,"kind":32,"name":"facets","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.facets","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1916,"kind":32,"name":"facetRequest","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.facetrequest-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1917,"kind":32,"name":"sorting","url":"classes/discovery.shopperdiscoverysearch.html#queryinput.__type-21.sorting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.QueryInput.__type"},{"id":1918,"kind":4194304,"name":"CorrectableAttributes","url":"classes/discovery.shopperdiscoverysearch.html#correctableattributes-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1919,"kind":4194304,"name":"Refinement","url":"classes/discovery.shopperdiscoverysearch.html#refinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1920,"kind":4194304,"name":"ValueRefinement","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1921,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ValueRefinement"},{"id":1922,"kind":32,"name":"values","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50.values-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueRefinement.__type"},{"id":1923,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50.attributeid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueRefinement.__type"},{"id":1924,"kind":32,"name":"refinementType","url":"classes/discovery.shopperdiscoverysearch.html#valuerefinement.__type-50.refinementtype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueRefinement.__type"},{"id":1925,"kind":4194304,"name":"RangeRefinement","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1926,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RangeRefinement"},{"id":1927,"kind":32,"name":"min","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.min-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1928,"kind":32,"name":"max","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.max-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1929,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.attributeid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1930,"kind":32,"name":"refinementType","url":"classes/discovery.shopperdiscoverysearch.html#rangerefinement.__type-27.refinementtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeRefinement.__type"},{"id":1931,"kind":4194304,"name":"ValueFacetOutput","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1932,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput"},{"id":1933,"kind":32,"name":"values","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49.values","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput.__type"},{"id":1934,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49.attributeid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput.__type"},{"id":1935,"kind":32,"name":"facetType","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutput.__type-49.facettype-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetOutput.__type"},{"id":1936,"kind":4194304,"name":"FacetInput","url":"classes/discovery.shopperdiscoverysearch.html#facetinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1937,"kind":4194304,"name":"RangeFacetInput","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1938,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetinput.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RangeFacetInput"},{"id":1939,"kind":4194304,"name":"RangeFacetOutput","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1940,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput"},{"id":1941,"kind":32,"name":"min","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1942,"kind":32,"name":"max","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1943,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.attributeid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1944,"kind":32,"name":"facetType","url":"classes/discovery.shopperdiscoverysearch.html#rangefacetoutput.__type-26.facettype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.RangeFacetOutput.__type"},{"id":1945,"kind":4194304,"name":"ValueFacetInput","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1946,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput"},{"id":1947,"kind":32,"name":"mask","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48.mask","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput.__type"},{"id":1948,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48.attributeid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput.__type"},{"id":1949,"kind":32,"name":"facetType","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetinput.__type-48.facettype-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.ValueFacetInput.__type"},{"id":1950,"kind":4194304,"name":"FacetRequest","url":"classes/discovery.shopperdiscoverysearch.html#facetrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1951,"kind":4194304,"name":"ValueFacetOutputEntity","url":"classes/discovery.shopperdiscoverysearch.html#valuefacetoutputentity","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1952,"kind":4194304,"name":"FacetOutput","url":"classes/discovery.shopperdiscoverysearch.html#facetoutput","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1953,"kind":4194304,"name":"Sorting","url":"classes/discovery.shopperdiscoverysearch.html#sorting-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1954,"kind":4194304,"name":"AttributeSorting","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1955,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AttributeSorting"},{"id":1956,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2.attributeid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeSorting.__type"},{"id":1957,"kind":32,"name":"direction","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2.direction","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeSorting.__type"},{"id":1958,"kind":32,"name":"sortType","url":"classes/discovery.shopperdiscoverysearch.html#attributesorting.__type-2.sorttype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeSorting.__type"},{"id":1959,"kind":4194304,"name":"RelevanceSorting","url":"classes/discovery.shopperdiscoverysearch.html#relevancesorting","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1960,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#relevancesorting.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.RelevanceSorting"},{"id":1961,"kind":4194304,"name":"Grouping","url":"classes/discovery.shopperdiscoverysearch.html#grouping","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1962,"kind":4194304,"name":"AttributeGrouping","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1963,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping"},{"id":1964,"kind":32,"name":"attributeId","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1.attributeid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping.__type"},{"id":1965,"kind":32,"name":"returnedAttributes","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1.returnedattributes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping.__type"},{"id":1966,"kind":32,"name":"groupType","url":"classes/discovery.shopperdiscoverysearch.html#attributegrouping.__type-1.grouptype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.AttributeGrouping.__type"},{"id":1967,"kind":4194304,"name":"ItemReference","url":"classes/discovery.shopperdiscoverysearch.html#itemreference","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1968,"kind":4194304,"name":"Highlight","url":"classes/discovery.shopperdiscoverysearch.html#highlight","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1969,"kind":4194304,"name":"Result","url":"classes/discovery.shopperdiscoverysearch.html#result","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1970,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Result"},{"id":1971,"kind":32,"name":"matchedItem","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.matcheditem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1972,"kind":32,"name":"highlights","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.highlights","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1973,"kind":32,"name":"groupId","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.groupid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1974,"kind":32,"name":"totalGroupedItems","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.totalgroupeditems","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1975,"kind":32,"name":"groupedItems","url":"classes/discovery.shopperdiscoverysearch.html#result.__type-39.groupeditems","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Result.__type"},{"id":1976,"kind":4194304,"name":"Suggestion","url":"classes/discovery.shopperdiscoverysearch.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1977,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#suggestion.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Suggestion"},{"id":1978,"kind":32,"name":"phrase","url":"classes/discovery.shopperdiscoverysearch.html#suggestion.__type-44.phrase","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestion.__type"},{"id":1979,"kind":4194304,"name":"Suggestions","url":"classes/discovery.shopperdiscoverysearch.html#suggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperDiscoverySearch"},{"id":1980,"kind":65536,"name":"__type","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperDiscoverySearch.Suggestions"},{"id":1981,"kind":32,"name":"recentSearchPhrases","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45.recentsearchphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestions.__type"},{"id":1982,"kind":32,"name":"suggestedSearchPhrases","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45.suggestedsearchphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestions.__type"},{"id":1983,"kind":32,"name":"popularSearchPhrases","url":"classes/discovery.shopperdiscoverysearch.html#suggestions.__type-45.popularsearchphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperDiscoverySearch.Suggestions.__type"},{"id":1984,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/discovery.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":1985,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/discovery.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":1986,"kind":128,"name":"ShopperSearch","url":"classes/discovery.shoppersearch.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"discovery"},{"id":1987,"kind":512,"name":"constructor","url":"classes/discovery.shoppersearch.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"discovery.ShopperSearch"},{"id":1988,"kind":2048,"name":"productSearch","url":"classes/discovery.shoppersearch.html#productsearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperSearch"},{"id":1989,"kind":2048,"name":"getSearchSuggestions","url":"classes/discovery.shoppersearch.html#getsearchsuggestions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"discovery.ShopperSearch"},{"id":1990,"kind":1024,"name":"clientConfig","url":"classes/discovery.shoppersearch.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"discovery.ShopperSearch"},{"id":1991,"kind":4194304,"name":"Money","url":"classes/discovery.shoppersearch.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1992,"kind":4194304,"name":"SimpleSearchResult","url":"classes/discovery.shoppersearch.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1993,"kind":4194304,"name":"SearchRequest","url":"classes/discovery.shoppersearch.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1994,"kind":4194304,"name":"PropertyDefinition","url":"classes/discovery.shoppersearch.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1995,"kind":4194304,"name":"LocalizedString","url":"classes/discovery.shoppersearch.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1996,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/discovery.shoppersearch.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1997,"kind":4194304,"name":"ClosedObject","url":"classes/discovery.shoppersearch.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1998,"kind":4194304,"name":"OpenObject","url":"classes/discovery.shoppersearch.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":1999,"kind":4194304,"name":"QueryParamsLimit","url":"classes/discovery.shoppersearch.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2000,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#queryparamslimit.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.QueryParamsLimit"},{"id":2001,"kind":4194304,"name":"QueryParamsOffset","url":"classes/discovery.shoppersearch.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2002,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#queryparamsoffset.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.QueryParamsOffset"},{"id":2003,"kind":4194304,"name":"SiteSpecific","url":"classes/discovery.shoppersearch.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2004,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#sitespecific-1.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.SiteSpecific"},{"id":2005,"kind":4194304,"name":"Selectable","url":"classes/discovery.shoppersearch.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2006,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#selectable.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.Selectable"},{"id":2007,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/discovery.shoppersearch.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2008,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#nopropertiesallowed.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.NoPropertiesAllowed"},{"id":2009,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/discovery.shoppersearch.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2010,"kind":4194304,"name":"BoolFilter","url":"classes/discovery.shoppersearch.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2011,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/discovery.shoppersearch.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2012,"kind":4194304,"name":"MatchAllQuery","url":"classes/discovery.shoppersearch.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2013,"kind":4194304,"name":"FilteredQuery","url":"classes/discovery.shoppersearch.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2014,"kind":4194304,"name":"QueryFilter","url":"classes/discovery.shoppersearch.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2015,"kind":4194304,"name":"Query","url":"classes/discovery.shoppersearch.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2016,"kind":4194304,"name":"TermQuery","url":"classes/discovery.shoppersearch.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2017,"kind":4194304,"name":"TermFilter","url":"classes/discovery.shoppersearch.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2018,"kind":4194304,"name":"TextQuery","url":"classes/discovery.shoppersearch.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2019,"kind":4194304,"name":"Range2Filter","url":"classes/discovery.shoppersearch.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2020,"kind":4194304,"name":"BoolQuery","url":"classes/discovery.shoppersearch.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2021,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/discovery.shoppersearch.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2022,"kind":4194304,"name":"NestedQuery","url":"classes/discovery.shoppersearch.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2023,"kind":4194304,"name":"Filter","url":"classes/discovery.shoppersearch.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2024,"kind":4194304,"name":"Sort","url":"classes/discovery.shoppersearch.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2025,"kind":4194304,"name":"RangeFilter","url":"classes/discovery.shoppersearch.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2026,"kind":4194304,"name":"SearchRequestBase","url":"classes/discovery.shoppersearch.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2027,"kind":4194304,"name":"MoneyMnemonic","url":"classes/discovery.shoppersearch.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2028,"kind":4194304,"name":"L10nString","url":"classes/discovery.shoppersearch.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2029,"kind":4194304,"name":"AttributeDefinition","url":"classes/discovery.shoppersearch.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2030,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.AttributeDefinition"},{"id":2031,"kind":32,"name":"defaultValue","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2032,"kind":32,"name":"id","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2033,"kind":32,"name":"name","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2034,"kind":32,"name":"description","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2035,"kind":32,"name":"key","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2036,"kind":32,"name":"localizable","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2037,"kind":32,"name":"mandatory","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2038,"kind":32,"name":"max","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2039,"kind":32,"name":"minLength","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2040,"kind":32,"name":"min","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2041,"kind":32,"name":"multiValueType","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2042,"kind":32,"name":"regularExpression","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2043,"kind":32,"name":"scale","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2044,"kind":32,"name":"searchable","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2045,"kind":32,"name":"siteSpecific","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2046,"kind":32,"name":"system","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2047,"kind":32,"name":"unit","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2048,"kind":32,"name":"possibleValues","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2049,"kind":32,"name":"type","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2050,"kind":32,"name":"visible","url":"classes/discovery.shoppersearch.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.AttributeDefinition.__type"},{"id":2051,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2052,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.PropertyValueDefinition"},{"id":2053,"kind":32,"name":"description","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2054,"kind":32,"name":"displayValue","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2055,"kind":32,"name":"id","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2056,"kind":32,"name":"position","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2057,"kind":32,"name":"value","url":"classes/discovery.shoppersearch.html#propertyvaluedefinition.__type-12.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"discovery.ShopperSearch.PropertyValueDefinition.__type"},{"id":2058,"kind":4194304,"name":"ErrorResponse","url":"classes/discovery.shoppersearch.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2059,"kind":4194304,"name":"ChangeControlled","url":"classes/discovery.shoppersearch.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2060,"kind":4194304,"name":"DateRangeFilter","url":"classes/discovery.shoppersearch.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2061,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.DateRangeFilter"},{"id":2062,"kind":4194304,"name":"EtagResponse","url":"classes/discovery.shoppersearch.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2063,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.EtagResponse"},{"id":2064,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/discovery.shoppersearch.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2065,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.IntegerRangeFilter"},{"id":2066,"kind":4194304,"name":"RateLimited3","url":"classes/discovery.shoppersearch.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2067,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited3.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited3"},{"id":2068,"kind":4194304,"name":"SyncCreated","url":"classes/discovery.shoppersearch.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2069,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#synccreated.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.SyncCreated"},{"id":2070,"kind":4194304,"name":"DateConditionalRequest","url":"classes/discovery.shoppersearch.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2071,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.DateConditionalRequest"},{"id":2072,"kind":4194304,"name":"RateLimited5","url":"classes/discovery.shoppersearch.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2073,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited5.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited5"},{"id":2074,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/discovery.shoppersearch.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2075,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.EtagConditionalRequest"},{"id":2076,"kind":4194304,"name":"AsyncCreated","url":"classes/discovery.shoppersearch.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2077,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.AsyncCreated"},{"id":2078,"kind":4194304,"name":"RateLimited","url":"classes/discovery.shoppersearch.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2079,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited"},{"id":2080,"kind":4194304,"name":"RateLimited2","url":"classes/discovery.shoppersearch.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2081,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited2"},{"id":2082,"kind":4194304,"name":"OffsetPaginated","url":"classes/discovery.shoppersearch.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2083,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#offsetpaginated.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.OffsetPaginated"},{"id":2084,"kind":4194304,"name":"RateLimited4","url":"classes/discovery.shoppersearch.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2085,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#ratelimited4.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.RateLimited4"},{"id":2086,"kind":4194304,"name":"NumericRangeFilter","url":"classes/discovery.shoppersearch.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2087,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#numericrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.NumericRangeFilter"},{"id":2088,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/discovery.shoppersearch.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2089,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.DatetimeRangeFilter"},{"id":2090,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/discovery.shoppersearch.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2091,"kind":4194304,"name":"Error","url":"classes/discovery.shoppersearch.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2092,"kind":4194304,"name":"ProductPriceTable","url":"classes/discovery.shoppersearch.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2093,"kind":4194304,"name":"ProductRef","url":"classes/discovery.shoppersearch.html#productref","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2094,"kind":4194304,"name":"SuggestedTerms","url":"classes/discovery.shoppersearch.html#suggestedterms","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2095,"kind":4194304,"name":"PriceRange","url":"classes/discovery.shoppersearch.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2096,"kind":4194304,"name":"CategorySuggestions","url":"classes/discovery.shoppersearch.html#categorysuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2097,"kind":4194304,"name":"SuggestedProduct","url":"classes/discovery.shoppersearch.html#suggestedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2098,"kind":4194304,"name":"SuggestedPhrase","url":"classes/discovery.shoppersearch.html#suggestedphrase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2099,"kind":4194304,"name":"VariationAttribute","url":"classes/discovery.shoppersearch.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2100,"kind":4194304,"name":"ProductSuggestions","url":"classes/discovery.shoppersearch.html#productsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2101,"kind":4194304,"name":"SuggestedCategory","url":"classes/discovery.shoppersearch.html#suggestedcategory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2102,"kind":4194304,"name":"ProductType","url":"classes/discovery.shoppersearch.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2103,"kind":4194304,"name":"Variant","url":"classes/discovery.shoppersearch.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2104,"kind":4194304,"name":"VariationGroup","url":"classes/discovery.shoppersearch.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2105,"kind":4194304,"name":"BrandSuggestions","url":"classes/discovery.shoppersearch.html#brandsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2106,"kind":4194304,"name":"ProductSearchRefinementValue","url":"classes/discovery.shoppersearch.html#productsearchrefinementvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2107,"kind":4194304,"name":"ProductSearchSortingOption","url":"classes/discovery.shoppersearch.html#productsearchsortingoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2108,"kind":4194304,"name":"ImageGroup","url":"classes/discovery.shoppersearch.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2109,"kind":4194304,"name":"SuggestedTerm","url":"classes/discovery.shoppersearch.html#suggestedterm","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2110,"kind":4194304,"name":"ProductSearchRefinement","url":"classes/discovery.shoppersearch.html#productsearchrefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2111,"kind":4194304,"name":"CustomSuggestions","url":"classes/discovery.shoppersearch.html#customsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2112,"kind":4194304,"name":"ProductSearchHit","url":"classes/discovery.shoppersearch.html#productsearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2113,"kind":4194304,"name":"ProductSearchResult","url":"classes/discovery.shoppersearch.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2114,"kind":4194304,"name":"Image","url":"classes/discovery.shoppersearch.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2115,"kind":4194304,"name":"VariationAttributeValue","url":"classes/discovery.shoppersearch.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2116,"kind":4194304,"name":"ProductPromotion","url":"classes/discovery.shoppersearch.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2117,"kind":4194304,"name":"Suggestion","url":"classes/discovery.shoppersearch.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2118,"kind":4194304,"name":"SuggestionResult","url":"classes/discovery.shoppersearch.html#suggestionresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2119,"kind":4194304,"name":"Unauthorized","url":"classes/discovery.shoppersearch.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2120,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#unauthorized.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.Unauthorized"},{"id":2121,"kind":4194304,"name":"BadRequest","url":"classes/discovery.shoppersearch.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"discovery.ShopperSearch"},{"id":2122,"kind":65536,"name":"__type","url":"classes/discovery.shoppersearch.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"discovery.ShopperSearch.BadRequest"},{"id":2123,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/discovery.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":2124,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/discovery.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"discovery"},{"id":2125,"kind":1,"name":"experience","url":"modules/experience.html","classes":"tsd-kind-module"},{"id":2126,"kind":128,"name":"ShopperExperience","url":"classes/experience.shopperexperience.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"experience"},{"id":2127,"kind":512,"name":"constructor","url":"classes/experience.shopperexperience.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"experience.ShopperExperience"},{"id":2128,"kind":2048,"name":"getPages","url":"classes/experience.shopperexperience.html#getpages","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"experience.ShopperExperience"},{"id":2129,"kind":2048,"name":"getPage","url":"classes/experience.shopperexperience.html#getpage","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"experience.ShopperExperience"},{"id":2130,"kind":1024,"name":"clientConfig","url":"classes/experience.shopperexperience.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"experience.ShopperExperience"},{"id":2131,"kind":4194304,"name":"PageResult","url":"classes/experience.shopperexperience.html#pageresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2132,"kind":4194304,"name":"Page","url":"classes/experience.shopperexperience.html#page","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2133,"kind":4194304,"name":"Region","url":"classes/experience.shopperexperience.html#region","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2134,"kind":4194304,"name":"Component","url":"classes/experience.shopperexperience.html#component","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2135,"kind":4194304,"name":"ErrorResponse","url":"classes/experience.shopperexperience.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2136,"kind":4194304,"name":"ChangeControlled","url":"classes/experience.shopperexperience.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2137,"kind":4194304,"name":"DateRangeFilter","url":"classes/experience.shopperexperience.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2138,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#daterangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.DateRangeFilter"},{"id":2139,"kind":4194304,"name":"EtagResponse","url":"classes/experience.shopperexperience.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2140,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#etagresponse.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.EtagResponse"},{"id":2141,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/experience.shopperexperience.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2142,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#integerrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.IntegerRangeFilter"},{"id":2143,"kind":4194304,"name":"RateLimited3","url":"classes/experience.shopperexperience.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2144,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited3.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited3"},{"id":2145,"kind":4194304,"name":"SyncCreated","url":"classes/experience.shopperexperience.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2146,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#synccreated.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.SyncCreated"},{"id":2147,"kind":4194304,"name":"DateConditionalRequest","url":"classes/experience.shopperexperience.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2148,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#dateconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.DateConditionalRequest"},{"id":2149,"kind":4194304,"name":"RateLimited5","url":"classes/experience.shopperexperience.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2150,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited5.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited5"},{"id":2151,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/experience.shopperexperience.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2152,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#etagconditionalrequest.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.EtagConditionalRequest"},{"id":2153,"kind":4194304,"name":"AsyncCreated","url":"classes/experience.shopperexperience.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2154,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#asynccreated.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AsyncCreated"},{"id":2155,"kind":4194304,"name":"RateLimited","url":"classes/experience.shopperexperience.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2156,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited"},{"id":2157,"kind":4194304,"name":"RateLimited2","url":"classes/experience.shopperexperience.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2158,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited2"},{"id":2159,"kind":4194304,"name":"OffsetPaginated","url":"classes/experience.shopperexperience.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2160,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.OffsetPaginated"},{"id":2161,"kind":4194304,"name":"RangeFilter","url":"classes/experience.shopperexperience.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2162,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#rangefilter.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RangeFilter"},{"id":2163,"kind":4194304,"name":"RateLimited4","url":"classes/experience.shopperexperience.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2164,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#ratelimited4.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.RateLimited4"},{"id":2165,"kind":4194304,"name":"NumericRangeFilter","url":"classes/experience.shopperexperience.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2166,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.NumericRangeFilter"},{"id":2167,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/experience.shopperexperience.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2168,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#datetimerangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.DatetimeRangeFilter"},{"id":2169,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/experience.shopperexperience.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2170,"kind":4194304,"name":"Error","url":"classes/experience.shopperexperience.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2171,"kind":4194304,"name":"Money","url":"classes/experience.shopperexperience.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2172,"kind":4194304,"name":"SimpleSearchResult","url":"classes/experience.shopperexperience.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2173,"kind":4194304,"name":"SearchRequest","url":"classes/experience.shopperexperience.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2174,"kind":4194304,"name":"PropertyDefinition","url":"classes/experience.shopperexperience.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2175,"kind":4194304,"name":"LocalizedString","url":"classes/experience.shopperexperience.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2176,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/experience.shopperexperience.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2177,"kind":4194304,"name":"ClosedObject","url":"classes/experience.shopperexperience.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2178,"kind":4194304,"name":"OpenObject","url":"classes/experience.shopperexperience.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2179,"kind":4194304,"name":"QueryParamsLimit","url":"classes/experience.shopperexperience.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2180,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#queryparamslimit.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.QueryParamsLimit"},{"id":2181,"kind":4194304,"name":"QueryParamsOffset","url":"classes/experience.shopperexperience.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2182,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#queryparamsoffset.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.QueryParamsOffset"},{"id":2183,"kind":4194304,"name":"SiteSpecific","url":"classes/experience.shopperexperience.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2184,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#sitespecific-1.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.SiteSpecific"},{"id":2185,"kind":4194304,"name":"Selectable","url":"classes/experience.shopperexperience.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2186,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#selectable.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.Selectable"},{"id":2187,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/experience.shopperexperience.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2188,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#nopropertiesallowed.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.NoPropertiesAllowed"},{"id":2189,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/experience.shopperexperience.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2190,"kind":4194304,"name":"BoolFilter","url":"classes/experience.shopperexperience.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2191,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/experience.shopperexperience.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2192,"kind":4194304,"name":"MatchAllQuery","url":"classes/experience.shopperexperience.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2193,"kind":4194304,"name":"FilteredQuery","url":"classes/experience.shopperexperience.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2194,"kind":4194304,"name":"QueryFilter","url":"classes/experience.shopperexperience.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2195,"kind":4194304,"name":"Query","url":"classes/experience.shopperexperience.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2196,"kind":4194304,"name":"TermQuery","url":"classes/experience.shopperexperience.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2197,"kind":4194304,"name":"TermFilter","url":"classes/experience.shopperexperience.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2198,"kind":4194304,"name":"TextQuery","url":"classes/experience.shopperexperience.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2199,"kind":4194304,"name":"Range2Filter","url":"classes/experience.shopperexperience.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2200,"kind":4194304,"name":"BoolQuery","url":"classes/experience.shopperexperience.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2201,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/experience.shopperexperience.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2202,"kind":4194304,"name":"NestedQuery","url":"classes/experience.shopperexperience.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2203,"kind":4194304,"name":"Filter","url":"classes/experience.shopperexperience.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2204,"kind":4194304,"name":"Sort","url":"classes/experience.shopperexperience.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2205,"kind":4194304,"name":"SearchRequestBase","url":"classes/experience.shopperexperience.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2206,"kind":4194304,"name":"MoneyMnemonic","url":"classes/experience.shopperexperience.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2207,"kind":4194304,"name":"L10nString","url":"classes/experience.shopperexperience.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2208,"kind":4194304,"name":"AttributeDefinition","url":"classes/experience.shopperexperience.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2209,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AttributeDefinition"},{"id":2210,"kind":32,"name":"defaultValue","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2211,"kind":32,"name":"id","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2212,"kind":32,"name":"name","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2213,"kind":32,"name":"description","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2214,"kind":32,"name":"key","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2215,"kind":32,"name":"localizable","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2216,"kind":32,"name":"mandatory","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2217,"kind":32,"name":"max","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2218,"kind":32,"name":"minLength","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2219,"kind":32,"name":"min","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2220,"kind":32,"name":"multiValueType","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2221,"kind":32,"name":"regularExpression","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2222,"kind":32,"name":"scale","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2223,"kind":32,"name":"searchable","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2224,"kind":32,"name":"siteSpecific","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2225,"kind":32,"name":"system","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2226,"kind":32,"name":"unit","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2227,"kind":32,"name":"possibleValues","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2228,"kind":32,"name":"type","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2229,"kind":32,"name":"visible","url":"classes/experience.shopperexperience.html#attributedefinition.__type-3.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.AttributeDefinition.__type"},{"id":2230,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/experience.shopperexperience.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2231,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.PropertyValueDefinition"},{"id":2232,"kind":32,"name":"description","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2233,"kind":32,"name":"displayValue","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2234,"kind":32,"name":"id","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2235,"kind":32,"name":"position","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2236,"kind":32,"name":"value","url":"classes/experience.shopperexperience.html#propertyvaluedefinition.__type-16.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"experience.ShopperExperience.PropertyValueDefinition.__type"},{"id":2237,"kind":4194304,"name":"BusinessObjectIdInvalid","url":"classes/experience.shopperexperience.html#businessobjectidinvalid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2238,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#businessobjectidinvalid.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.BusinessObjectIdInvalid"},{"id":2239,"kind":4194304,"name":"AspectTypeNotFound","url":"classes/experience.shopperexperience.html#aspecttypenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2240,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#aspecttypenotfound.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AspectTypeNotFound"},{"id":2241,"kind":4194304,"name":"PageNotFound","url":"classes/experience.shopperexperience.html#pagenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2242,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#pagenotfound.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.PageNotFound"},{"id":2243,"kind":4194304,"name":"AspectAttributeInvalid","url":"classes/experience.shopperexperience.html#aspectattributeinvalid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2244,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#aspectattributeinvalid.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.AspectAttributeInvalid"},{"id":2245,"kind":4194304,"name":"LocaleSpecific","url":"classes/experience.shopperexperience.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"experience.ShopperExperience"},{"id":2246,"kind":65536,"name":"__type","url":"classes/experience.shopperexperience.html#localespecific.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"experience.ShopperExperience.LocaleSpecific"},{"id":2247,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/experience.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"experience"},{"id":2248,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/experience.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"experience"},{"id":2249,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":2250,"kind":32,"name":"CUSTOM_API_DEFAULT_BASE_URI","url":"modules/helpers.html#custom_api_default_base_uri","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":2251,"kind":64,"name":"contentTypeHeaderExists","url":"modules/helpers.html#contenttypeheaderexists","classes":"tsd-kind-function tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":2252,"kind":4194304,"name":"CustomApiParameters","url":"modules/helpers.html#customapiparameters","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":2253,"kind":65536,"name":"__type","url":"modules/helpers.html#customapiparameters.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.CustomApiParameters"},{"id":2254,"kind":32,"name":"organizationId","url":"modules/helpers.html#customapiparameters.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2255,"kind":32,"name":"shortCode","url":"modules/helpers.html#customapiparameters.__type.shortcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2256,"kind":32,"name":"endpointName","url":"modules/helpers.html#customapiparameters.__type.endpointname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2257,"kind":32,"name":"apiName","url":"modules/helpers.html#customapiparameters.__type.apiname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2258,"kind":32,"name":"apiVersion","url":"modules/helpers.html#customapiparameters.__type.apiversion","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"helpers.CustomApiParameters.__type"},{"id":2259,"kind":64,"name":"callCustomEndpoint","url":"modules/helpers.html#callcustomendpoint","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2260,"kind":256,"name":"ISlasClient","url":"interfaces/helpers.islasclient.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":2261,"kind":2048,"name":"authenticateCustomer","url":"interfaces/helpers.islasclient.html#authenticatecustomer","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2262,"kind":2048,"name":"authorizeCustomer","url":"interfaces/helpers.islasclient.html#authorizecustomer","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2263,"kind":2048,"name":"getAccessToken","url":"interfaces/helpers.islasclient.html#getaccesstoken","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2264,"kind":2048,"name":"logoutCustomer","url":"interfaces/helpers.islasclient.html#logoutcustomer","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2265,"kind":1024,"name":"clientConfig","url":"interfaces/helpers.islasclient.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.ISlasClient"},{"id":2266,"kind":4194304,"name":"LoginRequest","url":"modules/helpers.html#loginrequest","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":2267,"kind":4194304,"name":"TokenRequest","url":"modules/helpers.html#tokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":2268,"kind":4194304,"name":"TokenResponse","url":"modules/helpers.html#tokenresponse","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":2269,"kind":64,"name":"stringToBase64","url":"modules/helpers.html#stringtobase64","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2270,"kind":64,"name":"getCodeAndUsidFromUrl","url":"modules/helpers.html#getcodeandusidfromurl","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2271,"kind":64,"name":"createCodeVerifier","url":"modules/helpers.html#createcodeverifier","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2272,"kind":64,"name":"generateCodeChallenge","url":"modules/helpers.html#generatecodechallenge","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2273,"kind":64,"name":"authorize","url":"modules/helpers.html#authorize","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2274,"kind":64,"name":"loginGuestUserPrivate","url":"modules/helpers.html#loginguestuserprivate","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2275,"kind":64,"name":"loginGuestUser","url":"modules/helpers.html#loginguestuser","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2276,"kind":64,"name":"loginRegisteredUserB2Cprivate","url":"modules/helpers.html#loginregistereduserb2cprivate","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2277,"kind":64,"name":"loginRegisteredUserB2C","url":"modules/helpers.html#loginregistereduserb2c","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2278,"kind":64,"name":"refreshAccessToken","url":"modules/helpers.html#refreshaccesstoken","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2279,"kind":64,"name":"refreshAccessTokenPrivate","url":"modules/helpers.html#refreshaccesstokenprivate","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2280,"kind":64,"name":"logout","url":"modules/helpers.html#logout","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":2281,"kind":2097152,"name":"helpers","url":"modules/helpers.html#helpers-1","classes":"tsd-kind-object-literal tsd-parent-kind-module","parent":"helpers"},{"id":2282,"kind":32,"name":"callCustomEndpoint","url":"modules/helpers.html#helpers-1.callcustomendpoint-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"helpers.helpers"},{"id":2283,"kind":1,"name":"pricing","url":"modules/pricing.html","classes":"tsd-kind-module"},{"id":2284,"kind":128,"name":"Assignments","url":"classes/pricing.assignments.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2285,"kind":512,"name":"constructor","url":"classes/pricing.assignments.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Assignments"},{"id":2286,"kind":2048,"name":"assignmentsSearch","url":"classes/pricing.assignments.html#assignmentssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Assignments"},{"id":2287,"kind":1024,"name":"clientConfig","url":"classes/pricing.assignments.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Assignments"},{"id":2288,"kind":4194304,"name":"TimeOfDay","url":"classes/pricing.assignments.html#timeofday-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2289,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#timeofday-1.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.TimeOfDay"},{"id":2290,"kind":32,"name":"timeFrom","url":"classes/pricing.assignments.html#timeofday-1.__type-29.timefrom","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.TimeOfDay.__type"},{"id":2291,"kind":32,"name":"timeTo","url":"classes/pricing.assignments.html#timeofday-1.__type-29.timeto","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.TimeOfDay.__type"},{"id":2292,"kind":4194304,"name":"Campaign","url":"classes/pricing.assignments.html#campaign","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2293,"kind":4194304,"name":"PromotionCampaignAssignment","url":"classes/pricing.assignments.html#promotioncampaignassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2294,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.PromotionCampaignAssignment"},{"id":2295,"kind":32,"name":"campaign","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.campaign-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2296,"kind":32,"name":"campaignId","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.campaignid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2297,"kind":32,"name":"coupons","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.coupons","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2298,"kind":32,"name":"customerGroups","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.customergroups","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2299,"kind":32,"name":"description","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2300,"kind":32,"name":"enabled","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.enabled-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2301,"kind":32,"name":"promotion","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.promotion-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2302,"kind":32,"name":"promotionId","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.promotionid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2303,"kind":32,"name":"rank","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.rank","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2304,"kind":32,"name":"schedule","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.schedule-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2305,"kind":32,"name":"sourceCodeGroups","url":"classes/pricing.assignments.html#promotioncampaignassignment.__type-13.sourcecodegroups","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionCampaignAssignment.__type"},{"id":2306,"kind":4194304,"name":"Tag","url":"classes/pricing.assignments.html#tag","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2307,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#tag.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.Tag"},{"id":2308,"kind":32,"name":"tagId","url":"classes/pricing.assignments.html#tag.__type-28.tagid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.Tag.__type"},{"id":2309,"kind":4194304,"name":"Promotion","url":"classes/pricing.assignments.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2310,"kind":4194304,"name":"PromotionAssignmentInformation","url":"classes/pricing.assignments.html#promotionassignmentinformation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2311,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.PromotionAssignmentInformation"},{"id":2312,"kind":32,"name":"abtestId","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.abtestid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2313,"kind":32,"name":"abtestSegmentId","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.abtestsegmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2314,"kind":32,"name":"active","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.active","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2315,"kind":32,"name":"activeAbtestAssignments","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.activeabtestassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2316,"kind":32,"name":"activeCampaignAssignments","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.activecampaignassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2317,"kind":32,"name":"campaignId","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.campaignid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2318,"kind":32,"name":"enabled","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.enabled-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2319,"kind":32,"name":"endDate","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.enddate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2320,"kind":32,"name":"schedule","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.schedule-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2321,"kind":32,"name":"scheduleType","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.scheduletype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2322,"kind":32,"name":"startDate","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.startdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2323,"kind":32,"name":"upcomingAbtestAssignments","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.upcomingabtestassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2324,"kind":32,"name":"upcomingCampaignAssignments","url":"classes/pricing.assignments.html#promotionassignmentinformation.__type-12.upcomingcampaignassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAssignmentInformation.__type"},{"id":2325,"kind":4194304,"name":"Schedule","url":"classes/pricing.assignments.html#schedule-3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2326,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#schedule-3.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.Schedule"},{"id":2327,"kind":32,"name":"endDate","url":"classes/pricing.assignments.html#schedule-3.__type-24.enddate-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.Schedule.__type"},{"id":2328,"kind":32,"name":"recurrence","url":"classes/pricing.assignments.html#schedule-3.__type-24.recurrence-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.Schedule.__type"},{"id":2329,"kind":32,"name":"startDate","url":"classes/pricing.assignments.html#schedule-3.__type-24.startdate-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.Schedule.__type"},{"id":2330,"kind":4194304,"name":"PromotionCampaignAssignmentSearchResult","url":"classes/pricing.assignments.html#promotioncampaignassignmentsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2331,"kind":4194304,"name":"Recurrence","url":"classes/pricing.assignments.html#recurrence","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2332,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#recurrence.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.Recurrence"},{"id":2333,"kind":32,"name":"dayOfWeek","url":"classes/pricing.assignments.html#recurrence.__type-23.dayofweek","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.Recurrence.__type"},{"id":2334,"kind":32,"name":"timeOfDay","url":"classes/pricing.assignments.html#recurrence.__type-23.timeofday","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.Recurrence.__type"},{"id":2335,"kind":4194304,"name":"PromotionAbtestGroupAssignment","url":"classes/pricing.assignments.html#promotionabtestgroupassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2336,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#promotionabtestgroupassignment.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.PromotionAbtestGroupAssignment"},{"id":2337,"kind":32,"name":"abtestDescription","url":"classes/pricing.assignments.html#promotionabtestgroupassignment.__type-11.abtestdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAbtestGroupAssignment.__type"},{"id":2338,"kind":32,"name":"abtestId","url":"classes/pricing.assignments.html#promotionabtestgroupassignment.__type-11.abtestid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAbtestGroupAssignment.__type"},{"id":2339,"kind":32,"name":"enabled","url":"classes/pricing.assignments.html#promotionabtestgroupassignment.__type-11.enabled","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAbtestGroupAssignment.__type"},{"id":2340,"kind":32,"name":"schedule","url":"classes/pricing.assignments.html#promotionabtestgroupassignment.__type-11.schedule","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAbtestGroupAssignment.__type"},{"id":2341,"kind":32,"name":"segmentDescription","url":"classes/pricing.assignments.html#promotionabtestgroupassignment.__type-11.segmentdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAbtestGroupAssignment.__type"},{"id":2342,"kind":32,"name":"segmentId","url":"classes/pricing.assignments.html#promotionabtestgroupassignment.__type-11.segmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PromotionAbtestGroupAssignment.__type"},{"id":2343,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.assignments.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2344,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.assignments.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2345,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.assignments.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2346,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.DateRangeFilter"},{"id":2347,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.assignments.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2348,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.EtagResponse"},{"id":2349,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.assignments.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2350,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.IntegerRangeFilter"},{"id":2351,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.assignments.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2352,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited3.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited3"},{"id":2353,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.assignments.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2354,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#synccreated.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.SyncCreated"},{"id":2355,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.assignments.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2356,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.DateConditionalRequest"},{"id":2357,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.assignments.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2358,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited5.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited5"},{"id":2359,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.assignments.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2360,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.EtagConditionalRequest"},{"id":2361,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.assignments.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2362,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.AsyncCreated"},{"id":2363,"kind":4194304,"name":"RateLimited","url":"classes/pricing.assignments.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2364,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited"},{"id":2365,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.assignments.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2366,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited2"},{"id":2367,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.assignments.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2368,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.OffsetPaginated"},{"id":2369,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.assignments.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2370,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#rangefilter.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RangeFilter"},{"id":2371,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.assignments.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2372,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#ratelimited4.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.RateLimited4"},{"id":2373,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.assignments.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2374,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.NumericRangeFilter"},{"id":2375,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.assignments.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2376,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.DatetimeRangeFilter"},{"id":2377,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.assignments.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2378,"kind":4194304,"name":"Error","url":"classes/pricing.assignments.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2379,"kind":4194304,"name":"Money","url":"classes/pricing.assignments.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2380,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.assignments.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2381,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.assignments.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2382,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.assignments.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2383,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.assignments.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2384,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.assignments.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2385,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.assignments.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2386,"kind":4194304,"name":"OpenObject","url":"classes/pricing.assignments.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2387,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.assignments.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2388,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#queryparamslimit.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.QueryParamsLimit"},{"id":2389,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.assignments.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2390,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#queryparamsoffset.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.QueryParamsOffset"},{"id":2391,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.assignments.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2392,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#sitespecific-1.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.SiteSpecific"},{"id":2393,"kind":4194304,"name":"Selectable","url":"classes/pricing.assignments.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2394,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#selectable.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.Selectable"},{"id":2395,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.assignments.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2396,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.NoPropertiesAllowed"},{"id":2397,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.assignments.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2398,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.assignments.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2399,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.assignments.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2400,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.assignments.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2401,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.assignments.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2402,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.assignments.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2403,"kind":4194304,"name":"Query","url":"classes/pricing.assignments.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2404,"kind":4194304,"name":"TermQuery","url":"classes/pricing.assignments.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2405,"kind":4194304,"name":"TermFilter","url":"classes/pricing.assignments.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2406,"kind":4194304,"name":"TextQuery","url":"classes/pricing.assignments.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2407,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.assignments.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2408,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.assignments.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2409,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.assignments.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2410,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.assignments.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2411,"kind":4194304,"name":"Filter","url":"classes/pricing.assignments.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2412,"kind":4194304,"name":"Sort","url":"classes/pricing.assignments.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2413,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.assignments.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2414,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.assignments.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2415,"kind":4194304,"name":"L10nString","url":"classes/pricing.assignments.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2416,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.assignments.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2417,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.AttributeDefinition"},{"id":2418,"kind":32,"name":"defaultValue","url":"classes/pricing.assignments.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2419,"kind":32,"name":"id","url":"classes/pricing.assignments.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2420,"kind":32,"name":"name","url":"classes/pricing.assignments.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2421,"kind":32,"name":"description","url":"classes/pricing.assignments.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2422,"kind":32,"name":"key","url":"classes/pricing.assignments.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2423,"kind":32,"name":"localizable","url":"classes/pricing.assignments.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2424,"kind":32,"name":"mandatory","url":"classes/pricing.assignments.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2425,"kind":32,"name":"max","url":"classes/pricing.assignments.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2426,"kind":32,"name":"minLength","url":"classes/pricing.assignments.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2427,"kind":32,"name":"min","url":"classes/pricing.assignments.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2428,"kind":32,"name":"multiValueType","url":"classes/pricing.assignments.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2429,"kind":32,"name":"regularExpression","url":"classes/pricing.assignments.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2430,"kind":32,"name":"scale","url":"classes/pricing.assignments.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2431,"kind":32,"name":"searchable","url":"classes/pricing.assignments.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2432,"kind":32,"name":"siteSpecific","url":"classes/pricing.assignments.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2433,"kind":32,"name":"system","url":"classes/pricing.assignments.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2434,"kind":32,"name":"unit","url":"classes/pricing.assignments.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2435,"kind":32,"name":"possibleValues","url":"classes/pricing.assignments.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2436,"kind":32,"name":"type","url":"classes/pricing.assignments.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2437,"kind":32,"name":"visible","url":"classes/pricing.assignments.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.AttributeDefinition.__type"},{"id":2438,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.assignments.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Assignments"},{"id":2439,"kind":65536,"name":"__type","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Assignments.PropertyValueDefinition"},{"id":2440,"kind":32,"name":"description","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-14.description-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2441,"kind":32,"name":"displayValue","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-14.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2442,"kind":32,"name":"id","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-14.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2443,"kind":32,"name":"position","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-14.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2444,"kind":32,"name":"value","url":"classes/pricing.assignments.html#propertyvaluedefinition.__type-14.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Assignments.PropertyValueDefinition.__type"},{"id":2445,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2446,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2447,"kind":128,"name":"Campaigns","url":"classes/pricing.campaigns.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2448,"kind":512,"name":"constructor","url":"classes/pricing.campaigns.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Campaigns"},{"id":2449,"kind":2048,"name":"campaignsSearch","url":"classes/pricing.campaigns.html#campaignssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2450,"kind":2048,"name":"deleteCampaign","url":"classes/pricing.campaigns.html#deletecampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2451,"kind":2048,"name":"getCampaign","url":"classes/pricing.campaigns.html#getcampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2452,"kind":2048,"name":"updateCampaign","url":"classes/pricing.campaigns.html#updatecampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2453,"kind":2048,"name":"createCampaign","url":"classes/pricing.campaigns.html#createcampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Campaigns"},{"id":2454,"kind":1024,"name":"clientConfig","url":"classes/pricing.campaigns.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Campaigns"},{"id":2455,"kind":4194304,"name":"CampaignSearchResult","url":"classes/pricing.campaigns.html#campaignsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2456,"kind":4194304,"name":"Campaign","url":"classes/pricing.campaigns.html#campaign","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2457,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.campaigns.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2458,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.campaigns.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2459,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.campaigns.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2460,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#daterangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.DateRangeFilter"},{"id":2461,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.campaigns.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2462,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#etagresponse.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.EtagResponse"},{"id":2463,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.campaigns.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2464,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#integerrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.IntegerRangeFilter"},{"id":2465,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.campaigns.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2466,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited3.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited3"},{"id":2467,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.campaigns.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2468,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#synccreated.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.SyncCreated"},{"id":2469,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.campaigns.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2470,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#dateconditionalrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.DateConditionalRequest"},{"id":2471,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.campaigns.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2472,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited5.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited5"},{"id":2473,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.campaigns.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2474,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#etagconditionalrequest.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.EtagConditionalRequest"},{"id":2475,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.campaigns.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2476,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.AsyncCreated"},{"id":2477,"kind":4194304,"name":"RateLimited","url":"classes/pricing.campaigns.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2478,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited"},{"id":2479,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.campaigns.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2480,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited2"},{"id":2481,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.campaigns.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2482,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#offsetpaginated.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.OffsetPaginated"},{"id":2483,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.campaigns.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2484,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#rangefilter.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RangeFilter"},{"id":2485,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.campaigns.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2486,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#ratelimited4.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.RateLimited4"},{"id":2487,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.campaigns.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2488,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#numericrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.NumericRangeFilter"},{"id":2489,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.campaigns.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2490,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#datetimerangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.DatetimeRangeFilter"},{"id":2491,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.campaigns.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2492,"kind":4194304,"name":"Error","url":"classes/pricing.campaigns.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2493,"kind":4194304,"name":"Money","url":"classes/pricing.campaigns.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2494,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.campaigns.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2495,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.campaigns.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2496,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.campaigns.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2497,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.campaigns.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2498,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.campaigns.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2499,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.campaigns.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2500,"kind":4194304,"name":"OpenObject","url":"classes/pricing.campaigns.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2501,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.campaigns.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2502,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#queryparamslimit.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.QueryParamsLimit"},{"id":2503,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.campaigns.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2504,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#queryparamsoffset.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.QueryParamsOffset"},{"id":2505,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.campaigns.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2506,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#sitespecific-1.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.SiteSpecific"},{"id":2507,"kind":4194304,"name":"Selectable","url":"classes/pricing.campaigns.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2508,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#selectable.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.Selectable"},{"id":2509,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.campaigns.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2510,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.NoPropertiesAllowed"},{"id":2511,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.campaigns.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2512,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.campaigns.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2513,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.campaigns.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2514,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.campaigns.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2515,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.campaigns.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2516,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.campaigns.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2517,"kind":4194304,"name":"Query","url":"classes/pricing.campaigns.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2518,"kind":4194304,"name":"TermQuery","url":"classes/pricing.campaigns.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2519,"kind":4194304,"name":"TermFilter","url":"classes/pricing.campaigns.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2520,"kind":4194304,"name":"TextQuery","url":"classes/pricing.campaigns.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2521,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.campaigns.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2522,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.campaigns.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2523,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.campaigns.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2524,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.campaigns.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2525,"kind":4194304,"name":"Filter","url":"classes/pricing.campaigns.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2526,"kind":4194304,"name":"Sort","url":"classes/pricing.campaigns.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2527,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.campaigns.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2528,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.campaigns.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2529,"kind":4194304,"name":"L10nString","url":"classes/pricing.campaigns.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2530,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.campaigns.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2531,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.AttributeDefinition"},{"id":2532,"kind":32,"name":"defaultValue","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2533,"kind":32,"name":"id","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2534,"kind":32,"name":"name","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2535,"kind":32,"name":"description","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2536,"kind":32,"name":"key","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2537,"kind":32,"name":"localizable","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2538,"kind":32,"name":"mandatory","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2539,"kind":32,"name":"max","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2540,"kind":32,"name":"minLength","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2541,"kind":32,"name":"min","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2542,"kind":32,"name":"multiValueType","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2543,"kind":32,"name":"regularExpression","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2544,"kind":32,"name":"scale","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2545,"kind":32,"name":"searchable","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2546,"kind":32,"name":"siteSpecific","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2547,"kind":32,"name":"system","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2548,"kind":32,"name":"unit","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2549,"kind":32,"name":"possibleValues","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2550,"kind":32,"name":"type","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2551,"kind":32,"name":"visible","url":"classes/pricing.campaigns.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.AttributeDefinition.__type"},{"id":2552,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.campaigns.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2553,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.PropertyValueDefinition"},{"id":2554,"kind":32,"name":"description","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2555,"kind":32,"name":"displayValue","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2556,"kind":32,"name":"id","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2557,"kind":32,"name":"position","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2558,"kind":32,"name":"value","url":"classes/pricing.campaigns.html#propertyvaluedefinition.__type-14.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Campaigns.PropertyValueDefinition.__type"},{"id":2559,"kind":4194304,"name":"CampaignDuplicate","url":"classes/pricing.campaigns.html#campaignduplicate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2560,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#campaignduplicate.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.CampaignDuplicate"},{"id":2561,"kind":4194304,"name":"CampaignNotFound","url":"classes/pricing.campaigns.html#campaignnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2562,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#campaignnotfound.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.CampaignNotFound"},{"id":2563,"kind":4194304,"name":"IdConflict","url":"classes/pricing.campaigns.html#idconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Campaigns"},{"id":2564,"kind":65536,"name":"__type","url":"classes/pricing.campaigns.html#idconflict.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Campaigns.IdConflict"},{"id":2565,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2566,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2567,"kind":128,"name":"Coupons","url":"classes/pricing.coupons.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2568,"kind":512,"name":"constructor","url":"classes/pricing.coupons.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Coupons"},{"id":2569,"kind":2048,"name":"couponsSearch","url":"classes/pricing.coupons.html#couponssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2570,"kind":2048,"name":"couponRedemptionsSearch","url":"classes/pricing.coupons.html#couponredemptionssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2571,"kind":2048,"name":"redeemCoupon","url":"classes/pricing.coupons.html#redeemcoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2572,"kind":2048,"name":"deleteCoupon","url":"classes/pricing.coupons.html#deletecoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2573,"kind":2048,"name":"getCoupon","url":"classes/pricing.coupons.html#getcoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2574,"kind":2048,"name":"updateCoupon","url":"classes/pricing.coupons.html#updatecoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2575,"kind":2048,"name":"createCoupon","url":"classes/pricing.coupons.html#createcoupon","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2576,"kind":2048,"name":"getCouponCodes","url":"classes/pricing.coupons.html#getcouponcodes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2577,"kind":2048,"name":"updateCouponCodes","url":"classes/pricing.coupons.html#updatecouponcodes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Coupons"},{"id":2578,"kind":1024,"name":"clientConfig","url":"classes/pricing.coupons.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Coupons"},{"id":2579,"kind":4194304,"name":"CouponRedemptionSearchResult","url":"classes/pricing.coupons.html#couponredemptionsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2580,"kind":4194304,"name":"CouponCodes","url":"classes/pricing.coupons.html#couponcodes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2581,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponcodes.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponCodes"},{"id":2582,"kind":32,"name":"limit","url":"classes/pricing.coupons.html#couponcodes.__type-5.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCodes.__type"},{"id":2583,"kind":32,"name":"data","url":"classes/pricing.coupons.html#couponcodes.__type-5.data","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCodes.__type"},{"id":2584,"kind":32,"name":"offset","url":"classes/pricing.coupons.html#couponcodes.__type-5.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCodes.__type"},{"id":2585,"kind":32,"name":"total","url":"classes/pricing.coupons.html#couponcodes.__type-5.total","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCodes.__type"},{"id":2586,"kind":4194304,"name":"RedemptionLimits","url":"classes/pricing.coupons.html#redemptionlimits-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2587,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#redemptionlimits-1.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RedemptionLimits"},{"id":2588,"kind":32,"name":"limitPerCode","url":"classes/pricing.coupons.html#redemptionlimits-1.__type-29.limitpercode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.RedemptionLimits.__type"},{"id":2589,"kind":32,"name":"limitPerCustomer","url":"classes/pricing.coupons.html#redemptionlimits-1.__type-29.limitpercustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.RedemptionLimits.__type"},{"id":2590,"kind":32,"name":"limitPerTimeFrame","url":"classes/pricing.coupons.html#redemptionlimits-1.__type-29.limitpertimeframe","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.RedemptionLimits.__type"},{"id":2591,"kind":4194304,"name":"CouponRedemption","url":"classes/pricing.coupons.html#couponredemption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2592,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponredemption.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponRedemption"},{"id":2593,"kind":32,"name":"code","url":"classes/pricing.coupons.html#couponredemption.__type-8.code-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponRedemption.__type"},{"id":2594,"kind":32,"name":"couponId","url":"classes/pricing.coupons.html#couponredemption.__type-8.couponid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponRedemption.__type"},{"id":2595,"kind":32,"name":"creationDate","url":"classes/pricing.coupons.html#couponredemption.__type-8.creationdate-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponRedemption.__type"},{"id":2596,"kind":32,"name":"customerEmail","url":"classes/pricing.coupons.html#couponredemption.__type-8.customeremail-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponRedemption.__type"},{"id":2597,"kind":32,"name":"orderNo","url":"classes/pricing.coupons.html#couponredemption.__type-8.orderno-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponRedemption.__type"},{"id":2598,"kind":32,"name":"viewOrderUrl","url":"classes/pricing.coupons.html#couponredemption.__type-8.vieworderurl","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponRedemption.__type"},{"id":2599,"kind":4194304,"name":"RedemptionLimitPerPeriod","url":"classes/pricing.coupons.html#redemptionlimitperperiod","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2600,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#redemptionlimitperperiod.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RedemptionLimitPerPeriod"},{"id":2601,"kind":32,"name":"limit","url":"classes/pricing.coupons.html#redemptionlimitperperiod.__type-28.limit-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.RedemptionLimitPerPeriod.__type"},{"id":2602,"kind":32,"name":"redemptionTimeFrame","url":"classes/pricing.coupons.html#redemptionlimitperperiod.__type-28.redemptiontimeframe","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.RedemptionLimitPerPeriod.__type"},{"id":2603,"kind":4194304,"name":"CouponCode","url":"classes/pricing.coupons.html#couponcode","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2604,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponcode.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponCode"},{"id":2605,"kind":32,"name":"code","url":"classes/pricing.coupons.html#couponcode.__type-3.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCode.__type"},{"id":2606,"kind":32,"name":"issued","url":"classes/pricing.coupons.html#couponcode.__type-3.issued","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCode.__type"},{"id":2607,"kind":32,"name":"redemptionCount","url":"classes/pricing.coupons.html#couponcode.__type-3.redemptioncount-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCode.__type"},{"id":2608,"kind":4194304,"name":"CouponSearchResult","url":"classes/pricing.coupons.html#couponsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2609,"kind":4194304,"name":"CouponCodeRedemptionRequest","url":"classes/pricing.coupons.html#couponcoderedemptionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2610,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponcoderedemptionrequest.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponCodeRedemptionRequest"},{"id":2611,"kind":32,"name":"code","url":"classes/pricing.coupons.html#couponcoderedemptionrequest.__type-4.code-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCodeRedemptionRequest.__type"},{"id":2612,"kind":32,"name":"customerEmail","url":"classes/pricing.coupons.html#couponcoderedemptionrequest.__type-4.customeremail","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCodeRedemptionRequest.__type"},{"id":2613,"kind":32,"name":"orderNo","url":"classes/pricing.coupons.html#couponcoderedemptionrequest.__type-4.orderno","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponCodeRedemptionRequest.__type"},{"id":2614,"kind":4194304,"name":"Coupon","url":"classes/pricing.coupons.html#coupon","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2615,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#coupon.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.Coupon"},{"id":2616,"kind":32,"name":"couponId","url":"classes/pricing.coupons.html#coupon.__type-2.couponid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2617,"kind":32,"name":"creationDate","url":"classes/pricing.coupons.html#coupon.__type-2.creationdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2618,"kind":32,"name":"description","url":"classes/pricing.coupons.html#coupon.__type-2.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2619,"kind":32,"name":"enabled","url":"classes/pricing.coupons.html#coupon.__type-2.enabled","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2620,"kind":32,"name":"exportedCodeCount","url":"classes/pricing.coupons.html#coupon.__type-2.exportedcodecount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2621,"kind":32,"name":"lastModified","url":"classes/pricing.coupons.html#coupon.__type-2.lastmodified","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2622,"kind":32,"name":"redemptionCount","url":"classes/pricing.coupons.html#coupon.__type-2.redemptioncount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2623,"kind":32,"name":"redemptionLimits","url":"classes/pricing.coupons.html#coupon.__type-2.redemptionlimits","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2624,"kind":32,"name":"singleCode","url":"classes/pricing.coupons.html#coupon.__type-2.singlecode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2625,"kind":32,"name":"systemCodesConfig","url":"classes/pricing.coupons.html#coupon.__type-2.systemcodesconfig","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2626,"kind":32,"name":"totalCodesCount","url":"classes/pricing.coupons.html#coupon.__type-2.totalcodescount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2627,"kind":32,"name":"type","url":"classes/pricing.coupons.html#coupon.__type-2.type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.Coupon.__type"},{"id":2628,"kind":4194304,"name":"CouponMultiCodesRequest","url":"classes/pricing.coupons.html#couponmulticodesrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2629,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponmulticodesrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponMultiCodesRequest"},{"id":2630,"kind":32,"name":"codes","url":"classes/pricing.coupons.html#couponmulticodesrequest.__type-6.codes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponMultiCodesRequest.__type"},{"id":2631,"kind":4194304,"name":"CouponSystemCodeConfig","url":"classes/pricing.coupons.html#couponsystemcodeconfig","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2632,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponsystemcodeconfig.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponSystemCodeConfig"},{"id":2633,"kind":32,"name":"codePrefix","url":"classes/pricing.coupons.html#couponsystemcodeconfig.__type-9.codeprefix","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponSystemCodeConfig.__type"},{"id":2634,"kind":32,"name":"numberOfCodes","url":"classes/pricing.coupons.html#couponsystemcodeconfig.__type-9.numberofcodes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.CouponSystemCodeConfig.__type"},{"id":2635,"kind":4194304,"name":"CouponNotFound","url":"classes/pricing.coupons.html#couponnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2636,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#couponnotfound.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.CouponNotFound"},{"id":2637,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.coupons.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2638,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.coupons.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2639,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.coupons.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2640,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#daterangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.DateRangeFilter"},{"id":2641,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.coupons.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2642,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#etagresponse.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.EtagResponse"},{"id":2643,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.coupons.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2644,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#integerrangefilter.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.IntegerRangeFilter"},{"id":2645,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.coupons.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2646,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited3.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited3"},{"id":2647,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.coupons.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2648,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#synccreated.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.SyncCreated"},{"id":2649,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.coupons.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2650,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#dateconditionalrequest.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.DateConditionalRequest"},{"id":2651,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.coupons.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2652,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited5.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited5"},{"id":2653,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.coupons.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2654,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#etagconditionalrequest.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.EtagConditionalRequest"},{"id":2655,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.coupons.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2656,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.AsyncCreated"},{"id":2657,"kind":4194304,"name":"RateLimited","url":"classes/pricing.coupons.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2658,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited"},{"id":2659,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.coupons.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2660,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited2"},{"id":2661,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.coupons.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2662,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#offsetpaginated.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.OffsetPaginated"},{"id":2663,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.coupons.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2664,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#rangefilter.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RangeFilter"},{"id":2665,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.coupons.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2666,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#ratelimited4.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.RateLimited4"},{"id":2667,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.coupons.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2668,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#numericrangefilter.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.NumericRangeFilter"},{"id":2669,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.coupons.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2670,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#datetimerangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.DatetimeRangeFilter"},{"id":2671,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.coupons.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2672,"kind":4194304,"name":"Error","url":"classes/pricing.coupons.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2673,"kind":4194304,"name":"Money","url":"classes/pricing.coupons.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2674,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.coupons.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2675,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.coupons.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2676,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.coupons.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2677,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.coupons.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2678,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.coupons.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2679,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.coupons.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2680,"kind":4194304,"name":"OpenObject","url":"classes/pricing.coupons.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2681,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.coupons.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2682,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#queryparamslimit.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.QueryParamsLimit"},{"id":2683,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.coupons.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2684,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#queryparamsoffset.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.QueryParamsOffset"},{"id":2685,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.coupons.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2686,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#sitespecific-1.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.SiteSpecific"},{"id":2687,"kind":4194304,"name":"Selectable","url":"classes/pricing.coupons.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2688,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#selectable.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.Selectable"},{"id":2689,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.coupons.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2690,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#nopropertiesallowed.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.NoPropertiesAllowed"},{"id":2691,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.coupons.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2692,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.coupons.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2693,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.coupons.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2694,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.coupons.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2695,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.coupons.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2696,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.coupons.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2697,"kind":4194304,"name":"Query","url":"classes/pricing.coupons.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2698,"kind":4194304,"name":"TermQuery","url":"classes/pricing.coupons.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2699,"kind":4194304,"name":"TermFilter","url":"classes/pricing.coupons.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2700,"kind":4194304,"name":"TextQuery","url":"classes/pricing.coupons.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2701,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.coupons.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2702,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.coupons.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2703,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.coupons.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2704,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.coupons.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2705,"kind":4194304,"name":"Filter","url":"classes/pricing.coupons.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2706,"kind":4194304,"name":"Sort","url":"classes/pricing.coupons.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2707,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.coupons.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2708,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.coupons.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2709,"kind":4194304,"name":"L10nString","url":"classes/pricing.coupons.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2710,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.coupons.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2711,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.AttributeDefinition"},{"id":2712,"kind":32,"name":"defaultValue","url":"classes/pricing.coupons.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2713,"kind":32,"name":"id","url":"classes/pricing.coupons.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2714,"kind":32,"name":"name","url":"classes/pricing.coupons.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2715,"kind":32,"name":"description","url":"classes/pricing.coupons.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2716,"kind":32,"name":"key","url":"classes/pricing.coupons.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2717,"kind":32,"name":"localizable","url":"classes/pricing.coupons.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2718,"kind":32,"name":"mandatory","url":"classes/pricing.coupons.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2719,"kind":32,"name":"max","url":"classes/pricing.coupons.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2720,"kind":32,"name":"minLength","url":"classes/pricing.coupons.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2721,"kind":32,"name":"min","url":"classes/pricing.coupons.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2722,"kind":32,"name":"multiValueType","url":"classes/pricing.coupons.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2723,"kind":32,"name":"regularExpression","url":"classes/pricing.coupons.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2724,"kind":32,"name":"scale","url":"classes/pricing.coupons.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2725,"kind":32,"name":"searchable","url":"classes/pricing.coupons.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2726,"kind":32,"name":"siteSpecific","url":"classes/pricing.coupons.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2727,"kind":32,"name":"system","url":"classes/pricing.coupons.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2728,"kind":32,"name":"unit","url":"classes/pricing.coupons.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2729,"kind":32,"name":"possibleValues","url":"classes/pricing.coupons.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2730,"kind":32,"name":"type","url":"classes/pricing.coupons.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2731,"kind":32,"name":"visible","url":"classes/pricing.coupons.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.AttributeDefinition.__type"},{"id":2732,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.coupons.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Coupons"},{"id":2733,"kind":65536,"name":"__type","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Coupons.PropertyValueDefinition"},{"id":2734,"kind":32,"name":"description","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-19.description-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2735,"kind":32,"name":"displayValue","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-19.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2736,"kind":32,"name":"id","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-19.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2737,"kind":32,"name":"position","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-19.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2738,"kind":32,"name":"value","url":"classes/pricing.coupons.html#propertyvaluedefinition.__type-19.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Coupons.PropertyValueDefinition.__type"},{"id":2739,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2740,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2741,"kind":128,"name":"GiftCertificates","url":"classes/pricing.giftcertificates.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2742,"kind":512,"name":"constructor","url":"classes/pricing.giftcertificates.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.GiftCertificates"},{"id":2743,"kind":2048,"name":"createGiftCertificate","url":"classes/pricing.giftcertificates.html#creategiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2744,"kind":2048,"name":"giftCertificatesSearch","url":"classes/pricing.giftcertificates.html#giftcertificatessearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2745,"kind":2048,"name":"deleteGiftCertificate","url":"classes/pricing.giftcertificates.html#deletegiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2746,"kind":2048,"name":"getGiftCertificate","url":"classes/pricing.giftcertificates.html#getgiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2747,"kind":2048,"name":"updateGiftCertificate","url":"classes/pricing.giftcertificates.html#updategiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.GiftCertificates"},{"id":2748,"kind":1024,"name":"clientConfig","url":"classes/pricing.giftcertificates.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.GiftCertificates"},{"id":2749,"kind":4194304,"name":"Money","url":"classes/pricing.giftcertificates.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2750,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#money.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.Money"},{"id":2751,"kind":32,"name":"currencyMnemonic","url":"classes/pricing.giftcertificates.html#money.__type-17.currencymnemonic","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.Money.__type"},{"id":2752,"kind":32,"name":"value","url":"classes/pricing.giftcertificates.html#money.__type-17.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.Money.__type"},{"id":2753,"kind":4194304,"name":"GiftCertificate","url":"classes/pricing.giftcertificates.html#giftcertificate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2754,"kind":4194304,"name":"GiftCertificateSearchResult","url":"classes/pricing.giftcertificates.html#giftcertificatesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2755,"kind":4194304,"name":"AccountTransaction","url":"classes/pricing.giftcertificates.html#accounttransaction","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2756,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#accounttransaction.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.AccountTransaction"},{"id":2757,"kind":32,"name":"amount","url":"classes/pricing.giftcertificates.html#accounttransaction.__type.amount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AccountTransaction.__type"},{"id":2758,"kind":32,"name":"orderNo","url":"classes/pricing.giftcertificates.html#accounttransaction.__type.orderno","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AccountTransaction.__type"},{"id":2759,"kind":32,"name":"timestamp","url":"classes/pricing.giftcertificates.html#accounttransaction.__type.timestamp","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AccountTransaction.__type"},{"id":2760,"kind":32,"name":"typeCode","url":"classes/pricing.giftcertificates.html#accounttransaction.__type.typecode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AccountTransaction.__type"},{"id":2761,"kind":4194304,"name":"GiftCertificates","url":"classes/pricing.giftcertificates.html#giftcertificates","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2762,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#giftcertificates.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.GiftCertificates"},{"id":2763,"kind":32,"name":"offset","url":"classes/pricing.giftcertificates.html#giftcertificates.__type-11.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.GiftCertificates.__type"},{"id":2764,"kind":32,"name":"data","url":"classes/pricing.giftcertificates.html#giftcertificates.__type-11.data","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.GiftCertificates.__type"},{"id":2765,"kind":32,"name":"limit","url":"classes/pricing.giftcertificates.html#giftcertificates.__type-11.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.GiftCertificates.__type"},{"id":2766,"kind":32,"name":"total","url":"classes/pricing.giftcertificates.html#giftcertificates.__type-11.total","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.GiftCertificates.__type"},{"id":2767,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.giftcertificates.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2768,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.giftcertificates.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2769,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.giftcertificates.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2770,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.DateRangeFilter"},{"id":2771,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.giftcertificates.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2772,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.EtagResponse"},{"id":2773,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.giftcertificates.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2774,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#integerrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.IntegerRangeFilter"},{"id":2775,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.giftcertificates.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2776,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited3.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited3"},{"id":2777,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.giftcertificates.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2778,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#synccreated.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.SyncCreated"},{"id":2779,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.giftcertificates.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2780,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.DateConditionalRequest"},{"id":2781,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.giftcertificates.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2782,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited5.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited5"},{"id":2783,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.giftcertificates.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2784,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.EtagConditionalRequest"},{"id":2785,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.giftcertificates.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2786,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#asynccreated.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.AsyncCreated"},{"id":2787,"kind":4194304,"name":"RateLimited","url":"classes/pricing.giftcertificates.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2788,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited"},{"id":2789,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.giftcertificates.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2790,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited2"},{"id":2791,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.giftcertificates.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2792,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#offsetpaginated.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.OffsetPaginated"},{"id":2793,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.giftcertificates.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2794,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#rangefilter.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RangeFilter"},{"id":2795,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.giftcertificates.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2796,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#ratelimited4.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.RateLimited4"},{"id":2797,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.giftcertificates.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2798,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#numericrangefilter.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.NumericRangeFilter"},{"id":2799,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.giftcertificates.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2800,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.DatetimeRangeFilter"},{"id":2801,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.giftcertificates.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2802,"kind":4194304,"name":"Error","url":"classes/pricing.giftcertificates.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2803,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.giftcertificates.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2804,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.giftcertificates.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2805,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.giftcertificates.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2806,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.giftcertificates.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2807,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.giftcertificates.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2808,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.giftcertificates.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2809,"kind":4194304,"name":"OpenObject","url":"classes/pricing.giftcertificates.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2810,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.giftcertificates.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2811,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#queryparamslimit.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.QueryParamsLimit"},{"id":2812,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.giftcertificates.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2813,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#queryparamsoffset.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.QueryParamsOffset"},{"id":2814,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.giftcertificates.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2815,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#sitespecific-1.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.SiteSpecific"},{"id":2816,"kind":4194304,"name":"Selectable","url":"classes/pricing.giftcertificates.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2817,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#selectable.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.Selectable"},{"id":2818,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.giftcertificates.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2819,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#nopropertiesallowed.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.NoPropertiesAllowed"},{"id":2820,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.giftcertificates.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2821,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.giftcertificates.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2822,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.giftcertificates.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2823,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.giftcertificates.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2824,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.giftcertificates.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2825,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.giftcertificates.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2826,"kind":4194304,"name":"Query","url":"classes/pricing.giftcertificates.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2827,"kind":4194304,"name":"TermQuery","url":"classes/pricing.giftcertificates.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2828,"kind":4194304,"name":"TermFilter","url":"classes/pricing.giftcertificates.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2829,"kind":4194304,"name":"TextQuery","url":"classes/pricing.giftcertificates.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2830,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.giftcertificates.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2831,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.giftcertificates.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2832,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.giftcertificates.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2833,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.giftcertificates.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2834,"kind":4194304,"name":"Filter","url":"classes/pricing.giftcertificates.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2835,"kind":4194304,"name":"Sort","url":"classes/pricing.giftcertificates.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2836,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.giftcertificates.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2837,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.giftcertificates.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2838,"kind":4194304,"name":"L10nString","url":"classes/pricing.giftcertificates.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2839,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.giftcertificates.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2840,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.AttributeDefinition"},{"id":2841,"kind":32,"name":"defaultValue","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2842,"kind":32,"name":"id","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2843,"kind":32,"name":"name","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2844,"kind":32,"name":"description","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2845,"kind":32,"name":"key","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2846,"kind":32,"name":"localizable","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2847,"kind":32,"name":"mandatory","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2848,"kind":32,"name":"max","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2849,"kind":32,"name":"minLength","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2850,"kind":32,"name":"min","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2851,"kind":32,"name":"multiValueType","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2852,"kind":32,"name":"regularExpression","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2853,"kind":32,"name":"scale","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2854,"kind":32,"name":"searchable","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2855,"kind":32,"name":"siteSpecific","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2856,"kind":32,"name":"system","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2857,"kind":32,"name":"unit","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2858,"kind":32,"name":"possibleValues","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2859,"kind":32,"name":"type","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2860,"kind":32,"name":"visible","url":"classes/pricing.giftcertificates.html#attributedefinition.__type-2.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.AttributeDefinition.__type"},{"id":2861,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2862,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.PropertyValueDefinition"},{"id":2863,"kind":32,"name":"description","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-21.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2864,"kind":32,"name":"displayValue","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-21.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2865,"kind":32,"name":"id","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-21.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2866,"kind":32,"name":"position","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-21.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2867,"kind":32,"name":"value","url":"classes/pricing.giftcertificates.html#propertyvaluedefinition.__type-21.value-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.GiftCertificates.PropertyValueDefinition.__type"},{"id":2868,"kind":4194304,"name":"GiftCertificateCreateMerchantIdNotUniqueException","url":"classes/pricing.giftcertificates.html#giftcertificatecreatemerchantidnotuniqueexception","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2869,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#giftcertificatecreatemerchantidnotuniqueexception.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.GiftCertificateCreateMerchantIdNotUniqueException"},{"id":2870,"kind":4194304,"name":"GiftCertificateNotFound","url":"classes/pricing.giftcertificates.html#giftcertificatenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2871,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#giftcertificatenotfound.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.GiftCertificateNotFound"},{"id":2872,"kind":4194304,"name":"MalformedQuery","url":"classes/pricing.giftcertificates.html#malformedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2873,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#malformedquery.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.MalformedQuery"},{"id":2874,"kind":4194304,"name":"GiftCertificateAmountOutOfRangeException","url":"classes/pricing.giftcertificates.html#giftcertificateamountoutofrangeexception","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2875,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#giftcertificateamountoutofrangeexception.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.GiftCertificateAmountOutOfRangeException"},{"id":2876,"kind":4194304,"name":"InvalidRecipientEmail","url":"classes/pricing.giftcertificates.html#invalidrecipientemail","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2877,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#invalidrecipientemail.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.InvalidRecipientEmail"},{"id":2878,"kind":4194304,"name":"UnqueryableField","url":"classes/pricing.giftcertificates.html#unqueryablefield","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2879,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#unqueryablefield.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.UnqueryableField"},{"id":2880,"kind":4194304,"name":"InvalidGiftCertificateStatus","url":"classes/pricing.giftcertificates.html#invalidgiftcertificatestatus","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2881,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#invalidgiftcertificatestatus.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.InvalidGiftCertificateStatus"},{"id":2882,"kind":4194304,"name":"InvalidGiftCertificateException","url":"classes/pricing.giftcertificates.html#invalidgiftcertificateexception","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.GiftCertificates"},{"id":2883,"kind":65536,"name":"__type","url":"classes/pricing.giftcertificates.html#invalidgiftcertificateexception.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.GiftCertificates.InvalidGiftCertificateException"},{"id":2884,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2885,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-3","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":2886,"kind":128,"name":"Promotions","url":"classes/pricing.promotions.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":2887,"kind":512,"name":"constructor","url":"classes/pricing.promotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.Promotions"},{"id":2888,"kind":2048,"name":"promotionsSearch","url":"classes/pricing.promotions.html#promotionssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2889,"kind":2048,"name":"deletePromotion","url":"classes/pricing.promotions.html#deletepromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2890,"kind":2048,"name":"getPromotion","url":"classes/pricing.promotions.html#getpromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2891,"kind":2048,"name":"updatePromotion","url":"classes/pricing.promotions.html#updatepromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2892,"kind":2048,"name":"createPromotion","url":"classes/pricing.promotions.html#createpromotion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.Promotions"},{"id":2893,"kind":1024,"name":"clientConfig","url":"classes/pricing.promotions.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.Promotions"},{"id":2894,"kind":4194304,"name":"PromotionSearchResult","url":"classes/pricing.promotions.html#promotionsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2895,"kind":4194304,"name":"TimeOfDay","url":"classes/pricing.promotions.html#timeofday-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2896,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#timeofday-1.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.TimeOfDay"},{"id":2897,"kind":32,"name":"timeFrom","url":"classes/pricing.promotions.html#timeofday-1.__type-31.timefrom","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.TimeOfDay.__type"},{"id":2898,"kind":32,"name":"timeTo","url":"classes/pricing.promotions.html#timeofday-1.__type-31.timeto","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.TimeOfDay.__type"},{"id":2899,"kind":4194304,"name":"Campaign","url":"classes/pricing.promotions.html#campaign","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2900,"kind":4194304,"name":"PromotionCampaignAssignment","url":"classes/pricing.promotions.html#promotioncampaignassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2901,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PromotionCampaignAssignment"},{"id":2902,"kind":32,"name":"campaign","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.campaign-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2903,"kind":32,"name":"campaignId","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.campaignid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2904,"kind":32,"name":"coupons","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.coupons","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2905,"kind":32,"name":"customerGroups","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.customergroups","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2906,"kind":32,"name":"description","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2907,"kind":32,"name":"enabled","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.enabled-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2908,"kind":32,"name":"promotion","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.promotion-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2909,"kind":32,"name":"promotionId","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.promotionid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2910,"kind":32,"name":"rank","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.rank","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2911,"kind":32,"name":"schedule","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.schedule-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2912,"kind":32,"name":"sourceCodeGroups","url":"classes/pricing.promotions.html#promotioncampaignassignment.__type-13.sourcecodegroups","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionCampaignAssignment.__type"},{"id":2913,"kind":4194304,"name":"Tag","url":"classes/pricing.promotions.html#tag","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2914,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#tag.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.Tag"},{"id":2915,"kind":32,"name":"tagId","url":"classes/pricing.promotions.html#tag.__type-30.tagid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.Tag.__type"},{"id":2916,"kind":4194304,"name":"Promotion","url":"classes/pricing.promotions.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2917,"kind":4194304,"name":"PromotionAssignmentInformation","url":"classes/pricing.promotions.html#promotionassignmentinformation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2918,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PromotionAssignmentInformation"},{"id":2919,"kind":32,"name":"abtestId","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.abtestid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2920,"kind":32,"name":"abtestSegmentId","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.abtestsegmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2921,"kind":32,"name":"active","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.active","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2922,"kind":32,"name":"activeAbtestAssignments","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.activeabtestassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2923,"kind":32,"name":"activeCampaignAssignments","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.activecampaignassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2924,"kind":32,"name":"campaignId","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.campaignid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2925,"kind":32,"name":"enabled","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.enabled-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2926,"kind":32,"name":"endDate","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.enddate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2927,"kind":32,"name":"schedule","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.schedule-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2928,"kind":32,"name":"scheduleType","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.scheduletype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2929,"kind":32,"name":"startDate","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.startdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2930,"kind":32,"name":"upcomingAbtestAssignments","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.upcomingabtestassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2931,"kind":32,"name":"upcomingCampaignAssignments","url":"classes/pricing.promotions.html#promotionassignmentinformation.__type-12.upcomingcampaignassignments","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAssignmentInformation.__type"},{"id":2932,"kind":4194304,"name":"Schedule","url":"classes/pricing.promotions.html#schedule-3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2933,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#schedule-3.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.Schedule"},{"id":2934,"kind":32,"name":"endDate","url":"classes/pricing.promotions.html#schedule-3.__type-26.enddate-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.Schedule.__type"},{"id":2935,"kind":32,"name":"recurrence","url":"classes/pricing.promotions.html#schedule-3.__type-26.recurrence-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.Schedule.__type"},{"id":2936,"kind":32,"name":"startDate","url":"classes/pricing.promotions.html#schedule-3.__type-26.startdate-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.Schedule.__type"},{"id":2937,"kind":4194304,"name":"Recurrence","url":"classes/pricing.promotions.html#recurrence","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2938,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#recurrence.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.Recurrence"},{"id":2939,"kind":32,"name":"dayOfWeek","url":"classes/pricing.promotions.html#recurrence.__type-25.dayofweek","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.Recurrence.__type"},{"id":2940,"kind":32,"name":"timeOfDay","url":"classes/pricing.promotions.html#recurrence.__type-25.timeofday","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.Recurrence.__type"},{"id":2941,"kind":4194304,"name":"PromotionAbtestGroupAssignment","url":"classes/pricing.promotions.html#promotionabtestgroupassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2942,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#promotionabtestgroupassignment.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PromotionAbtestGroupAssignment"},{"id":2943,"kind":32,"name":"abtestDescription","url":"classes/pricing.promotions.html#promotionabtestgroupassignment.__type-11.abtestdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAbtestGroupAssignment.__type"},{"id":2944,"kind":32,"name":"abtestId","url":"classes/pricing.promotions.html#promotionabtestgroupassignment.__type-11.abtestid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAbtestGroupAssignment.__type"},{"id":2945,"kind":32,"name":"enabled","url":"classes/pricing.promotions.html#promotionabtestgroupassignment.__type-11.enabled","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAbtestGroupAssignment.__type"},{"id":2946,"kind":32,"name":"schedule","url":"classes/pricing.promotions.html#promotionabtestgroupassignment.__type-11.schedule","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAbtestGroupAssignment.__type"},{"id":2947,"kind":32,"name":"segmentDescription","url":"classes/pricing.promotions.html#promotionabtestgroupassignment.__type-11.segmentdescription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAbtestGroupAssignment.__type"},{"id":2948,"kind":32,"name":"segmentId","url":"classes/pricing.promotions.html#promotionabtestgroupassignment.__type-11.segmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PromotionAbtestGroupAssignment.__type"},{"id":2949,"kind":4194304,"name":"PromotionNotFound","url":"classes/pricing.promotions.html#promotionnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2950,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#promotionnotfound.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PromotionNotFound"},{"id":2951,"kind":4194304,"name":"PromotionIdConflict","url":"classes/pricing.promotions.html#promotionidconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2952,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#promotionidconflict.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PromotionIdConflict"},{"id":2953,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.promotions.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2954,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.promotions.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2955,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.promotions.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2956,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.DateRangeFilter"},{"id":2957,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.promotions.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2958,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.EtagResponse"},{"id":2959,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.promotions.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2960,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.IntegerRangeFilter"},{"id":2961,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.promotions.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2962,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited3.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited3"},{"id":2963,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.promotions.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2964,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#synccreated.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.SyncCreated"},{"id":2965,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.promotions.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2966,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.DateConditionalRequest"},{"id":2967,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.promotions.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2968,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited5.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited5"},{"id":2969,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.promotions.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2970,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.EtagConditionalRequest"},{"id":2971,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.promotions.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2972,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.AsyncCreated"},{"id":2973,"kind":4194304,"name":"RateLimited","url":"classes/pricing.promotions.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2974,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited"},{"id":2975,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.promotions.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2976,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited2"},{"id":2977,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.promotions.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2978,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.OffsetPaginated"},{"id":2979,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.promotions.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2980,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#rangefilter.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RangeFilter"},{"id":2981,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.promotions.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2982,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#ratelimited4.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.RateLimited4"},{"id":2983,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.promotions.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2984,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.NumericRangeFilter"},{"id":2985,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.promotions.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2986,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.DatetimeRangeFilter"},{"id":2987,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.promotions.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2988,"kind":4194304,"name":"Error","url":"classes/pricing.promotions.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2989,"kind":4194304,"name":"Money","url":"classes/pricing.promotions.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2990,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.promotions.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2991,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.promotions.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2992,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.promotions.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2993,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.promotions.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2994,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.promotions.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2995,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.promotions.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2996,"kind":4194304,"name":"OpenObject","url":"classes/pricing.promotions.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2997,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.promotions.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":2998,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#queryparamslimit.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.QueryParamsLimit"},{"id":2999,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.promotions.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3000,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#queryparamsoffset.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.QueryParamsOffset"},{"id":3001,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.promotions.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3002,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#sitespecific-1.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.SiteSpecific"},{"id":3003,"kind":4194304,"name":"Selectable","url":"classes/pricing.promotions.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3004,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#selectable.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.Selectable"},{"id":3005,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.promotions.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3006,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.NoPropertiesAllowed"},{"id":3007,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.promotions.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3008,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.promotions.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3009,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.promotions.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3010,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.promotions.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3011,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.promotions.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3012,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.promotions.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3013,"kind":4194304,"name":"Query","url":"classes/pricing.promotions.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3014,"kind":4194304,"name":"TermQuery","url":"classes/pricing.promotions.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3015,"kind":4194304,"name":"TermFilter","url":"classes/pricing.promotions.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3016,"kind":4194304,"name":"TextQuery","url":"classes/pricing.promotions.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3017,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.promotions.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3018,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.promotions.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3019,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.promotions.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3020,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.promotions.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3021,"kind":4194304,"name":"Filter","url":"classes/pricing.promotions.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3022,"kind":4194304,"name":"Sort","url":"classes/pricing.promotions.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3023,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.promotions.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3024,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.promotions.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3025,"kind":4194304,"name":"L10nString","url":"classes/pricing.promotions.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3026,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.promotions.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3027,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.AttributeDefinition"},{"id":3028,"kind":32,"name":"defaultValue","url":"classes/pricing.promotions.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3029,"kind":32,"name":"id","url":"classes/pricing.promotions.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3030,"kind":32,"name":"name","url":"classes/pricing.promotions.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3031,"kind":32,"name":"description","url":"classes/pricing.promotions.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3032,"kind":32,"name":"key","url":"classes/pricing.promotions.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3033,"kind":32,"name":"localizable","url":"classes/pricing.promotions.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3034,"kind":32,"name":"mandatory","url":"classes/pricing.promotions.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3035,"kind":32,"name":"max","url":"classes/pricing.promotions.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3036,"kind":32,"name":"minLength","url":"classes/pricing.promotions.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3037,"kind":32,"name":"min","url":"classes/pricing.promotions.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3038,"kind":32,"name":"multiValueType","url":"classes/pricing.promotions.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3039,"kind":32,"name":"regularExpression","url":"classes/pricing.promotions.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3040,"kind":32,"name":"scale","url":"classes/pricing.promotions.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3041,"kind":32,"name":"searchable","url":"classes/pricing.promotions.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3042,"kind":32,"name":"siteSpecific","url":"classes/pricing.promotions.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3043,"kind":32,"name":"system","url":"classes/pricing.promotions.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3044,"kind":32,"name":"unit","url":"classes/pricing.promotions.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3045,"kind":32,"name":"possibleValues","url":"classes/pricing.promotions.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3046,"kind":32,"name":"type","url":"classes/pricing.promotions.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3047,"kind":32,"name":"visible","url":"classes/pricing.promotions.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.AttributeDefinition.__type"},{"id":3048,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.promotions.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.Promotions"},{"id":3049,"kind":65536,"name":"__type","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.Promotions.PropertyValueDefinition"},{"id":3050,"kind":32,"name":"description","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-16.description-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":3051,"kind":32,"name":"displayValue","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-16.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":3052,"kind":32,"name":"id","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-16.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":3053,"kind":32,"name":"position","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-16.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":3054,"kind":32,"name":"value","url":"classes/pricing.promotions.html#propertyvaluedefinition.__type-16.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.Promotions.PropertyValueDefinition.__type"},{"id":3055,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3056,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-4","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3057,"kind":128,"name":"ShopperGiftCertificates","url":"classes/pricing.shoppergiftcertificates.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":3058,"kind":512,"name":"constructor","url":"classes/pricing.shoppergiftcertificates.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.ShopperGiftCertificates"},{"id":3059,"kind":2048,"name":"getGiftCertificate","url":"classes/pricing.shoppergiftcertificates.html#getgiftcertificate","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.ShopperGiftCertificates"},{"id":3060,"kind":1024,"name":"clientConfig","url":"classes/pricing.shoppergiftcertificates.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.ShopperGiftCertificates"},{"id":3061,"kind":4194304,"name":"GiftCertificate","url":"classes/pricing.shoppergiftcertificates.html#giftcertificate","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3062,"kind":4194304,"name":"GiftCertificateRequest","url":"classes/pricing.shoppergiftcertificates.html#giftcertificaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3063,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#giftcertificaterequest.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.GiftCertificateRequest"},{"id":3064,"kind":32,"name":"giftCertificateCode","url":"classes/pricing.shoppergiftcertificates.html#giftcertificaterequest.__type-7.giftcertificatecode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.GiftCertificateRequest.__type"},{"id":3065,"kind":4194304,"name":"NotFound","url":"classes/pricing.shoppergiftcertificates.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3066,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#notfound.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.NotFound"},{"id":3067,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.shoppergiftcertificates.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3068,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.shoppergiftcertificates.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3069,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3070,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.DateRangeFilter"},{"id":3071,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.shoppergiftcertificates.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3072,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.EtagResponse"},{"id":3073,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3074,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.IntegerRangeFilter"},{"id":3075,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.shoppergiftcertificates.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3076,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited3"},{"id":3077,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.shoppergiftcertificates.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3078,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#synccreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.SyncCreated"},{"id":3079,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.shoppergiftcertificates.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3080,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.DateConditionalRequest"},{"id":3081,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.shoppergiftcertificates.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3082,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited5"},{"id":3083,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.shoppergiftcertificates.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3084,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.EtagConditionalRequest"},{"id":3085,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.shoppergiftcertificates.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3086,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.AsyncCreated"},{"id":3087,"kind":4194304,"name":"RateLimited","url":"classes/pricing.shoppergiftcertificates.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3088,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited"},{"id":3089,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.shoppergiftcertificates.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3090,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited2"},{"id":3091,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.shoppergiftcertificates.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3092,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#offsetpaginated.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.OffsetPaginated"},{"id":3093,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.shoppergiftcertificates.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3094,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#rangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RangeFilter"},{"id":3095,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.shoppergiftcertificates.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3096,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.RateLimited4"},{"id":3097,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3098,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#numericrangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.NumericRangeFilter"},{"id":3099,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.shoppergiftcertificates.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3100,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.DatetimeRangeFilter"},{"id":3101,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.shoppergiftcertificates.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3102,"kind":4194304,"name":"Error","url":"classes/pricing.shoppergiftcertificates.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3103,"kind":4194304,"name":"Money","url":"classes/pricing.shoppergiftcertificates.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3104,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.shoppergiftcertificates.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3105,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.shoppergiftcertificates.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3106,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.shoppergiftcertificates.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3107,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.shoppergiftcertificates.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3108,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.shoppergiftcertificates.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3109,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.shoppergiftcertificates.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3110,"kind":4194304,"name":"OpenObject","url":"classes/pricing.shoppergiftcertificates.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3111,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.shoppergiftcertificates.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3112,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.QueryParamsLimit"},{"id":3113,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.shoppergiftcertificates.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3114,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.QueryParamsOffset"},{"id":3115,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.shoppergiftcertificates.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3116,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.SiteSpecific"},{"id":3117,"kind":4194304,"name":"Selectable","url":"classes/pricing.shoppergiftcertificates.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3118,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.Selectable"},{"id":3119,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.shoppergiftcertificates.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3120,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#nopropertiesallowed.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.NoPropertiesAllowed"},{"id":3121,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.shoppergiftcertificates.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3122,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.shoppergiftcertificates.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3123,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.shoppergiftcertificates.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3124,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.shoppergiftcertificates.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3125,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.shoppergiftcertificates.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3126,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.shoppergiftcertificates.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3127,"kind":4194304,"name":"Query","url":"classes/pricing.shoppergiftcertificates.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3128,"kind":4194304,"name":"TermQuery","url":"classes/pricing.shoppergiftcertificates.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3129,"kind":4194304,"name":"TermFilter","url":"classes/pricing.shoppergiftcertificates.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3130,"kind":4194304,"name":"TextQuery","url":"classes/pricing.shoppergiftcertificates.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3131,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.shoppergiftcertificates.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3132,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.shoppergiftcertificates.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3133,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.shoppergiftcertificates.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3134,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.shoppergiftcertificates.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3135,"kind":4194304,"name":"Filter","url":"classes/pricing.shoppergiftcertificates.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3136,"kind":4194304,"name":"Sort","url":"classes/pricing.shoppergiftcertificates.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3137,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.shoppergiftcertificates.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3138,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.shoppergiftcertificates.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3139,"kind":4194304,"name":"L10nString","url":"classes/pricing.shoppergiftcertificates.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3140,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3141,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.AttributeDefinition"},{"id":3142,"kind":32,"name":"defaultValue","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3143,"kind":32,"name":"id","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3144,"kind":32,"name":"name","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3145,"kind":32,"name":"description","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3146,"kind":32,"name":"key","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3147,"kind":32,"name":"localizable","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3148,"kind":32,"name":"mandatory","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3149,"kind":32,"name":"max","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3150,"kind":32,"name":"minLength","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3151,"kind":32,"name":"min","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3152,"kind":32,"name":"multiValueType","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3153,"kind":32,"name":"regularExpression","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3154,"kind":32,"name":"scale","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3155,"kind":32,"name":"searchable","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3156,"kind":32,"name":"siteSpecific","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3157,"kind":32,"name":"system","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3158,"kind":32,"name":"unit","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3159,"kind":32,"name":"possibleValues","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3160,"kind":32,"name":"type","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3161,"kind":32,"name":"visible","url":"classes/pricing.shoppergiftcertificates.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.AttributeDefinition.__type"},{"id":3162,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperGiftCertificates"},{"id":3163,"kind":65536,"name":"__type","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition"},{"id":3164,"kind":32,"name":"description","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3165,"kind":32,"name":"displayValue","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3166,"kind":32,"name":"id","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3167,"kind":32,"name":"position","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3168,"kind":32,"name":"value","url":"classes/pricing.shoppergiftcertificates.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperGiftCertificates.PropertyValueDefinition.__type"},{"id":3169,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3170,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-5","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3171,"kind":128,"name":"ShopperPromotions","url":"classes/pricing.shopperpromotions.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":3172,"kind":512,"name":"constructor","url":"classes/pricing.shopperpromotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.ShopperPromotions"},{"id":3173,"kind":2048,"name":"getPromotions","url":"classes/pricing.shopperpromotions.html#getpromotions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.ShopperPromotions"},{"id":3174,"kind":2048,"name":"getPromotionsForCampaign","url":"classes/pricing.shopperpromotions.html#getpromotionsforcampaign","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.ShopperPromotions"},{"id":3175,"kind":1024,"name":"clientConfig","url":"classes/pricing.shopperpromotions.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.ShopperPromotions"},{"id":3176,"kind":4194304,"name":"Promotion","url":"classes/pricing.shopperpromotions.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3177,"kind":4194304,"name":"PromotionResult","url":"classes/pricing.shopperpromotions.html#promotionresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3178,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#promotionresult.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.PromotionResult"},{"id":3179,"kind":32,"name":"limit","url":"classes/pricing.shopperpromotions.html#promotionresult.__type-12.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PromotionResult.__type"},{"id":3180,"kind":32,"name":"data","url":"classes/pricing.shopperpromotions.html#promotionresult.__type-12.data","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PromotionResult.__type"},{"id":3181,"kind":32,"name":"total","url":"classes/pricing.shopperpromotions.html#promotionresult.__type-12.total","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PromotionResult.__type"},{"id":3182,"kind":4194304,"name":"Error","url":"classes/pricing.shopperpromotions.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3183,"kind":4194304,"name":"PromotionNotFound","url":"classes/pricing.shopperpromotions.html#promotionnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3184,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#promotionnotfound.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.PromotionNotFound"},{"id":3185,"kind":4194304,"name":"badrequest","url":"classes/pricing.shopperpromotions.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3186,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#badrequest.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.badrequest"},{"id":3187,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.shopperpromotions.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3188,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.shopperpromotions.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3189,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.shopperpromotions.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3190,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.DateRangeFilter"},{"id":3191,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.shopperpromotions.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3192,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.EtagResponse"},{"id":3193,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.shopperpromotions.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3194,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#integerrangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.IntegerRangeFilter"},{"id":3195,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.shopperpromotions.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3196,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited3"},{"id":3197,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.shopperpromotions.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3198,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#synccreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.SyncCreated"},{"id":3199,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.shopperpromotions.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3200,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.DateConditionalRequest"},{"id":3201,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.shopperpromotions.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3202,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited5"},{"id":3203,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.shopperpromotions.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3204,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.EtagConditionalRequest"},{"id":3205,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.shopperpromotions.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3206,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.AsyncCreated"},{"id":3207,"kind":4194304,"name":"RateLimited","url":"classes/pricing.shopperpromotions.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3208,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited"},{"id":3209,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.shopperpromotions.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3210,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited2"},{"id":3211,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.shopperpromotions.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3212,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#offsetpaginated.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.OffsetPaginated"},{"id":3213,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.shopperpromotions.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3214,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#rangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RangeFilter"},{"id":3215,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.shopperpromotions.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3216,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.RateLimited4"},{"id":3217,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.shopperpromotions.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3218,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#numericrangefilter.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.NumericRangeFilter"},{"id":3219,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.shopperpromotions.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3220,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.DatetimeRangeFilter"},{"id":3221,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.shopperpromotions.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3222,"kind":4194304,"name":"Money","url":"classes/pricing.shopperpromotions.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3223,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.shopperpromotions.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3224,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.shopperpromotions.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3225,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.shopperpromotions.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3226,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.shopperpromotions.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3227,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.shopperpromotions.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3228,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.shopperpromotions.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3229,"kind":4194304,"name":"OpenObject","url":"classes/pricing.shopperpromotions.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3230,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.shopperpromotions.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3231,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.QueryParamsLimit"},{"id":3232,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.shopperpromotions.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3233,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.QueryParamsOffset"},{"id":3234,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.shopperpromotions.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3235,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.SiteSpecific"},{"id":3236,"kind":4194304,"name":"Selectable","url":"classes/pricing.shopperpromotions.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3237,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.Selectable"},{"id":3238,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.shopperpromotions.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3239,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#nopropertiesallowed.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.NoPropertiesAllowed"},{"id":3240,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.shopperpromotions.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3241,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.shopperpromotions.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3242,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.shopperpromotions.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3243,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.shopperpromotions.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3244,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.shopperpromotions.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3245,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.shopperpromotions.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3246,"kind":4194304,"name":"Query","url":"classes/pricing.shopperpromotions.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3247,"kind":4194304,"name":"TermQuery","url":"classes/pricing.shopperpromotions.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3248,"kind":4194304,"name":"TermFilter","url":"classes/pricing.shopperpromotions.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3249,"kind":4194304,"name":"TextQuery","url":"classes/pricing.shopperpromotions.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3250,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.shopperpromotions.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3251,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.shopperpromotions.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3252,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.shopperpromotions.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3253,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.shopperpromotions.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3254,"kind":4194304,"name":"Filter","url":"classes/pricing.shopperpromotions.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3255,"kind":4194304,"name":"Sort","url":"classes/pricing.shopperpromotions.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3256,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.shopperpromotions.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3257,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.shopperpromotions.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3258,"kind":4194304,"name":"L10nString","url":"classes/pricing.shopperpromotions.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3259,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.shopperpromotions.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3260,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.AttributeDefinition"},{"id":3261,"kind":32,"name":"defaultValue","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3262,"kind":32,"name":"id","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3263,"kind":32,"name":"name","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3264,"kind":32,"name":"description","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3265,"kind":32,"name":"key","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3266,"kind":32,"name":"localizable","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3267,"kind":32,"name":"mandatory","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3268,"kind":32,"name":"max","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3269,"kind":32,"name":"minLength","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3270,"kind":32,"name":"min","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3271,"kind":32,"name":"multiValueType","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3272,"kind":32,"name":"regularExpression","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3273,"kind":32,"name":"scale","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3274,"kind":32,"name":"searchable","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3275,"kind":32,"name":"siteSpecific","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3276,"kind":32,"name":"system","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3277,"kind":32,"name":"unit","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3278,"kind":32,"name":"possibleValues","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3279,"kind":32,"name":"type","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3280,"kind":32,"name":"visible","url":"classes/pricing.shopperpromotions.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.AttributeDefinition.__type"},{"id":3281,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.ShopperPromotions"},{"id":3282,"kind":65536,"name":"__type","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.ShopperPromotions.PropertyValueDefinition"},{"id":3283,"kind":32,"name":"description","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3284,"kind":32,"name":"displayValue","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3285,"kind":32,"name":"id","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3286,"kind":32,"name":"position","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3287,"kind":32,"name":"value","url":"classes/pricing.shopperpromotions.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.ShopperPromotions.PropertyValueDefinition.__type"},{"id":3288,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-6","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3289,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-6","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3290,"kind":128,"name":"SourceCodeGroups","url":"classes/pricing.sourcecodegroups.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"pricing"},{"id":3291,"kind":512,"name":"constructor","url":"classes/pricing.sourcecodegroups.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"pricing.SourceCodeGroups"},{"id":3292,"kind":2048,"name":"deleteSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#deletesourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3293,"kind":2048,"name":"getSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#getsourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3294,"kind":2048,"name":"updateSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#updatesourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3295,"kind":2048,"name":"createSourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#createsourcecodegroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3296,"kind":2048,"name":"sourceCodeGroupsSearch","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupssearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"pricing.SourceCodeGroups"},{"id":3297,"kind":1024,"name":"clientConfig","url":"classes/pricing.sourcecodegroups.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"pricing.SourceCodeGroups"},{"id":3298,"kind":4194304,"name":"SourceCodeGroup","url":"classes/pricing.sourcecodegroups.html#sourcecodegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3299,"kind":4194304,"name":"SourceCodeGroupSearchResult","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3300,"kind":4194304,"name":"SourceCodeRedirectInfo","url":"classes/pricing.sourcecodegroups.html#sourcecoderedirectinfo","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3301,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sourcecoderedirectinfo.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SourceCodeRedirectInfo"},{"id":3302,"kind":32,"name":"locationType","url":"classes/pricing.sourcecodegroups.html#sourcecoderedirectinfo.__type-26.locationtype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.SourceCodeRedirectInfo.__type"},{"id":3303,"kind":32,"name":"location","url":"classes/pricing.sourcecodegroups.html#sourcecoderedirectinfo.__type-26.location","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.SourceCodeRedirectInfo.__type"},{"id":3304,"kind":4194304,"name":"SourceCodeSpecification","url":"classes/pricing.sourcecodegroups.html#sourcecodespecification","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3305,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sourcecodespecification.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SourceCodeSpecification"},{"id":3306,"kind":32,"name":"expression","url":"classes/pricing.sourcecodegroups.html#sourcecodespecification.__type-27.expression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.SourceCodeSpecification.__type"},{"id":3307,"kind":4194304,"name":"SourceCodeGroupNotFound","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3308,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupnotfound.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SourceCodeGroupNotFound"},{"id":3309,"kind":4194304,"name":"SourceCodeGroupInvalid","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupinvalid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3310,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sourcecodegroupinvalid.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SourceCodeGroupInvalid"},{"id":3311,"kind":4194304,"name":"IdConflict","url":"classes/pricing.sourcecodegroups.html#idconflict","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3312,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#idconflict.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.IdConflict"},{"id":3313,"kind":4194304,"name":"InvalidQuery","url":"classes/pricing.sourcecodegroups.html#invalidquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3314,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#invalidquery.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.InvalidQuery"},{"id":3315,"kind":4194304,"name":"ErrorResponse","url":"classes/pricing.sourcecodegroups.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3316,"kind":4194304,"name":"ChangeControlled","url":"classes/pricing.sourcecodegroups.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3317,"kind":4194304,"name":"DateRangeFilter","url":"classes/pricing.sourcecodegroups.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3318,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#daterangefilter.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.DateRangeFilter"},{"id":3319,"kind":4194304,"name":"EtagResponse","url":"classes/pricing.sourcecodegroups.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3320,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#etagresponse.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.EtagResponse"},{"id":3321,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/pricing.sourcecodegroups.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3322,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.IntegerRangeFilter"},{"id":3323,"kind":4194304,"name":"RateLimited3","url":"classes/pricing.sourcecodegroups.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3324,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited3"},{"id":3325,"kind":4194304,"name":"SyncCreated","url":"classes/pricing.sourcecodegroups.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3326,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#synccreated.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SyncCreated"},{"id":3327,"kind":4194304,"name":"DateConditionalRequest","url":"classes/pricing.sourcecodegroups.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3328,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#dateconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.DateConditionalRequest"},{"id":3329,"kind":4194304,"name":"RateLimited5","url":"classes/pricing.sourcecodegroups.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3330,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited5"},{"id":3331,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/pricing.sourcecodegroups.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3332,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#etagconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.EtagConditionalRequest"},{"id":3333,"kind":4194304,"name":"AsyncCreated","url":"classes/pricing.sourcecodegroups.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3334,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.AsyncCreated"},{"id":3335,"kind":4194304,"name":"RateLimited","url":"classes/pricing.sourcecodegroups.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3336,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited"},{"id":3337,"kind":4194304,"name":"RateLimited2","url":"classes/pricing.sourcecodegroups.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3338,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited2"},{"id":3339,"kind":4194304,"name":"OffsetPaginated","url":"classes/pricing.sourcecodegroups.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3340,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#offsetpaginated.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.OffsetPaginated"},{"id":3341,"kind":4194304,"name":"RangeFilter","url":"classes/pricing.sourcecodegroups.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3342,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#rangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RangeFilter"},{"id":3343,"kind":4194304,"name":"RateLimited4","url":"classes/pricing.sourcecodegroups.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3344,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.RateLimited4"},{"id":3345,"kind":4194304,"name":"NumericRangeFilter","url":"classes/pricing.sourcecodegroups.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3346,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#numericrangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.NumericRangeFilter"},{"id":3347,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/pricing.sourcecodegroups.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3348,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#datetimerangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.DatetimeRangeFilter"},{"id":3349,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/pricing.sourcecodegroups.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3350,"kind":4194304,"name":"Error","url":"classes/pricing.sourcecodegroups.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3351,"kind":4194304,"name":"Money","url":"classes/pricing.sourcecodegroups.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3352,"kind":4194304,"name":"SimpleSearchResult","url":"classes/pricing.sourcecodegroups.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3353,"kind":4194304,"name":"SearchRequest","url":"classes/pricing.sourcecodegroups.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3354,"kind":4194304,"name":"PropertyDefinition","url":"classes/pricing.sourcecodegroups.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3355,"kind":4194304,"name":"LocalizedString","url":"classes/pricing.sourcecodegroups.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3356,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/pricing.sourcecodegroups.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3357,"kind":4194304,"name":"ClosedObject","url":"classes/pricing.sourcecodegroups.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3358,"kind":4194304,"name":"OpenObject","url":"classes/pricing.sourcecodegroups.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3359,"kind":4194304,"name":"QueryParamsLimit","url":"classes/pricing.sourcecodegroups.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3360,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.QueryParamsLimit"},{"id":3361,"kind":4194304,"name":"QueryParamsOffset","url":"classes/pricing.sourcecodegroups.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3362,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.QueryParamsOffset"},{"id":3363,"kind":4194304,"name":"SiteSpecific","url":"classes/pricing.sourcecodegroups.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3364,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.SiteSpecific"},{"id":3365,"kind":4194304,"name":"Selectable","url":"classes/pricing.sourcecodegroups.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3366,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.Selectable"},{"id":3367,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/pricing.sourcecodegroups.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3368,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.NoPropertiesAllowed"},{"id":3369,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/pricing.sourcecodegroups.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3370,"kind":4194304,"name":"BoolFilter","url":"classes/pricing.sourcecodegroups.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3371,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/pricing.sourcecodegroups.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3372,"kind":4194304,"name":"MatchAllQuery","url":"classes/pricing.sourcecodegroups.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3373,"kind":4194304,"name":"FilteredQuery","url":"classes/pricing.sourcecodegroups.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3374,"kind":4194304,"name":"QueryFilter","url":"classes/pricing.sourcecodegroups.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3375,"kind":4194304,"name":"Query","url":"classes/pricing.sourcecodegroups.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3376,"kind":4194304,"name":"TermQuery","url":"classes/pricing.sourcecodegroups.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3377,"kind":4194304,"name":"TermFilter","url":"classes/pricing.sourcecodegroups.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3378,"kind":4194304,"name":"TextQuery","url":"classes/pricing.sourcecodegroups.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3379,"kind":4194304,"name":"Range2Filter","url":"classes/pricing.sourcecodegroups.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3380,"kind":4194304,"name":"BoolQuery","url":"classes/pricing.sourcecodegroups.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3381,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/pricing.sourcecodegroups.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3382,"kind":4194304,"name":"NestedQuery","url":"classes/pricing.sourcecodegroups.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3383,"kind":4194304,"name":"Filter","url":"classes/pricing.sourcecodegroups.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3384,"kind":4194304,"name":"Sort","url":"classes/pricing.sourcecodegroups.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3385,"kind":4194304,"name":"SearchRequestBase","url":"classes/pricing.sourcecodegroups.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3386,"kind":4194304,"name":"MoneyMnemonic","url":"classes/pricing.sourcecodegroups.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3387,"kind":4194304,"name":"L10nString","url":"classes/pricing.sourcecodegroups.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3388,"kind":4194304,"name":"AttributeDefinition","url":"classes/pricing.sourcecodegroups.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3389,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.AttributeDefinition"},{"id":3390,"kind":32,"name":"defaultValue","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3391,"kind":32,"name":"id","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3392,"kind":32,"name":"name","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3393,"kind":32,"name":"description","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3394,"kind":32,"name":"key","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3395,"kind":32,"name":"localizable","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3396,"kind":32,"name":"mandatory","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3397,"kind":32,"name":"max","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3398,"kind":32,"name":"minLength","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3399,"kind":32,"name":"min","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3400,"kind":32,"name":"multiValueType","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3401,"kind":32,"name":"regularExpression","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3402,"kind":32,"name":"scale","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3403,"kind":32,"name":"searchable","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3404,"kind":32,"name":"siteSpecific","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3405,"kind":32,"name":"system","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3406,"kind":32,"name":"unit","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3407,"kind":32,"name":"possibleValues","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3408,"kind":32,"name":"type","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3409,"kind":32,"name":"visible","url":"classes/pricing.sourcecodegroups.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.AttributeDefinition.__type"},{"id":3410,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"pricing.SourceCodeGroups"},{"id":3411,"kind":65536,"name":"__type","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"pricing.SourceCodeGroups.PropertyValueDefinition"},{"id":3412,"kind":32,"name":"description","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3413,"kind":32,"name":"displayValue","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3414,"kind":32,"name":"id","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3415,"kind":32,"name":"position","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3416,"kind":32,"name":"value","url":"classes/pricing.sourcecodegroups.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"pricing.SourceCodeGroups.PropertyValueDefinition.__type"},{"id":3417,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/pricing.html#user_agent_header-7","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3418,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/pricing.html#user_agent_value-7","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"pricing"},{"id":3419,"kind":1,"name":"product","url":"modules/product.html","classes":"tsd-kind-module"},{"id":3420,"kind":128,"name":"Catalogs","url":"classes/product.catalogs.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"product"},{"id":3421,"kind":512,"name":"constructor","url":"classes/product.catalogs.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"product.Catalogs"},{"id":3422,"kind":2048,"name":"getCatalogs","url":"classes/product.catalogs.html#getcatalogs","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3423,"kind":2048,"name":"getCatalog","url":"classes/product.catalogs.html#getcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3424,"kind":2048,"name":"updateCatalog","url":"classes/product.catalogs.html#updatecatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3425,"kind":2048,"name":"getCategoriesFromCatalog","url":"classes/product.catalogs.html#getcategoriesfromcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3426,"kind":2048,"name":"deleteCategoryFromCatalog","url":"classes/product.catalogs.html#deletecategoryfromcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3427,"kind":2048,"name":"getCategoryFromCatalog","url":"classes/product.catalogs.html#getcategoryfromcatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3428,"kind":2048,"name":"updateCategoryInCatalog","url":"classes/product.catalogs.html#updatecategoryincatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3429,"kind":2048,"name":"createCategoryInCatalog","url":"classes/product.catalogs.html#createcategoryincatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3430,"kind":2048,"name":"searchProductsAssignedToCategory","url":"classes/product.catalogs.html#searchproductsassignedtocategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3431,"kind":2048,"name":"getAssignedProductFromCategory","url":"classes/product.catalogs.html#getassignedproductfromcategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3432,"kind":2048,"name":"unassignProductFromCategory","url":"classes/product.catalogs.html#unassignproductfromcategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3433,"kind":2048,"name":"updateProductCategoryAssignment","url":"classes/product.catalogs.html#updateproductcategoryassignment","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3434,"kind":2048,"name":"assignProductToCategory","url":"classes/product.catalogs.html#assignproducttocategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3435,"kind":2048,"name":"runCategoryRules","url":"classes/product.catalogs.html#runcategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3436,"kind":2048,"name":"getCategorizationStatus","url":"classes/product.catalogs.html#getcategorizationstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3437,"kind":2048,"name":"getExclusionList","url":"classes/product.catalogs.html#getexclusionlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3438,"kind":2048,"name":"addProductsToExclusionList","url":"classes/product.catalogs.html#addproductstoexclusionlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3439,"kind":2048,"name":"removeProductsFromExclusionList","url":"classes/product.catalogs.html#removeproductsfromexclusionlist","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3440,"kind":2048,"name":"getCategoryRules","url":"classes/product.catalogs.html#getcategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3441,"kind":2048,"name":"deleteCategoryRules","url":"classes/product.catalogs.html#deletecategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3442,"kind":2048,"name":"createCategoryRules","url":"classes/product.catalogs.html#createcategoryrules","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3443,"kind":2048,"name":"getRuleById","url":"classes/product.catalogs.html#getrulebyid","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3444,"kind":2048,"name":"createUpdateRule","url":"classes/product.catalogs.html#createupdaterule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3445,"kind":2048,"name":"deleteRule","url":"classes/product.catalogs.html#deleterule","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3446,"kind":2048,"name":"getCategoryRuleConditions","url":"classes/product.catalogs.html#getcategoryruleconditions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3447,"kind":2048,"name":"deleteCategoryRuleConditions","url":"classes/product.catalogs.html#deletecategoryruleconditions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3448,"kind":2048,"name":"getCategoryRuleCondition","url":"classes/product.catalogs.html#getcategoryrulecondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3449,"kind":2048,"name":"createOrUpdateCategoryRuleCondition","url":"classes/product.catalogs.html#createorupdatecategoryrulecondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3450,"kind":2048,"name":"deleteCategoryRuleCondition","url":"classes/product.catalogs.html#deletecategoryrulecondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3451,"kind":2048,"name":"searchCategoriesInCatalog","url":"classes/product.catalogs.html#searchcategoriesincatalog","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3452,"kind":2048,"name":"searchCatalogs","url":"classes/product.catalogs.html#searchcatalogs","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3453,"kind":2048,"name":"searchCategories","url":"classes/product.catalogs.html#searchcategories","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Catalogs"},{"id":3454,"kind":1024,"name":"clientConfig","url":"classes/product.catalogs.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"product.Catalogs"},{"id":3455,"kind":4194304,"name":"Money","url":"classes/product.catalogs.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3456,"kind":4194304,"name":"RulesResult","url":"classes/product.catalogs.html#rulesresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3457,"kind":4194304,"name":"ExecutionJobStatusResult","url":"classes/product.catalogs.html#executionjobstatusresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3458,"kind":4194304,"name":"CategoryProductAssignmentSearchResult","url":"classes/product.catalogs.html#categoryproductassignmentsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3459,"kind":4194304,"name":"ProductOption","url":"classes/product.catalogs.html#productoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3460,"kind":4194304,"name":"Master","url":"classes/product.catalogs.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3461,"kind":4194304,"name":"CategorySearchResult","url":"classes/product.catalogs.html#categorysearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3462,"kind":4194304,"name":"Category","url":"classes/product.catalogs.html#category","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3463,"kind":4194304,"name":"Condition","url":"classes/product.catalogs.html#condition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3464,"kind":4194304,"name":"RulesRequest","url":"classes/product.catalogs.html#rulesrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3465,"kind":4194304,"name":"VariationAttribute","url":"classes/product.catalogs.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3466,"kind":4194304,"name":"CatalogCategoryId","url":"classes/product.catalogs.html#catalogcategoryid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3467,"kind":4194304,"name":"Categories","url":"classes/product.catalogs.html#categories","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3468,"kind":4194304,"name":"RuleRequest","url":"classes/product.catalogs.html#rulerequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3469,"kind":4194304,"name":"ConditionsResult","url":"classes/product.catalogs.html#conditionsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3470,"kind":4194304,"name":"SortingRule","url":"classes/product.catalogs.html#sortingrule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3471,"kind":4194304,"name":"ProductType","url":"classes/product.catalogs.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3472,"kind":4194304,"name":"Rule","url":"classes/product.catalogs.html#rule","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3473,"kind":4194304,"name":"Variant","url":"classes/product.catalogs.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3474,"kind":4194304,"name":"VariationGroup","url":"classes/product.catalogs.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3475,"kind":4194304,"name":"ProductOptionValue","url":"classes/product.catalogs.html#productoptionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3476,"kind":4194304,"name":"VariationAttributes","url":"classes/product.catalogs.html#variationattributes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3477,"kind":4194304,"name":"CategoryLinks","url":"classes/product.catalogs.html#categorylinks","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3478,"kind":4194304,"name":"ExecutionRequest","url":"classes/product.catalogs.html#executionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3479,"kind":4194304,"name":"MarkupText","url":"classes/product.catalogs.html#markuptext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3480,"kind":4194304,"name":"ExcludedProduct","url":"classes/product.catalogs.html#excludedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3481,"kind":4194304,"name":"ImageGroup","url":"classes/product.catalogs.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3482,"kind":4194304,"name":"Catalogs","url":"classes/product.catalogs.html#catalogs","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3483,"kind":4194304,"name":"CategoryLink","url":"classes/product.catalogs.html#categorylink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3484,"kind":4194304,"name":"MediaFile","url":"classes/product.catalogs.html#mediafile","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3485,"kind":4194304,"name":"VariationAttributeValues","url":"classes/product.catalogs.html#variationattributevalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3486,"kind":4194304,"name":"CatalogSearchResult","url":"classes/product.catalogs.html#catalogsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3487,"kind":4194304,"name":"Site","url":"classes/product.catalogs.html#site","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3488,"kind":4194304,"name":"ProductOptions","url":"classes/product.catalogs.html#productoptions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3489,"kind":4194304,"name":"Product","url":"classes/product.catalogs.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3490,"kind":4194304,"name":"ExcludedProductsResult","url":"classes/product.catalogs.html#excludedproductsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3491,"kind":4194304,"name":"CategoryProductAssignment","url":"classes/product.catalogs.html#categoryproductassignment","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3492,"kind":4194304,"name":"VariationAttributeValue","url":"classes/product.catalogs.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3493,"kind":4194304,"name":"ProductOptionValues","url":"classes/product.catalogs.html#productoptionvalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3494,"kind":4194304,"name":"CustomerListLink","url":"classes/product.catalogs.html#customerlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3495,"kind":4194304,"name":"PathRecord","url":"classes/product.catalogs.html#pathrecord","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3496,"kind":4194304,"name":"ExcludedProductRequest","url":"classes/product.catalogs.html#excludedproductrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3497,"kind":4194304,"name":"Catalog","url":"classes/product.catalogs.html#catalog","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3498,"kind":4194304,"name":"SortingRuleStep","url":"classes/product.catalogs.html#sortingrulestep","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3499,"kind":4194304,"name":"ErrorResponse","url":"classes/product.catalogs.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3500,"kind":4194304,"name":"RuleNotFound","url":"classes/product.catalogs.html#rulenotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3501,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#rulenotfound.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RuleNotFound"},{"id":3502,"kind":4194304,"name":"NotFound","url":"classes/product.catalogs.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3503,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#notfound.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.NotFound"},{"id":3504,"kind":4194304,"name":"RateLimited3","url":"classes/product.catalogs.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3505,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited3.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited3"},{"id":3506,"kind":4194304,"name":"BadRequest","url":"classes/product.catalogs.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3507,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.BadRequest"},{"id":3508,"kind":4194304,"name":"RateLimited5","url":"classes/product.catalogs.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3509,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited5.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited5"},{"id":3510,"kind":4194304,"name":"JobExecutionNotFound","url":"classes/product.catalogs.html#jobexecutionnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3511,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#jobexecutionnotfound.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.JobExecutionNotFound"},{"id":3512,"kind":4194304,"name":"Unauthorized","url":"classes/product.catalogs.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3513,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#unauthorized.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.Unauthorized"},{"id":3514,"kind":4194304,"name":"RateLimited4","url":"classes/product.catalogs.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3515,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited4.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited4"},{"id":3516,"kind":4194304,"name":"ChangeControlled","url":"classes/product.catalogs.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3517,"kind":4194304,"name":"DateRangeFilter","url":"classes/product.catalogs.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3518,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.DateRangeFilter"},{"id":3519,"kind":4194304,"name":"EtagResponse","url":"classes/product.catalogs.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3520,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.EtagResponse"},{"id":3521,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/product.catalogs.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3522,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.IntegerRangeFilter"},{"id":3523,"kind":4194304,"name":"SyncCreated","url":"classes/product.catalogs.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3524,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#synccreated.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.SyncCreated"},{"id":3525,"kind":4194304,"name":"DateConditionalRequest","url":"classes/product.catalogs.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3526,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.DateConditionalRequest"},{"id":3527,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/product.catalogs.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3528,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.EtagConditionalRequest"},{"id":3529,"kind":4194304,"name":"AsyncCreated","url":"classes/product.catalogs.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3530,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.AsyncCreated"},{"id":3531,"kind":4194304,"name":"RateLimited","url":"classes/product.catalogs.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3532,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited"},{"id":3533,"kind":4194304,"name":"RateLimited2","url":"classes/product.catalogs.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3534,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#ratelimited2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RateLimited2"},{"id":3535,"kind":4194304,"name":"OffsetPaginated","url":"classes/product.catalogs.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3536,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#offsetpaginated.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.OffsetPaginated"},{"id":3537,"kind":4194304,"name":"RangeFilter","url":"classes/product.catalogs.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3538,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#rangefilter.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.RangeFilter"},{"id":3539,"kind":4194304,"name":"NumericRangeFilter","url":"classes/product.catalogs.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3540,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#numericrangefilter.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.NumericRangeFilter"},{"id":3541,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/product.catalogs.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3542,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.DatetimeRangeFilter"},{"id":3543,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/product.catalogs.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3544,"kind":4194304,"name":"Error","url":"classes/product.catalogs.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3545,"kind":4194304,"name":"SimpleSearchResult","url":"classes/product.catalogs.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3546,"kind":4194304,"name":"SearchRequest","url":"classes/product.catalogs.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3547,"kind":4194304,"name":"PropertyDefinition","url":"classes/product.catalogs.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3548,"kind":4194304,"name":"LocalizedString","url":"classes/product.catalogs.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3549,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/product.catalogs.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3550,"kind":4194304,"name":"ClosedObject","url":"classes/product.catalogs.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3551,"kind":4194304,"name":"OpenObject","url":"classes/product.catalogs.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3552,"kind":4194304,"name":"QueryParamsLimit","url":"classes/product.catalogs.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3553,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#queryparamslimit.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.QueryParamsLimit"},{"id":3554,"kind":4194304,"name":"QueryParamsOffset","url":"classes/product.catalogs.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3555,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#queryparamsoffset.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.QueryParamsOffset"},{"id":3556,"kind":4194304,"name":"SiteSpecific","url":"classes/product.catalogs.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3557,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#sitespecific-1.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.SiteSpecific"},{"id":3558,"kind":4194304,"name":"Selectable","url":"classes/product.catalogs.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3559,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#selectable.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.Selectable"},{"id":3560,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/product.catalogs.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3561,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.NoPropertiesAllowed"},{"id":3562,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/product.catalogs.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3563,"kind":4194304,"name":"BoolFilter","url":"classes/product.catalogs.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3564,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/product.catalogs.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3565,"kind":4194304,"name":"MatchAllQuery","url":"classes/product.catalogs.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3566,"kind":4194304,"name":"FilteredQuery","url":"classes/product.catalogs.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3567,"kind":4194304,"name":"QueryFilter","url":"classes/product.catalogs.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3568,"kind":4194304,"name":"Query","url":"classes/product.catalogs.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3569,"kind":4194304,"name":"TermQuery","url":"classes/product.catalogs.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3570,"kind":4194304,"name":"TermFilter","url":"classes/product.catalogs.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3571,"kind":4194304,"name":"TextQuery","url":"classes/product.catalogs.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3572,"kind":4194304,"name":"Range2Filter","url":"classes/product.catalogs.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3573,"kind":4194304,"name":"BoolQuery","url":"classes/product.catalogs.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3574,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/product.catalogs.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3575,"kind":4194304,"name":"NestedQuery","url":"classes/product.catalogs.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3576,"kind":4194304,"name":"Filter","url":"classes/product.catalogs.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3577,"kind":4194304,"name":"Sort","url":"classes/product.catalogs.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3578,"kind":4194304,"name":"SearchRequestBase","url":"classes/product.catalogs.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3579,"kind":4194304,"name":"MoneyMnemonic","url":"classes/product.catalogs.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3580,"kind":4194304,"name":"L10nString","url":"classes/product.catalogs.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3581,"kind":4194304,"name":"AttributeDefinition","url":"classes/product.catalogs.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3582,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.AttributeDefinition"},{"id":3583,"kind":32,"name":"defaultValue","url":"classes/product.catalogs.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3584,"kind":32,"name":"id","url":"classes/product.catalogs.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3585,"kind":32,"name":"name","url":"classes/product.catalogs.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3586,"kind":32,"name":"description","url":"classes/product.catalogs.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3587,"kind":32,"name":"key","url":"classes/product.catalogs.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3588,"kind":32,"name":"localizable","url":"classes/product.catalogs.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3589,"kind":32,"name":"mandatory","url":"classes/product.catalogs.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3590,"kind":32,"name":"max","url":"classes/product.catalogs.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3591,"kind":32,"name":"minLength","url":"classes/product.catalogs.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3592,"kind":32,"name":"min","url":"classes/product.catalogs.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3593,"kind":32,"name":"multiValueType","url":"classes/product.catalogs.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3594,"kind":32,"name":"regularExpression","url":"classes/product.catalogs.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3595,"kind":32,"name":"scale","url":"classes/product.catalogs.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3596,"kind":32,"name":"searchable","url":"classes/product.catalogs.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3597,"kind":32,"name":"siteSpecific","url":"classes/product.catalogs.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3598,"kind":32,"name":"system","url":"classes/product.catalogs.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3599,"kind":32,"name":"unit","url":"classes/product.catalogs.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3600,"kind":32,"name":"possibleValues","url":"classes/product.catalogs.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3601,"kind":32,"name":"type","url":"classes/product.catalogs.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3602,"kind":32,"name":"visible","url":"classes/product.catalogs.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.AttributeDefinition.__type"},{"id":3603,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/product.catalogs.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Catalogs"},{"id":3604,"kind":65536,"name":"__type","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Catalogs.PropertyValueDefinition"},{"id":3605,"kind":32,"name":"description","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3606,"kind":32,"name":"displayValue","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3607,"kind":32,"name":"id","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3608,"kind":32,"name":"position","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3609,"kind":32,"name":"value","url":"classes/product.catalogs.html#propertyvaluedefinition.__type-14.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Catalogs.PropertyValueDefinition.__type"},{"id":3610,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/product.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3611,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/product.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3612,"kind":128,"name":"Products","url":"classes/product.products.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"product"},{"id":3613,"kind":512,"name":"constructor","url":"classes/product.products.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"product.Products"},{"id":3614,"kind":2048,"name":"deleteProduct","url":"classes/product.products.html#deleteproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3615,"kind":2048,"name":"getProduct","url":"classes/product.products.html#getproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3616,"kind":2048,"name":"updateProduct","url":"classes/product.products.html#updateproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3617,"kind":2048,"name":"createProduct","url":"classes/product.products.html#createproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3618,"kind":2048,"name":"searchProductVariations","url":"classes/product.products.html#searchproductvariations","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3619,"kind":2048,"name":"getVariationGroupsForMasterProduct","url":"classes/product.products.html#getvariationgroupsformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3620,"kind":2048,"name":"unassignVariationGroupFromMasterProduct","url":"classes/product.products.html#unassignvariationgroupfrommasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3621,"kind":2048,"name":"getVariationGroupForMasterProduct","url":"classes/product.products.html#getvariationgroupformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3622,"kind":2048,"name":"updateVariationGroupForMasterProduct","url":"classes/product.products.html#updatevariationgroupformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3623,"kind":2048,"name":"assignVariationGroupToMasterProduct","url":"classes/product.products.html#assignvariationgrouptomasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3624,"kind":2048,"name":"getVariationsForMasterProduct","url":"classes/product.products.html#getvariationsformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3625,"kind":2048,"name":"unassignVariationFromMasterProduct","url":"classes/product.products.html#unassignvariationfrommasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3626,"kind":2048,"name":"getVariationForMasterProduct","url":"classes/product.products.html#getvariationformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3627,"kind":2048,"name":"updateVariationForMasterProduct","url":"classes/product.products.html#updatevariationformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3628,"kind":2048,"name":"assignVariationForMasterProduct","url":"classes/product.products.html#assignvariationformasterproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3629,"kind":2048,"name":"getProductOptions","url":"classes/product.products.html#getproductoptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3630,"kind":2048,"name":"deleteProductOption","url":"classes/product.products.html#deleteproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3631,"kind":2048,"name":"getProductOption","url":"classes/product.products.html#getproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3632,"kind":2048,"name":"updateProductOption","url":"classes/product.products.html#updateproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3633,"kind":2048,"name":"createProductOption","url":"classes/product.products.html#createproductoption","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3634,"kind":2048,"name":"deleteProductOptionValue","url":"classes/product.products.html#deleteproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3635,"kind":2048,"name":"getProductOptionValue","url":"classes/product.products.html#getproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3636,"kind":2048,"name":"updateProductOptionValue","url":"classes/product.products.html#updateproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3637,"kind":2048,"name":"createProductOptionValue","url":"classes/product.products.html#createproductoptionvalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3638,"kind":2048,"name":"getVariationAttributeValue","url":"classes/product.products.html#getvariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3639,"kind":2048,"name":"deleteVariationAttributeValue","url":"classes/product.products.html#deletevariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3640,"kind":2048,"name":"updateVariationAttributeValue","url":"classes/product.products.html#updatevariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3641,"kind":2048,"name":"createVariationAttributeValue","url":"classes/product.products.html#createvariationattributevalue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3642,"kind":2048,"name":"getVariationAttributes","url":"classes/product.products.html#getvariationattributes","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3643,"kind":2048,"name":"getVariationAttribute","url":"classes/product.products.html#getvariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3644,"kind":2048,"name":"deleteVariationAttribute","url":"classes/product.products.html#deletevariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3645,"kind":2048,"name":"updateVariationAttribute","url":"classes/product.products.html#updatevariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3646,"kind":2048,"name":"createVariationAttribute","url":"classes/product.products.html#createvariationattribute","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3647,"kind":2048,"name":"getCategorizationAttributeDefinitions","url":"classes/product.products.html#getcategorizationattributedefinitions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3648,"kind":2048,"name":"searchProducts","url":"classes/product.products.html#searchproducts","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.Products"},{"id":3649,"kind":1024,"name":"clientConfig","url":"classes/product.products.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"product.Products"},{"id":3650,"kind":4194304,"name":"Money","url":"classes/product.products.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3651,"kind":4194304,"name":"Variants","url":"classes/product.products.html#variants","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3652,"kind":4194304,"name":"ProductOption","url":"classes/product.products.html#productoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3653,"kind":4194304,"name":"Master","url":"classes/product.products.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3654,"kind":4194304,"name":"VariantSearchResult","url":"classes/product.products.html#variantsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3655,"kind":4194304,"name":"VariationAttribute","url":"classes/product.products.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3656,"kind":4194304,"name":"CatalogCategoryId","url":"classes/product.products.html#catalogcategoryid","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3657,"kind":4194304,"name":"CategorizationAttributeDefinitonsResult","url":"classes/product.products.html#categorizationattributedefinitonsresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3658,"kind":4194304,"name":"ProductType","url":"classes/product.products.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3659,"kind":4194304,"name":"Variant","url":"classes/product.products.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3660,"kind":4194304,"name":"VariationGroup","url":"classes/product.products.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3661,"kind":4194304,"name":"ProductOptionValue","url":"classes/product.products.html#productoptionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3662,"kind":4194304,"name":"VariationAttributes","url":"classes/product.products.html#variationattributes","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3663,"kind":4194304,"name":"MarkupText","url":"classes/product.products.html#markuptext","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3664,"kind":4194304,"name":"ImageGroup","url":"classes/product.products.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3665,"kind":4194304,"name":"MediaFile","url":"classes/product.products.html#mediafile","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3666,"kind":4194304,"name":"VariationAttributeValues","url":"classes/product.products.html#variationattributevalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3667,"kind":4194304,"name":"ProductSearchResult","url":"classes/product.products.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3668,"kind":4194304,"name":"ProductOptions","url":"classes/product.products.html#productoptions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3669,"kind":4194304,"name":"Product","url":"classes/product.products.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3670,"kind":4194304,"name":"CategorizationAttributeDefiniton","url":"classes/product.products.html#categorizationattributedefiniton","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3671,"kind":4194304,"name":"VariationAttributeValue","url":"classes/product.products.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3672,"kind":4194304,"name":"ProductOptionValues","url":"classes/product.products.html#productoptionvalues","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3673,"kind":4194304,"name":"VariationGroups","url":"classes/product.products.html#variationgroups","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3674,"kind":4194304,"name":"ErrorResponse","url":"classes/product.products.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3675,"kind":4194304,"name":"Unauthorized","url":"classes/product.products.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3676,"kind":65536,"name":"__type","url":"classes/product.products.html#unauthorized.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.Unauthorized"},{"id":3677,"kind":4194304,"name":"BadRequest","url":"classes/product.products.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3678,"kind":65536,"name":"__type","url":"classes/product.products.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.BadRequest"},{"id":3679,"kind":4194304,"name":"ProductNotFound","url":"classes/product.products.html#productnotfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3680,"kind":65536,"name":"__type","url":"classes/product.products.html#productnotfound.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.ProductNotFound"},{"id":3681,"kind":4194304,"name":"ChangeControlled","url":"classes/product.products.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3682,"kind":4194304,"name":"DateRangeFilter","url":"classes/product.products.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3683,"kind":65536,"name":"__type","url":"classes/product.products.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.DateRangeFilter"},{"id":3684,"kind":4194304,"name":"EtagResponse","url":"classes/product.products.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3685,"kind":65536,"name":"__type","url":"classes/product.products.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.EtagResponse"},{"id":3686,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/product.products.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3687,"kind":65536,"name":"__type","url":"classes/product.products.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.IntegerRangeFilter"},{"id":3688,"kind":4194304,"name":"RateLimited3","url":"classes/product.products.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3689,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited3.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited3"},{"id":3690,"kind":4194304,"name":"SyncCreated","url":"classes/product.products.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3691,"kind":65536,"name":"__type","url":"classes/product.products.html#synccreated.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.SyncCreated"},{"id":3692,"kind":4194304,"name":"DateConditionalRequest","url":"classes/product.products.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3693,"kind":65536,"name":"__type","url":"classes/product.products.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.DateConditionalRequest"},{"id":3694,"kind":4194304,"name":"RateLimited5","url":"classes/product.products.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3695,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited5.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited5"},{"id":3696,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/product.products.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3697,"kind":65536,"name":"__type","url":"classes/product.products.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.EtagConditionalRequest"},{"id":3698,"kind":4194304,"name":"AsyncCreated","url":"classes/product.products.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3699,"kind":65536,"name":"__type","url":"classes/product.products.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.AsyncCreated"},{"id":3700,"kind":4194304,"name":"RateLimited","url":"classes/product.products.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3701,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited"},{"id":3702,"kind":4194304,"name":"RateLimited2","url":"classes/product.products.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3703,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited2"},{"id":3704,"kind":4194304,"name":"OffsetPaginated","url":"classes/product.products.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3705,"kind":65536,"name":"__type","url":"classes/product.products.html#offsetpaginated.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.OffsetPaginated"},{"id":3706,"kind":4194304,"name":"RangeFilter","url":"classes/product.products.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3707,"kind":65536,"name":"__type","url":"classes/product.products.html#rangefilter.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RangeFilter"},{"id":3708,"kind":4194304,"name":"RateLimited4","url":"classes/product.products.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3709,"kind":65536,"name":"__type","url":"classes/product.products.html#ratelimited4.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.RateLimited4"},{"id":3710,"kind":4194304,"name":"NumericRangeFilter","url":"classes/product.products.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3711,"kind":65536,"name":"__type","url":"classes/product.products.html#numericrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.NumericRangeFilter"},{"id":3712,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/product.products.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3713,"kind":65536,"name":"__type","url":"classes/product.products.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.DatetimeRangeFilter"},{"id":3714,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/product.products.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3715,"kind":4194304,"name":"Error","url":"classes/product.products.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3716,"kind":4194304,"name":"SimpleSearchResult","url":"classes/product.products.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3717,"kind":4194304,"name":"SearchRequest","url":"classes/product.products.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3718,"kind":4194304,"name":"PropertyDefinition","url":"classes/product.products.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3719,"kind":4194304,"name":"LocalizedString","url":"classes/product.products.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3720,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/product.products.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3721,"kind":4194304,"name":"ClosedObject","url":"classes/product.products.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3722,"kind":4194304,"name":"OpenObject","url":"classes/product.products.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3723,"kind":4194304,"name":"QueryParamsLimit","url":"classes/product.products.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3724,"kind":65536,"name":"__type","url":"classes/product.products.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.QueryParamsLimit"},{"id":3725,"kind":4194304,"name":"QueryParamsOffset","url":"classes/product.products.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3726,"kind":65536,"name":"__type","url":"classes/product.products.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.QueryParamsOffset"},{"id":3727,"kind":4194304,"name":"SiteSpecific","url":"classes/product.products.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3728,"kind":65536,"name":"__type","url":"classes/product.products.html#sitespecific-1.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.SiteSpecific"},{"id":3729,"kind":4194304,"name":"Selectable","url":"classes/product.products.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3730,"kind":65536,"name":"__type","url":"classes/product.products.html#selectable.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.Selectable"},{"id":3731,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/product.products.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3732,"kind":65536,"name":"__type","url":"classes/product.products.html#nopropertiesallowed.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.NoPropertiesAllowed"},{"id":3733,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/product.products.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3734,"kind":4194304,"name":"BoolFilter","url":"classes/product.products.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3735,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/product.products.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3736,"kind":4194304,"name":"MatchAllQuery","url":"classes/product.products.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3737,"kind":4194304,"name":"FilteredQuery","url":"classes/product.products.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3738,"kind":4194304,"name":"QueryFilter","url":"classes/product.products.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3739,"kind":4194304,"name":"Query","url":"classes/product.products.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3740,"kind":4194304,"name":"TermQuery","url":"classes/product.products.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3741,"kind":4194304,"name":"TermFilter","url":"classes/product.products.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3742,"kind":4194304,"name":"TextQuery","url":"classes/product.products.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3743,"kind":4194304,"name":"Range2Filter","url":"classes/product.products.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3744,"kind":4194304,"name":"BoolQuery","url":"classes/product.products.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3745,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/product.products.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3746,"kind":4194304,"name":"NestedQuery","url":"classes/product.products.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3747,"kind":4194304,"name":"Filter","url":"classes/product.products.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3748,"kind":4194304,"name":"Sort","url":"classes/product.products.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3749,"kind":4194304,"name":"SearchRequestBase","url":"classes/product.products.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3750,"kind":4194304,"name":"MoneyMnemonic","url":"classes/product.products.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3751,"kind":4194304,"name":"L10nString","url":"classes/product.products.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3752,"kind":4194304,"name":"AttributeDefinition","url":"classes/product.products.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3753,"kind":65536,"name":"__type","url":"classes/product.products.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.AttributeDefinition"},{"id":3754,"kind":32,"name":"defaultValue","url":"classes/product.products.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3755,"kind":32,"name":"id","url":"classes/product.products.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3756,"kind":32,"name":"name","url":"classes/product.products.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3757,"kind":32,"name":"description","url":"classes/product.products.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3758,"kind":32,"name":"key","url":"classes/product.products.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3759,"kind":32,"name":"localizable","url":"classes/product.products.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3760,"kind":32,"name":"mandatory","url":"classes/product.products.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3761,"kind":32,"name":"max","url":"classes/product.products.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3762,"kind":32,"name":"minLength","url":"classes/product.products.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3763,"kind":32,"name":"min","url":"classes/product.products.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3764,"kind":32,"name":"multiValueType","url":"classes/product.products.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3765,"kind":32,"name":"regularExpression","url":"classes/product.products.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3766,"kind":32,"name":"scale","url":"classes/product.products.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3767,"kind":32,"name":"searchable","url":"classes/product.products.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3768,"kind":32,"name":"siteSpecific","url":"classes/product.products.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3769,"kind":32,"name":"system","url":"classes/product.products.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3770,"kind":32,"name":"unit","url":"classes/product.products.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3771,"kind":32,"name":"possibleValues","url":"classes/product.products.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3772,"kind":32,"name":"type","url":"classes/product.products.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3773,"kind":32,"name":"visible","url":"classes/product.products.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.AttributeDefinition.__type"},{"id":3774,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/product.products.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.Products"},{"id":3775,"kind":65536,"name":"__type","url":"classes/product.products.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.Products.PropertyValueDefinition"},{"id":3776,"kind":32,"name":"description","url":"classes/product.products.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3777,"kind":32,"name":"displayValue","url":"classes/product.products.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3778,"kind":32,"name":"id","url":"classes/product.products.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3779,"kind":32,"name":"position","url":"classes/product.products.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3780,"kind":32,"name":"value","url":"classes/product.products.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.Products.PropertyValueDefinition.__type"},{"id":3781,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/product.html#user_agent_header-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3782,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/product.html#user_agent_value-1","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3783,"kind":128,"name":"ShopperProducts","url":"classes/product.shopperproducts.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"product"},{"id":3784,"kind":512,"name":"constructor","url":"classes/product.shopperproducts.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"product.ShopperProducts"},{"id":3785,"kind":2048,"name":"getProducts","url":"classes/product.shopperproducts.html#getproducts","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3786,"kind":2048,"name":"getProduct","url":"classes/product.shopperproducts.html#getproduct","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3787,"kind":2048,"name":"getCategories","url":"classes/product.shopperproducts.html#getcategories","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3788,"kind":2048,"name":"getCategory","url":"classes/product.shopperproducts.html#getcategory","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"product.ShopperProducts"},{"id":3789,"kind":1024,"name":"clientConfig","url":"classes/product.shopperproducts.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"product.ShopperProducts"},{"id":3790,"kind":4194304,"name":"ProductPriceTable","url":"classes/product.shopperproducts.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3791,"kind":4194304,"name":"PriceRange","url":"classes/product.shopperproducts.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3792,"kind":4194304,"name":"OptionValue","url":"classes/product.shopperproducts.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3793,"kind":4194304,"name":"Master","url":"classes/product.shopperproducts.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3794,"kind":4194304,"name":"Category","url":"classes/product.shopperproducts.html#category","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3795,"kind":4194304,"name":"CategoryResult","url":"classes/product.shopperproducts.html#categoryresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3796,"kind":4194304,"name":"VariationAttribute","url":"classes/product.shopperproducts.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3797,"kind":4194304,"name":"RecommendationType","url":"classes/product.shopperproducts.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3798,"kind":4194304,"name":"ProductType","url":"classes/product.shopperproducts.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3799,"kind":4194304,"name":"Recommendation","url":"classes/product.shopperproducts.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3800,"kind":4194304,"name":"Variant","url":"classes/product.shopperproducts.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3801,"kind":4194304,"name":"VariationGroup","url":"classes/product.shopperproducts.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3802,"kind":4194304,"name":"ProductResult","url":"classes/product.shopperproducts.html#productresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3803,"kind":4194304,"name":"ProductLink","url":"classes/product.shopperproducts.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3804,"kind":4194304,"name":"Inventory","url":"classes/product.shopperproducts.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3805,"kind":4194304,"name":"ImageGroup","url":"classes/product.shopperproducts.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3806,"kind":4194304,"name":"Option","url":"classes/product.shopperproducts.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3807,"kind":4194304,"name":"Product","url":"classes/product.shopperproducts.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3808,"kind":4194304,"name":"Image","url":"classes/product.shopperproducts.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3809,"kind":4194304,"name":"VariationAttributeValue","url":"classes/product.shopperproducts.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3810,"kind":4194304,"name":"ProductPromotion","url":"classes/product.shopperproducts.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3811,"kind":4194304,"name":"PathRecord","url":"classes/product.shopperproducts.html#pathrecord","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3812,"kind":4194304,"name":"BundledProduct","url":"classes/product.shopperproducts.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3813,"kind":4194304,"name":"ErrorResponse","url":"classes/product.shopperproducts.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3814,"kind":4194304,"name":"NotFound","url":"classes/product.shopperproducts.html#notfound","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3815,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#notfound.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.NotFound"},{"id":3816,"kind":4194304,"name":"BadRequest","url":"classes/product.shopperproducts.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3817,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.BadRequest"},{"id":3818,"kind":4194304,"name":"BadRequest1","url":"classes/product.shopperproducts.html#badrequest1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3819,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#badrequest1.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.BadRequest1"},{"id":3820,"kind":4194304,"name":"Unauthorized","url":"classes/product.shopperproducts.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3821,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#unauthorized.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.Unauthorized"},{"id":3822,"kind":4194304,"name":"BadRequest2","url":"classes/product.shopperproducts.html#badrequest2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3823,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#badrequest2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.BadRequest2"},{"id":3824,"kind":4194304,"name":"ChangeControlled","url":"classes/product.shopperproducts.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3825,"kind":4194304,"name":"DateRangeFilter","url":"classes/product.shopperproducts.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3826,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#daterangefilter.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.DateRangeFilter"},{"id":3827,"kind":4194304,"name":"EtagResponse","url":"classes/product.shopperproducts.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3828,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#etagresponse.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.EtagResponse"},{"id":3829,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/product.shopperproducts.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3830,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#integerrangefilter.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.IntegerRangeFilter"},{"id":3831,"kind":4194304,"name":"RateLimited3","url":"classes/product.shopperproducts.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3832,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited3.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited3"},{"id":3833,"kind":4194304,"name":"SyncCreated","url":"classes/product.shopperproducts.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3834,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#synccreated.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.SyncCreated"},{"id":3835,"kind":4194304,"name":"DateConditionalRequest","url":"classes/product.shopperproducts.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3836,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#dateconditionalrequest.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.DateConditionalRequest"},{"id":3837,"kind":4194304,"name":"RateLimited5","url":"classes/product.shopperproducts.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3838,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited5.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited5"},{"id":3839,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/product.shopperproducts.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3840,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#etagconditionalrequest.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.EtagConditionalRequest"},{"id":3841,"kind":4194304,"name":"AsyncCreated","url":"classes/product.shopperproducts.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3842,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.AsyncCreated"},{"id":3843,"kind":4194304,"name":"RateLimited","url":"classes/product.shopperproducts.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3844,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited"},{"id":3845,"kind":4194304,"name":"RateLimited2","url":"classes/product.shopperproducts.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3846,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited2"},{"id":3847,"kind":4194304,"name":"OffsetPaginated","url":"classes/product.shopperproducts.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3848,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#offsetpaginated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.OffsetPaginated"},{"id":3849,"kind":4194304,"name":"RangeFilter","url":"classes/product.shopperproducts.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3850,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#rangefilter.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RangeFilter"},{"id":3851,"kind":4194304,"name":"RateLimited4","url":"classes/product.shopperproducts.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3852,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#ratelimited4.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.RateLimited4"},{"id":3853,"kind":4194304,"name":"NumericRangeFilter","url":"classes/product.shopperproducts.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3854,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#numericrangefilter.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.NumericRangeFilter"},{"id":3855,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/product.shopperproducts.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3856,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#datetimerangefilter.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.DatetimeRangeFilter"},{"id":3857,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/product.shopperproducts.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3858,"kind":4194304,"name":"Error","url":"classes/product.shopperproducts.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3859,"kind":4194304,"name":"Money","url":"classes/product.shopperproducts.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3860,"kind":4194304,"name":"SimpleSearchResult","url":"classes/product.shopperproducts.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3861,"kind":4194304,"name":"SearchRequest","url":"classes/product.shopperproducts.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3862,"kind":4194304,"name":"PropertyDefinition","url":"classes/product.shopperproducts.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3863,"kind":4194304,"name":"LocalizedString","url":"classes/product.shopperproducts.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3864,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/product.shopperproducts.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3865,"kind":4194304,"name":"ClosedObject","url":"classes/product.shopperproducts.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3866,"kind":4194304,"name":"OpenObject","url":"classes/product.shopperproducts.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3867,"kind":4194304,"name":"QueryParamsLimit","url":"classes/product.shopperproducts.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3868,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#queryparamslimit.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.QueryParamsLimit"},{"id":3869,"kind":4194304,"name":"QueryParamsOffset","url":"classes/product.shopperproducts.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3870,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#queryparamsoffset.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.QueryParamsOffset"},{"id":3871,"kind":4194304,"name":"SiteSpecific","url":"classes/product.shopperproducts.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3872,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#sitespecific-1.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.SiteSpecific"},{"id":3873,"kind":4194304,"name":"Selectable","url":"classes/product.shopperproducts.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3874,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#selectable.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.Selectable"},{"id":3875,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/product.shopperproducts.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3876,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#nopropertiesallowed.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.NoPropertiesAllowed"},{"id":3877,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/product.shopperproducts.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3878,"kind":4194304,"name":"BoolFilter","url":"classes/product.shopperproducts.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3879,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/product.shopperproducts.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3880,"kind":4194304,"name":"MatchAllQuery","url":"classes/product.shopperproducts.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3881,"kind":4194304,"name":"FilteredQuery","url":"classes/product.shopperproducts.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3882,"kind":4194304,"name":"QueryFilter","url":"classes/product.shopperproducts.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3883,"kind":4194304,"name":"Query","url":"classes/product.shopperproducts.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3884,"kind":4194304,"name":"TermQuery","url":"classes/product.shopperproducts.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3885,"kind":4194304,"name":"TermFilter","url":"classes/product.shopperproducts.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3886,"kind":4194304,"name":"TextQuery","url":"classes/product.shopperproducts.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3887,"kind":4194304,"name":"Range2Filter","url":"classes/product.shopperproducts.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3888,"kind":4194304,"name":"BoolQuery","url":"classes/product.shopperproducts.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3889,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/product.shopperproducts.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3890,"kind":4194304,"name":"NestedQuery","url":"classes/product.shopperproducts.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3891,"kind":4194304,"name":"Filter","url":"classes/product.shopperproducts.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3892,"kind":4194304,"name":"Sort","url":"classes/product.shopperproducts.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3893,"kind":4194304,"name":"SearchRequestBase","url":"classes/product.shopperproducts.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3894,"kind":4194304,"name":"MoneyMnemonic","url":"classes/product.shopperproducts.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3895,"kind":4194304,"name":"L10nString","url":"classes/product.shopperproducts.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3896,"kind":4194304,"name":"AttributeDefinition","url":"classes/product.shopperproducts.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3897,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.AttributeDefinition"},{"id":3898,"kind":32,"name":"defaultValue","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3899,"kind":32,"name":"id","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3900,"kind":32,"name":"name","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3901,"kind":32,"name":"description","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3902,"kind":32,"name":"key","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3903,"kind":32,"name":"localizable","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3904,"kind":32,"name":"mandatory","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3905,"kind":32,"name":"max","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3906,"kind":32,"name":"minLength","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3907,"kind":32,"name":"min","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3908,"kind":32,"name":"multiValueType","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3909,"kind":32,"name":"regularExpression","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3910,"kind":32,"name":"scale","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3911,"kind":32,"name":"searchable","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3912,"kind":32,"name":"siteSpecific","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3913,"kind":32,"name":"system","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3914,"kind":32,"name":"unit","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3915,"kind":32,"name":"possibleValues","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3916,"kind":32,"name":"type","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3917,"kind":32,"name":"visible","url":"classes/product.shopperproducts.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.AttributeDefinition.__type"},{"id":3918,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/product.shopperproducts.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"product.ShopperProducts"},{"id":3919,"kind":65536,"name":"__type","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"product.ShopperProducts.PropertyValueDefinition"},{"id":3920,"kind":32,"name":"description","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3921,"kind":32,"name":"displayValue","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3922,"kind":32,"name":"id","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3923,"kind":32,"name":"position","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3924,"kind":32,"name":"value","url":"classes/product.shopperproducts.html#propertyvaluedefinition.__type-15.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"product.ShopperProducts.PropertyValueDefinition.__type"},{"id":3925,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/product.html#user_agent_header-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3926,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/product.html#user_agent_value-2","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"product"},{"id":3927,"kind":1,"name":"search","url":"modules/search.html","classes":"tsd-kind-module"},{"id":3928,"kind":128,"name":"ShopperSearch","url":"classes/search.shoppersearch.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"search"},{"id":3929,"kind":512,"name":"constructor","url":"classes/search.shoppersearch.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"search.ShopperSearch"},{"id":3930,"kind":2048,"name":"productSearch","url":"classes/search.shoppersearch.html#productsearch","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"search.ShopperSearch"},{"id":3931,"kind":2048,"name":"getSearchSuggestions","url":"classes/search.shoppersearch.html#getsearchsuggestions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"search.ShopperSearch"},{"id":3932,"kind":1024,"name":"clientConfig","url":"classes/search.shoppersearch.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"search.ShopperSearch"},{"id":3933,"kind":4194304,"name":"Money","url":"classes/search.shoppersearch.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3934,"kind":4194304,"name":"SimpleSearchResult","url":"classes/search.shoppersearch.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3935,"kind":4194304,"name":"SearchRequest","url":"classes/search.shoppersearch.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3936,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/search.shoppersearch.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3937,"kind":4194304,"name":"ClosedObject","url":"classes/search.shoppersearch.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3938,"kind":4194304,"name":"OpenObject","url":"classes/search.shoppersearch.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3939,"kind":4194304,"name":"QueryParamsLimit","url":"classes/search.shoppersearch.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3940,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#queryparamslimit.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.QueryParamsLimit"},{"id":3941,"kind":4194304,"name":"QueryParamsOffset","url":"classes/search.shoppersearch.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3942,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#queryparamsoffset.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.QueryParamsOffset"},{"id":3943,"kind":4194304,"name":"SiteSpecific","url":"classes/search.shoppersearch.html#sitespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3944,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#sitespecific.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.SiteSpecific"},{"id":3945,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/search.shoppersearch.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3946,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#nopropertiesallowed.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.NoPropertiesAllowed"},{"id":3947,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/search.shoppersearch.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3948,"kind":4194304,"name":"BoolFilter","url":"classes/search.shoppersearch.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3949,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/search.shoppersearch.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3950,"kind":4194304,"name":"MatchAllQuery","url":"classes/search.shoppersearch.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3951,"kind":4194304,"name":"FilteredQuery","url":"classes/search.shoppersearch.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3952,"kind":4194304,"name":"QueryFilter","url":"classes/search.shoppersearch.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3953,"kind":4194304,"name":"Query","url":"classes/search.shoppersearch.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3954,"kind":4194304,"name":"TermQuery","url":"classes/search.shoppersearch.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3955,"kind":4194304,"name":"TermFilter","url":"classes/search.shoppersearch.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3956,"kind":4194304,"name":"TextQuery","url":"classes/search.shoppersearch.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3957,"kind":4194304,"name":"Range2Filter","url":"classes/search.shoppersearch.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3958,"kind":4194304,"name":"BoolQuery","url":"classes/search.shoppersearch.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3959,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/search.shoppersearch.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3960,"kind":4194304,"name":"NestedQuery","url":"classes/search.shoppersearch.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3961,"kind":4194304,"name":"Filter","url":"classes/search.shoppersearch.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3962,"kind":4194304,"name":"Sort","url":"classes/search.shoppersearch.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3963,"kind":4194304,"name":"RangeFilter","url":"classes/search.shoppersearch.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3964,"kind":4194304,"name":"SearchRequestBase","url":"classes/search.shoppersearch.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3965,"kind":4194304,"name":"MoneyMnemonic","url":"classes/search.shoppersearch.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3966,"kind":4194304,"name":"ErrorResponse","url":"classes/search.shoppersearch.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3967,"kind":4194304,"name":"EtagResponse","url":"classes/search.shoppersearch.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3968,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#etagresponse.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.EtagResponse"},{"id":3969,"kind":4194304,"name":"RateLimited3","url":"classes/search.shoppersearch.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3970,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited3.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited3"},{"id":3971,"kind":4194304,"name":"SyncCreated","url":"classes/search.shoppersearch.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3972,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#synccreated.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.SyncCreated"},{"id":3973,"kind":4194304,"name":"DateConditionalRequest","url":"classes/search.shoppersearch.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3974,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#dateconditionalrequest.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.DateConditionalRequest"},{"id":3975,"kind":4194304,"name":"RateLimited5","url":"classes/search.shoppersearch.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3976,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited5.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited5"},{"id":3977,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/search.shoppersearch.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3978,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#etagconditionalrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.EtagConditionalRequest"},{"id":3979,"kind":4194304,"name":"AsyncCreated","url":"classes/search.shoppersearch.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3980,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.AsyncCreated"},{"id":3981,"kind":4194304,"name":"RateLimited","url":"classes/search.shoppersearch.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3982,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited"},{"id":3983,"kind":4194304,"name":"RateLimited2","url":"classes/search.shoppersearch.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3984,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited2"},{"id":3985,"kind":4194304,"name":"OffsetPaginated","url":"classes/search.shoppersearch.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3986,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#offsetpaginated.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.OffsetPaginated"},{"id":3987,"kind":4194304,"name":"RateLimited4","url":"classes/search.shoppersearch.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3988,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#ratelimited4.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.RateLimited4"},{"id":3989,"kind":4194304,"name":"ProductRef","url":"classes/search.shoppersearch.html#productref","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3990,"kind":4194304,"name":"SuggestedTerms","url":"classes/search.shoppersearch.html#suggestedterms","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3991,"kind":4194304,"name":"CategorySuggestions","url":"classes/search.shoppersearch.html#categorysuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3992,"kind":4194304,"name":"SuggestedProduct","url":"classes/search.shoppersearch.html#suggestedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3993,"kind":4194304,"name":"SuggestedPhrase","url":"classes/search.shoppersearch.html#suggestedphrase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3994,"kind":4194304,"name":"VariationAttribute","url":"classes/search.shoppersearch.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3995,"kind":4194304,"name":"ProductSuggestions","url":"classes/search.shoppersearch.html#productsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3996,"kind":4194304,"name":"SuggestedCategory","url":"classes/search.shoppersearch.html#suggestedcategory","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3997,"kind":4194304,"name":"ProductType","url":"classes/search.shoppersearch.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3998,"kind":4194304,"name":"BrandSuggestions","url":"classes/search.shoppersearch.html#brandsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":3999,"kind":4194304,"name":"ProductSearchRefinementValue","url":"classes/search.shoppersearch.html#productsearchrefinementvalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4000,"kind":4194304,"name":"ProductSearchSortingOption","url":"classes/search.shoppersearch.html#productsearchsortingoption","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4001,"kind":4194304,"name":"SuggestedTerm","url":"classes/search.shoppersearch.html#suggestedterm","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4002,"kind":4194304,"name":"ProductSearchRefinement","url":"classes/search.shoppersearch.html#productsearchrefinement","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4003,"kind":4194304,"name":"CustomSuggestions","url":"classes/search.shoppersearch.html#customsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4004,"kind":4194304,"name":"ProductSearchHit","url":"classes/search.shoppersearch.html#productsearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4005,"kind":4194304,"name":"ProductSearchResult","url":"classes/search.shoppersearch.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4006,"kind":4194304,"name":"Image","url":"classes/search.shoppersearch.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4007,"kind":4194304,"name":"VariationAttributeValue","url":"classes/search.shoppersearch.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4008,"kind":4194304,"name":"Suggestion","url":"classes/search.shoppersearch.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4009,"kind":4194304,"name":"SuggestionResult","url":"classes/search.shoppersearch.html#suggestionresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4010,"kind":4194304,"name":"badRequest","url":"classes/search.shoppersearch.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"search.ShopperSearch"},{"id":4011,"kind":65536,"name":"__type","url":"classes/search.shoppersearch.html#badrequest.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"search.ShopperSearch.badRequest"},{"id":4012,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/search.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"search"},{"id":4013,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/search.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"search"},{"id":4014,"kind":1,"name":"seller","url":"modules/seller.html","classes":"tsd-kind-module"},{"id":4015,"kind":128,"name":"ShopperStores","url":"classes/seller.shopperstores.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"seller"},{"id":4016,"kind":512,"name":"constructor","url":"classes/seller.shopperstores.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"seller.ShopperStores"},{"id":4017,"kind":2048,"name":"searchStores","url":"classes/seller.shopperstores.html#searchstores","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"seller.ShopperStores"},{"id":4018,"kind":2048,"name":"getStores","url":"classes/seller.shopperstores.html#getstores","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"seller.ShopperStores"},{"id":4019,"kind":1024,"name":"clientConfig","url":"classes/seller.shopperstores.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"seller.ShopperStores"},{"id":4020,"kind":4194304,"name":"LocaleSpecific","url":"classes/seller.shopperstores.html#localespecific","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4021,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#localespecific.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.LocaleSpecific"},{"id":4022,"kind":4194304,"name":"Money","url":"classes/seller.shopperstores.html#money","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4023,"kind":4194304,"name":"SimpleSearchResult","url":"classes/seller.shopperstores.html#simplesearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4024,"kind":4194304,"name":"SearchRequest","url":"classes/seller.shopperstores.html#searchrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4025,"kind":4194304,"name":"PropertyDefinition","url":"classes/seller.shopperstores.html#propertydefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4026,"kind":4194304,"name":"LocalizedString","url":"classes/seller.shopperstores.html#localizedstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4027,"kind":4194304,"name":"PaginatedSearchResult","url":"classes/seller.shopperstores.html#paginatedsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4028,"kind":4194304,"name":"ClosedObject","url":"classes/seller.shopperstores.html#closedobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4029,"kind":4194304,"name":"OpenObject","url":"classes/seller.shopperstores.html#openobject","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4030,"kind":4194304,"name":"QueryParamsLimit","url":"classes/seller.shopperstores.html#queryparamslimit","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4031,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#queryparamslimit.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.QueryParamsLimit"},{"id":4032,"kind":4194304,"name":"QueryParamsOffset","url":"classes/seller.shopperstores.html#queryparamsoffset","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4033,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#queryparamsoffset.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.QueryParamsOffset"},{"id":4034,"kind":4194304,"name":"SiteSpecific","url":"classes/seller.shopperstores.html#sitespecific-1","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4035,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#sitespecific-1.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.SiteSpecific"},{"id":4036,"kind":4194304,"name":"Selectable","url":"classes/seller.shopperstores.html#selectable","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4037,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#selectable.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.Selectable"},{"id":4038,"kind":4194304,"name":"NoPropertiesAllowed","url":"classes/seller.shopperstores.html#nopropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4039,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#nopropertiesallowed.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.NoPropertiesAllowed"},{"id":4040,"kind":4194304,"name":"SpecifiedPropertiesAllowed","url":"classes/seller.shopperstores.html#specifiedpropertiesallowed","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4041,"kind":4194304,"name":"BoolFilter","url":"classes/seller.shopperstores.html#boolfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4042,"kind":4194304,"name":"PaginatedSearchResultBase","url":"classes/seller.shopperstores.html#paginatedsearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4043,"kind":4194304,"name":"MatchAllQuery","url":"classes/seller.shopperstores.html#matchallquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4044,"kind":4194304,"name":"FilteredQuery","url":"classes/seller.shopperstores.html#filteredquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4045,"kind":4194304,"name":"QueryFilter","url":"classes/seller.shopperstores.html#queryfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4046,"kind":4194304,"name":"Query","url":"classes/seller.shopperstores.html#query","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4047,"kind":4194304,"name":"TermQuery","url":"classes/seller.shopperstores.html#termquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4048,"kind":4194304,"name":"TermFilter","url":"classes/seller.shopperstores.html#termfilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4049,"kind":4194304,"name":"TextQuery","url":"classes/seller.shopperstores.html#textquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4050,"kind":4194304,"name":"Range2Filter","url":"classes/seller.shopperstores.html#range2filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4051,"kind":4194304,"name":"BoolQuery","url":"classes/seller.shopperstores.html#boolquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4052,"kind":4194304,"name":"SimpleSearchResultBase","url":"classes/seller.shopperstores.html#simplesearchresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4053,"kind":4194304,"name":"NestedQuery","url":"classes/seller.shopperstores.html#nestedquery","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4054,"kind":4194304,"name":"Filter","url":"classes/seller.shopperstores.html#filter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4055,"kind":4194304,"name":"Sort","url":"classes/seller.shopperstores.html#sort","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4056,"kind":4194304,"name":"RangeFilter","url":"classes/seller.shopperstores.html#rangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4057,"kind":4194304,"name":"SearchRequestBase","url":"classes/seller.shopperstores.html#searchrequestbase","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4058,"kind":4194304,"name":"MoneyMnemonic","url":"classes/seller.shopperstores.html#moneymnemonic","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4059,"kind":4194304,"name":"L10nString","url":"classes/seller.shopperstores.html#l10nstring","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4060,"kind":4194304,"name":"AttributeDefinition","url":"classes/seller.shopperstores.html#attributedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4061,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#attributedefinition.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.AttributeDefinition"},{"id":4062,"kind":32,"name":"defaultValue","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.defaultvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4063,"kind":32,"name":"id","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4064,"kind":32,"name":"name","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4065,"kind":32,"name":"description","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.description","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4066,"kind":32,"name":"key","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.key","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4067,"kind":32,"name":"localizable","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.localizable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4068,"kind":32,"name":"mandatory","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.mandatory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4069,"kind":32,"name":"max","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.max","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4070,"kind":32,"name":"minLength","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.minlength","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4071,"kind":32,"name":"min","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.min","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4072,"kind":32,"name":"multiValueType","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.multivaluetype","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4073,"kind":32,"name":"regularExpression","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.regularexpression","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4074,"kind":32,"name":"scale","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.scale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4075,"kind":32,"name":"searchable","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.searchable","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4076,"kind":32,"name":"siteSpecific","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.sitespecific","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4077,"kind":32,"name":"system","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.system","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4078,"kind":32,"name":"unit","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.unit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4079,"kind":32,"name":"possibleValues","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.possiblevalues","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4080,"kind":32,"name":"type","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4081,"kind":32,"name":"visible","url":"classes/seller.shopperstores.html#attributedefinition.__type-1.visible","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.AttributeDefinition.__type"},{"id":4082,"kind":4194304,"name":"PropertyValueDefinition","url":"classes/seller.shopperstores.html#propertyvaluedefinition","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4083,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.PropertyValueDefinition"},{"id":4084,"kind":32,"name":"description","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.description-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":4085,"kind":32,"name":"displayValue","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.displayvalue","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":4086,"kind":32,"name":"id","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":4087,"kind":32,"name":"position","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.position","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":4088,"kind":32,"name":"value","url":"classes/seller.shopperstores.html#propertyvaluedefinition.__type-13.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"seller.ShopperStores.PropertyValueDefinition.__type"},{"id":4089,"kind":4194304,"name":"ErrorResponse","url":"classes/seller.shopperstores.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4090,"kind":4194304,"name":"ChangeControlled","url":"classes/seller.shopperstores.html#changecontrolled","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4091,"kind":4194304,"name":"DateRangeFilter","url":"classes/seller.shopperstores.html#daterangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4092,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#daterangefilter.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.DateRangeFilter"},{"id":4093,"kind":4194304,"name":"EtagResponse","url":"classes/seller.shopperstores.html#etagresponse","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4094,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#etagresponse.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.EtagResponse"},{"id":4095,"kind":4194304,"name":"IntegerRangeFilter","url":"classes/seller.shopperstores.html#integerrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4096,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#integerrangefilter.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.IntegerRangeFilter"},{"id":4097,"kind":4194304,"name":"RateLimited3","url":"classes/seller.shopperstores.html#ratelimited3","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4098,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited3.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited3"},{"id":4099,"kind":4194304,"name":"SyncCreated","url":"classes/seller.shopperstores.html#synccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4100,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#synccreated.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.SyncCreated"},{"id":4101,"kind":4194304,"name":"DateConditionalRequest","url":"classes/seller.shopperstores.html#dateconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4102,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#dateconditionalrequest.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.DateConditionalRequest"},{"id":4103,"kind":4194304,"name":"RateLimited5","url":"classes/seller.shopperstores.html#ratelimited5","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4104,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited5.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited5"},{"id":4105,"kind":4194304,"name":"EtagConditionalRequest","url":"classes/seller.shopperstores.html#etagconditionalrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4106,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#etagconditionalrequest.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.EtagConditionalRequest"},{"id":4107,"kind":4194304,"name":"AsyncCreated","url":"classes/seller.shopperstores.html#asynccreated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4108,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#asynccreated.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.AsyncCreated"},{"id":4109,"kind":4194304,"name":"RateLimited","url":"classes/seller.shopperstores.html#ratelimited","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4110,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited"},{"id":4111,"kind":4194304,"name":"RateLimited2","url":"classes/seller.shopperstores.html#ratelimited2","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4112,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited2"},{"id":4113,"kind":4194304,"name":"OffsetPaginated","url":"classes/seller.shopperstores.html#offsetpaginated","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4114,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#offsetpaginated.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.OffsetPaginated"},{"id":4115,"kind":4194304,"name":"RateLimited4","url":"classes/seller.shopperstores.html#ratelimited4","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4116,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#ratelimited4.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.RateLimited4"},{"id":4117,"kind":4194304,"name":"NumericRangeFilter","url":"classes/seller.shopperstores.html#numericrangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4118,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#numericrangefilter.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.NumericRangeFilter"},{"id":4119,"kind":4194304,"name":"DatetimeRangeFilter","url":"classes/seller.shopperstores.html#datetimerangefilter","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4120,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#datetimerangefilter.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.DatetimeRangeFilter"},{"id":4121,"kind":4194304,"name":"ChangeControlledDataType","url":"classes/seller.shopperstores.html#changecontrolleddatatype","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4122,"kind":4194304,"name":"Error","url":"classes/seller.shopperstores.html#error","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4123,"kind":4194304,"name":"StoreResult","url":"classes/seller.shopperstores.html#storeresult","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4124,"kind":4194304,"name":"Store","url":"classes/seller.shopperstores.html#store","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4125,"kind":4194304,"name":"BadRequest","url":"classes/seller.shopperstores.html#badrequest","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4126,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#badrequest.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.BadRequest"},{"id":4127,"kind":4194304,"name":"Unauthorized","url":"classes/seller.shopperstores.html#unauthorized","classes":"tsd-kind-type-alias tsd-parent-kind-class tsd-is-static","parent":"seller.ShopperStores"},{"id":4128,"kind":65536,"name":"__type","url":"classes/seller.shopperstores.html#unauthorized.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"seller.ShopperStores.Unauthorized"},{"id":4129,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/seller.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"seller"},{"id":4130,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/seller.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported","parent":"seller"},{"id":4131,"kind":1,"name":"\"index\"","url":"modules/_index_.html","classes":"tsd-kind-module"},{"id":4132,"kind":16777216,"name":"ClientConfig","url":"modules/_index_.html#clientconfig","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"\"index\""},{"id":4133,"kind":16777216,"name":"CommonParameters","url":"modules/_index_.html#commonparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"\"index\""},{"id":4134,"kind":16777216,"name":"sdkLogger","url":"modules/_index_.html#sdklogger","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"\"index\""}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,68.234]],["parent/0",[]],["name/1",[1,79.22]],["parent/1",[0,6.816]],["name/2",[2,50.503]],["parent/2",[3,3.151]],["name/3",[4,79.22]],["parent/3",[3,3.151]],["name/4",[5,79.22]],["parent/4",[3,3.151]],["name/5",[6,79.22]],["parent/5",[3,3.151]],["name/6",[7,79.22]],["parent/6",[3,3.151]],["name/7",[8,79.22]],["parent/7",[3,3.151]],["name/8",[9,79.22]],["parent/8",[3,3.151]],["name/9",[10,79.22]],["parent/9",[3,3.151]],["name/10",[11,79.22]],["parent/10",[3,3.151]],["name/11",[12,79.22]],["parent/11",[3,3.151]],["name/12",[13,79.22]],["parent/12",[3,3.151]],["name/13",[14,79.22]],["parent/13",[3,3.151]],["name/14",[15,79.22]],["parent/14",[3,3.151]],["name/15",[16,79.22]],["parent/15",[3,3.151]],["name/16",[17,79.22]],["parent/16",[3,3.151]],["name/17",[18,79.22]],["parent/17",[3,3.151]],["name/18",[19,79.22]],["parent/18",[3,3.151]],["name/19",[20,79.22]],["parent/19",[3,3.151]],["name/20",[21,79.22]],["parent/20",[3,3.151]],["name/21",[22,79.22]],["parent/21",[3,3.151]],["name/22",[23,79.22]],["parent/22",[3,3.151]],["name/23",[24,79.22]],["parent/23",[3,3.151]],["name/24",[25,79.22]],["parent/24",[3,3.151]],["name/25",[26,79.22]],["parent/25",[3,3.151]],["name/26",[27,79.22]],["parent/26",[3,3.151]],["name/27",[28,79.22]],["parent/27",[3,3.151]],["name/28",[29,79.22]],["parent/28",[3,3.151]],["name/29",[30,79.22]],["parent/29",[3,3.151]],["name/30",[31,79.22]],["parent/30",[3,3.151]],["name/31",[32,79.22]],["parent/31",[3,3.151]],["name/32",[33,79.22]],["parent/32",[3,3.151]],["name/33",[34,79.22]],["parent/33",[3,3.151]],["name/34",[35,79.22]],["parent/34",[3,3.151]],["name/35",[36,79.22]],["parent/35",[3,3.151]],["name/36",[37,79.22]],["parent/36",[3,3.151]],["name/37",[38,79.22]],["parent/37",[3,3.151]],["name/38",[39,79.22]],["parent/38",[3,3.151]],["name/39",[40,79.22]],["parent/39",[3,3.151]],["name/40",[41,79.22]],["parent/40",[3,3.151]],["name/41",[42,79.22]],["parent/41",[3,3.151]],["name/42",[43,79.22]],["parent/42",[3,3.151]],["name/43",[44,79.22]],["parent/43",[3,3.151]],["name/44",[45,79.22]],["parent/44",[3,3.151]],["name/45",[46,79.22]],["parent/45",[3,3.151]],["name/46",[47,79.22]],["parent/46",[3,3.151]],["name/47",[48,79.22]],["parent/47",[3,3.151]],["name/48",[49,79.22]],["parent/48",[3,3.151]],["name/49",[50,79.22]],["parent/49",[3,3.151]],["name/50",[51,79.22]],["parent/50",[3,3.151]],["name/51",[52,79.22]],["parent/51",[3,3.151]],["name/52",[53,79.22]],["parent/52",[3,3.151]],["name/53",[54,79.22]],["parent/53",[3,3.151]],["name/54",[55,49.776]],["parent/54",[3,3.151]],["name/55",[56,79.22]],["parent/55",[3,3.151]],["name/56",[57,79.22]],["parent/56",[3,3.151]],["name/57",[58,79.22]],["parent/57",[3,3.151]],["name/58",[59,79.22]],["parent/58",[3,3.151]],["name/59",[60,79.22]],["parent/59",[3,3.151]],["name/60",[61,79.22]],["parent/60",[3,3.151]],["name/61",[62,79.22]],["parent/61",[3,3.151]],["name/62",[63,79.22]],["parent/62",[3,3.151]],["name/63",[64,79.22]],["parent/63",[3,3.151]],["name/64",[65,79.22]],["parent/64",[3,3.151]],["name/65",[66,79.22]],["parent/65",[3,3.151]],["name/66",[67,79.22]],["parent/66",[3,3.151]],["name/67",[68,79.22]],["parent/67",[3,3.151]],["name/68",[69,79.22]],["parent/68",[3,3.151]],["name/69",[70,79.22]],["parent/69",[3,3.151]],["name/70",[71,79.22]],["parent/70",[3,3.151]],["name/71",[72,79.22]],["parent/71",[3,3.151]],["name/72",[73,79.22]],["parent/72",[3,3.151]],["name/73",[74,79.22]],["parent/73",[3,3.151]],["name/74",[75,79.22]],["parent/74",[3,3.151]],["name/75",[76,79.22]],["parent/75",[3,3.151]],["name/76",[77,79.22]],["parent/76",[3,3.151]],["name/77",[78,79.22]],["parent/77",[3,3.151]],["name/78",[79,79.22]],["parent/78",[3,3.151]],["name/79",[80,79.22]],["parent/79",[3,3.151]],["name/80",[81,79.22]],["parent/80",[3,3.151]],["name/81",[82,79.22]],["parent/81",[3,3.151]],["name/82",[83,79.22]],["parent/82",[3,3.151]],["name/83",[84,79.22]],["parent/83",[3,3.151]],["name/84",[85,79.22]],["parent/84",[3,3.151]],["name/85",[86,79.22]],["parent/85",[3,3.151]],["name/86",[87,79.22]],["parent/86",[3,3.151]],["name/87",[88,79.22]],["parent/87",[3,3.151]],["name/88",[89,79.22]],["parent/88",[3,3.151]],["name/89",[90,79.22]],["parent/89",[3,3.151]],["name/90",[91,79.22]],["parent/90",[3,3.151]],["name/91",[92,79.22]],["parent/91",[3,3.151]],["name/92",[93,79.22]],["parent/92",[3,3.151]],["name/93",[94,79.22]],["parent/93",[3,3.151]],["name/94",[95,79.22]],["parent/94",[3,3.151]],["name/95",[96,79.22]],["parent/95",[3,3.151]],["name/96",[97,79.22]],["parent/96",[3,3.151]],["name/97",[98,79.22]],["parent/97",[3,3.151]],["name/98",[99,79.22]],["parent/98",[3,3.151]],["name/99",[100,79.22]],["parent/99",[3,3.151]],["name/100",[101,50.503]],["parent/100",[3,3.151]],["name/101",[102,79.22]],["parent/101",[3,3.151]],["name/102",[103,79.22]],["parent/102",[3,3.151]],["name/103",[104,79.22]],["parent/103",[3,3.151]],["name/104",[105,79.22]],["parent/104",[3,3.151]],["name/105",[106,79.22]],["parent/105",[3,3.151]],["name/106",[107,79.22]],["parent/106",[3,3.151]],["name/107",[108,79.22]],["parent/107",[3,3.151]],["name/108",[109,79.22]],["parent/108",[3,3.151]],["name/109",[110,79.22]],["parent/109",[3,3.151]],["name/110",[111,79.22]],["parent/110",[3,3.151]],["name/111",[112,79.22]],["parent/111",[3,3.151]],["name/112",[113,79.22]],["parent/112",[3,3.151]],["name/113",[114,79.22]],["parent/113",[3,3.151]],["name/114",[115,79.22]],["parent/114",[3,3.151]],["name/115",[116,79.22]],["parent/115",[3,3.151]],["name/116",[117,79.22]],["parent/116",[3,3.151]],["name/117",[118,79.22]],["parent/117",[3,3.151]],["name/118",[119,79.22]],["parent/118",[3,3.151]],["name/119",[120,79.22]],["parent/119",[3,3.151]],["name/120",[121,79.22]],["parent/120",[3,3.151]],["name/121",[122,79.22]],["parent/121",[3,3.151]],["name/122",[123,79.22]],["parent/122",[3,3.151]],["name/123",[124,79.22]],["parent/123",[3,3.151]],["name/124",[125,79.22]],["parent/124",[3,3.151]],["name/125",[126,79.22]],["parent/125",[3,3.151]],["name/126",[127,79.22]],["parent/126",[3,3.151]],["name/127",[128,16.909]],["parent/127",[129,7.913]],["name/128",[130,79.22]],["parent/128",[3,3.151]],["name/129",[128,16.909]],["parent/129",[131,7.913]],["name/130",[132,79.22]],["parent/130",[3,3.151]],["name/131",[128,16.909]],["parent/131",[133,7.913]],["name/132",[134,79.22]],["parent/132",[3,3.151]],["name/133",[128,16.909]],["parent/133",[135,7.913]],["name/134",[136,79.22]],["parent/134",[3,3.151]],["name/135",[128,16.909]],["parent/135",[137,7.913]],["name/136",[138,79.22]],["parent/136",[3,3.151]],["name/137",[128,16.909]],["parent/137",[139,7.913]],["name/138",[140,50.503]],["parent/138",[3,3.151]],["name/139",[128,16.909]],["parent/139",[141,7.913]],["name/140",[142,50.503]],["parent/140",[3,3.151]],["name/141",[128,16.909]],["parent/141",[143,7.913]],["name/142",[144,50.503]],["parent/142",[3,3.151]],["name/143",[128,16.909]],["parent/143",[145,7.913]],["name/144",[146,50.503]],["parent/144",[3,3.151]],["name/145",[128,16.909]],["parent/145",[147,7.913]],["name/146",[148,50.503]],["parent/146",[3,3.151]],["name/147",[128,16.909]],["parent/147",[149,7.913]],["name/148",[150,50.503]],["parent/148",[3,3.151]],["name/149",[128,16.909]],["parent/149",[151,7.913]],["name/150",[152,50.503]],["parent/150",[3,3.151]],["name/151",[128,16.909]],["parent/151",[153,7.913]],["name/152",[154,50.503]],["parent/152",[3,3.151]],["name/153",[128,16.909]],["parent/153",[155,7.913]],["name/154",[156,50.503]],["parent/154",[3,3.151]],["name/155",[128,16.909]],["parent/155",[157,7.913]],["name/156",[158,50.503]],["parent/156",[3,3.151]],["name/157",[128,16.909]],["parent/157",[159,7.913]],["name/158",[160,50.503]],["parent/158",[3,3.151]],["name/159",[128,16.909]],["parent/159",[161,7.913]],["name/160",[162,50.888]],["parent/160",[3,3.151]],["name/161",[163,50.888]],["parent/161",[3,3.151]],["name/162",[164,50.888]],["parent/162",[3,3.151]],["name/163",[165,51.705]],["parent/163",[3,3.151]],["name/164",[166,51.705]],["parent/164",[3,3.151]],["name/165",[167,50.888]],["parent/165",[3,3.151]],["name/166",[168,50.888]],["parent/166",[3,3.151]],["name/167",[169,50.888]],["parent/167",[3,3.151]],["name/168",[170,50.888]],["parent/168",[3,3.151]],["name/169",[128,16.909]],["parent/169",[171,7.913]],["name/170",[172,50.888]],["parent/170",[3,3.151]],["name/171",[128,16.909]],["parent/171",[173,7.913]],["name/172",[174,44.459]],["parent/172",[3,3.151]],["name/173",[128,16.909]],["parent/173",[175,7.913]],["name/174",[176,52.14]],["parent/174",[3,3.151]],["name/175",[128,16.909]],["parent/175",[177,7.913]],["name/176",[178,50.888]],["parent/176",[3,3.151]],["name/177",[128,16.909]],["parent/177",[179,7.913]],["name/178",[180,50.888]],["parent/178",[3,3.151]],["name/179",[181,50.888]],["parent/179",[3,3.151]],["name/180",[182,50.888]],["parent/180",[3,3.151]],["name/181",[183,50.888]],["parent/181",[3,3.151]],["name/182",[184,50.888]],["parent/182",[3,3.151]],["name/183",[185,50.888]],["parent/183",[3,3.151]],["name/184",[186,50.503]],["parent/184",[3,3.151]],["name/185",[187,50.888]],["parent/185",[3,3.151]],["name/186",[188,50.888]],["parent/186",[3,3.151]],["name/187",[189,50.888]],["parent/187",[3,3.151]],["name/188",[190,50.888]],["parent/188",[3,3.151]],["name/189",[191,50.888]],["parent/189",[3,3.151]],["name/190",[192,50.888]],["parent/190",[3,3.151]],["name/191",[193,50.888]],["parent/191",[3,3.151]],["name/192",[194,50.888]],["parent/192",[3,3.151]],["name/193",[195,50.888]],["parent/193",[3,3.151]],["name/194",[196,50.503]],["parent/194",[3,3.151]],["name/195",[197,50.888]],["parent/195",[3,3.151]],["name/196",[198,50.888]],["parent/196",[3,3.151]],["name/197",[199,51.705]],["parent/197",[3,3.151]],["name/198",[200,51.705]],["parent/198",[3,3.151]],["name/199",[128,16.909]],["parent/199",[201,7.913]],["name/200",[202,51.705]],["parent/200",[203,5.301]],["name/201",[204,43.293]],["parent/201",[203,5.301]],["name/202",[205,50.503]],["parent/202",[203,5.301]],["name/203",[206,44.055]],["parent/203",[203,5.301]],["name/204",[207,51.705]],["parent/204",[203,5.301]],["name/205",[208,51.705]],["parent/205",[203,5.301]],["name/206",[209,51.705]],["parent/206",[203,5.301]],["name/207",[210,50.888]],["parent/207",[203,5.301]],["name/208",[211,51.705]],["parent/208",[203,5.301]],["name/209",[212,50.888]],["parent/209",[203,5.301]],["name/210",[213,51.705]],["parent/210",[203,5.301]],["name/211",[214,51.705]],["parent/211",[203,5.301]],["name/212",[215,51.705]],["parent/212",[203,5.301]],["name/213",[216,51.705]],["parent/213",[203,5.301]],["name/214",[174,44.459]],["parent/214",[203,5.301]],["name/215",[217,51.705]],["parent/215",[203,5.301]],["name/216",[218,51.705]],["parent/216",[203,5.301]],["name/217",[219,51.705]],["parent/217",[203,5.301]],["name/218",[220,48.159]],["parent/218",[203,5.301]],["name/219",[221,51.705]],["parent/219",[203,5.301]],["name/220",[222,51.705]],["parent/220",[3,3.151]],["name/221",[128,16.909]],["parent/221",[223,7.913]],["name/222",[206,44.055]],["parent/222",[224,6.616]],["name/223",[225,51.705]],["parent/223",[224,6.616]],["name/224",[204,43.293]],["parent/224",[224,6.616]],["name/225",[226,51.705]],["parent/225",[224,6.616]],["name/226",[227,49.098]],["parent/226",[224,6.616]],["name/227",[228,50.503]],["parent/227",[0,6.816]],["name/228",[229,50.503]],["parent/228",[0,6.816]],["name/229",[230,59.761]],["parent/229",[]],["name/230",[231,79.22]],["parent/230",[230,5.97]],["name/231",[2,50.503]],["parent/231",[232,3.491]],["name/232",[233,79.22]],["parent/232",[232,3.491]],["name/233",[234,79.22]],["parent/233",[232,3.491]],["name/234",[235,74.112]],["parent/234",[232,3.491]],["name/235",[236,79.22]],["parent/235",[232,3.491]],["name/236",[237,79.22]],["parent/236",[232,3.491]],["name/237",[238,79.22]],["parent/237",[232,3.491]],["name/238",[239,79.22]],["parent/238",[232,3.491]],["name/239",[240,79.22]],["parent/239",[232,3.491]],["name/240",[241,79.22]],["parent/240",[232,3.491]],["name/241",[242,79.22]],["parent/241",[232,3.491]],["name/242",[243,79.22]],["parent/242",[232,3.491]],["name/243",[244,79.22]],["parent/243",[232,3.491]],["name/244",[245,79.22]],["parent/244",[232,3.491]],["name/245",[55,49.776]],["parent/245",[232,3.491]],["name/246",[101,50.503]],["parent/246",[232,3.491]],["name/247",[246,79.22]],["parent/247",[232,3.491]],["name/248",[128,16.909]],["parent/248",[247,7.913]],["name/249",[248,79.22]],["parent/249",[232,3.491]],["name/250",[128,16.909]],["parent/250",[249,7.913]],["name/251",[250,79.22]],["parent/251",[232,3.491]],["name/252",[128,16.909]],["parent/252",[251,7.913]],["name/253",[252,79.22]],["parent/253",[232,3.491]],["name/254",[128,16.909]],["parent/254",[253,7.913]],["name/255",[254,58.018]],["parent/255",[232,3.491]],["name/256",[128,16.909]],["parent/256",[255,7.913]],["name/257",[256,79.22]],["parent/257",[232,3.491]],["name/258",[128,16.909]],["parent/258",[257,7.913]],["name/259",[258,79.22]],["parent/259",[232,3.491]],["name/260",[128,16.909]],["parent/260",[259,7.913]],["name/261",[260,79.22]],["parent/261",[232,3.491]],["name/262",[128,16.909]],["parent/262",[261,7.913]],["name/263",[262,79.22]],["parent/263",[232,3.491]],["name/264",[128,16.909]],["parent/264",[263,7.913]],["name/265",[264,79.22]],["parent/265",[232,3.491]],["name/266",[128,16.909]],["parent/266",[265,7.913]],["name/267",[266,79.22]],["parent/267",[232,3.491]],["name/268",[128,16.909]],["parent/268",[267,7.913]],["name/269",[268,79.22]],["parent/269",[232,3.491]],["name/270",[128,16.909]],["parent/270",[269,7.913]],["name/271",[270,79.22]],["parent/271",[232,3.491]],["name/272",[128,16.909]],["parent/272",[271,7.913]],["name/273",[272,79.22]],["parent/273",[232,3.491]],["name/274",[128,16.909]],["parent/274",[273,7.913]],["name/275",[274,79.22]],["parent/275",[232,3.491]],["name/276",[128,16.909]],["parent/276",[275,7.913]],["name/277",[276,79.22]],["parent/277",[232,3.491]],["name/278",[128,16.909]],["parent/278",[277,7.913]],["name/279",[278,79.22]],["parent/279",[232,3.491]],["name/280",[279,79.22]],["parent/280",[232,3.491]],["name/281",[280,79.22]],["parent/281",[232,3.491]],["name/282",[128,16.909]],["parent/282",[281,7.913]],["name/283",[282,57.248]],["parent/283",[283,7.913]],["name/284",[284,68.234]],["parent/284",[232,3.491]],["name/285",[128,16.909]],["parent/285",[285,7.913]],["name/286",[286,66.227]],["parent/286",[287,5.879]],["name/287",[288,70.747]],["parent/287",[287,5.879]],["name/288",[289,66.227]],["parent/288",[287,5.879]],["name/289",[290,66.227]],["parent/289",[287,5.879]],["name/290",[291,66.227]],["parent/290",[287,5.879]],["name/291",[292,66.227]],["parent/291",[287,5.879]],["name/292",[293,66.227]],["parent/292",[287,5.879]],["name/293",[294,66.227]],["parent/293",[287,5.879]],["name/294",[295,70.747]],["parent/294",[287,5.879]],["name/295",[296,66.227]],["parent/295",[287,5.879]],["name/296",[297,66.227]],["parent/296",[287,5.879]],["name/297",[298,68.234]],["parent/297",[232,3.491]],["name/298",[299,68.234]],["parent/298",[232,3.491]],["name/299",[128,16.909]],["parent/299",[300,7.913]],["name/300",[301,74.112]],["parent/300",[302,6.816]],["name/301",[303,79.22]],["parent/301",[302,6.816]],["name/302",[304,79.22]],["parent/302",[302,6.816]],["name/303",[220,48.159]],["parent/303",[302,6.816]],["name/304",[305,79.22]],["parent/304",[232,3.491]],["name/305",[128,16.909]],["parent/305",[306,7.913]],["name/306",[282,57.248]],["parent/306",[307,7.913]],["name/307",[308,79.22]],["parent/307",[232,3.491]],["name/308",[309,68.234]],["parent/308",[232,3.491]],["name/309",[128,16.909]],["parent/309",[310,7.913]],["name/310",[311,63.126]],["parent/310",[312,6.816]],["name/311",[313,79.22]],["parent/311",[312,6.816]],["name/312",[314,79.22]],["parent/312",[312,6.816]],["name/313",[315,79.22]],["parent/313",[312,6.816]],["name/314",[316,79.22]],["parent/314",[232,3.491]],["name/315",[128,16.909]],["parent/315",[317,7.913]],["name/316",[318,68.234]],["parent/316",[319,7.913]],["name/317",[320,79.22]],["parent/317",[232,3.491]],["name/318",[128,16.909]],["parent/318",[321,7.913]],["name/319",[204,43.293]],["parent/319",[322,7.913]],["name/320",[323,68.234]],["parent/320",[232,3.491]],["name/321",[324,68.234]],["parent/321",[232,3.491]],["name/322",[325,79.22]],["parent/322",[232,3.491]],["name/323",[326,68.234]],["parent/323",[232,3.491]],["name/324",[327,68.234]],["parent/324",[232,3.491]],["name/325",[128,16.909]],["parent/325",[328,7.913]],["name/326",[329,79.22]],["parent/326",[330,6.616]],["name/327",[331,79.22]],["parent/327",[330,6.616]],["name/328",[332,79.22]],["parent/328",[330,6.616]],["name/329",[333,70.747]],["parent/329",[330,6.616]],["name/330",[334,79.22]],["parent/330",[330,6.616]],["name/331",[335,68.234]],["parent/331",[232,3.491]],["name/332",[336,79.22]],["parent/332",[232,3.491]],["name/333",[128,16.909]],["parent/333",[337,7.913]],["name/334",[282,57.248]],["parent/334",[338,7.913]],["name/335",[339,68.234]],["parent/335",[232,3.491]],["name/336",[340,79.22]],["parent/336",[232,3.491]],["name/337",[341,79.22]],["parent/337",[232,3.491]],["name/338",[128,16.909]],["parent/338",[342,7.913]],["name/339",[282,57.248]],["parent/339",[343,7.913]],["name/340",[344,79.22]],["parent/340",[232,3.491]],["name/341",[345,79.22]],["parent/341",[232,3.491]],["name/342",[128,16.909]],["parent/342",[346,7.913]],["name/343",[347,79.22]],["parent/343",[348,7.403]],["name/344",[349,70.747]],["parent/344",[348,7.403]],["name/345",[350,79.22]],["parent/345",[232,3.491]],["name/346",[351,79.22]],["parent/346",[232,3.491]],["name/347",[128,16.909]],["parent/347",[352,7.913]],["name/348",[353,70.747]],["parent/348",[354,6.816]],["name/349",[355,66.227]],["parent/349",[354,6.816]],["name/350",[356,70.747]],["parent/350",[354,6.816]],["name/351",[357,70.747]],["parent/351",[354,6.816]],["name/352",[358,79.22]],["parent/352",[232,3.491]],["name/353",[359,79.22]],["parent/353",[232,3.491]],["name/354",[128,16.909]],["parent/354",[360,7.913]],["name/355",[282,57.248]],["parent/355",[361,7.913]],["name/356",[362,79.22]],["parent/356",[232,3.491]],["name/357",[128,16.909]],["parent/357",[363,7.913]],["name/358",[282,57.248]],["parent/358",[364,7.913]],["name/359",[365,79.22]],["parent/359",[232,3.491]],["name/360",[366,79.22]],["parent/360",[232,3.491]],["name/361",[367,79.22]],["parent/361",[232,3.491]],["name/362",[128,16.909]],["parent/362",[368,7.913]],["name/363",[369,70.747]],["parent/363",[370,7.403]],["name/364",[371,70.747]],["parent/364",[370,7.403]],["name/365",[372,79.22]],["parent/365",[232,3.491]],["name/366",[128,16.909]],["parent/366",[373,7.913]],["name/367",[374,79.22]],["parent/367",[375,6.616]],["name/368",[376,68.234]],["parent/368",[375,6.616]],["name/369",[377,79.22]],["parent/369",[375,6.616]],["name/370",[378,79.22]],["parent/370",[375,6.616]],["name/371",[379,79.22]],["parent/371",[375,6.616]],["name/372",[380,68.234]],["parent/372",[232,3.491]],["name/373",[381,79.22]],["parent/373",[232,3.491]],["name/374",[382,68.234]],["parent/374",[232,3.491]],["name/375",[383,79.22]],["parent/375",[232,3.491]],["name/376",[384,79.22]],["parent/376",[232,3.491]],["name/377",[128,16.909]],["parent/377",[385,7.913]],["name/378",[206,44.055]],["parent/378",[386,6.816]],["name/379",[205,50.503]],["parent/379",[386,6.816]],["name/380",[387,68.234]],["parent/380",[386,6.816]],["name/381",[220,48.159]],["parent/381",[386,6.816]],["name/382",[388,79.22]],["parent/382",[232,3.491]],["name/383",[282,57.248]],["parent/383",[232,3.491]],["name/384",[128,16.909]],["parent/384",[389,7.913]],["name/385",[311,63.126]],["parent/385",[390,7.067]],["name/386",[391,70.747]],["parent/386",[390,7.067]],["name/387",[282,57.248]],["parent/387",[390,7.067]],["name/388",[392,68.234]],["parent/388",[232,3.491]],["name/389",[128,16.909]],["parent/389",[393,7.913]],["name/390",[204,43.293]],["parent/390",[394,6.181]],["name/391",[395,70.747]],["parent/391",[394,6.181]],["name/392",[396,55.866]],["parent/392",[394,6.181]],["name/393",[397,70.747]],["parent/393",[394,6.181]],["name/394",[387,68.234]],["parent/394",[394,6.181]],["name/395",[398,70.747]],["parent/395",[394,6.181]],["name/396",[399,70.747]],["parent/396",[394,6.181]],["name/397",[220,48.159]],["parent/397",[394,6.181]],["name/398",[162,50.888]],["parent/398",[232,3.491]],["name/399",[163,50.888]],["parent/399",[232,3.491]],["name/400",[164,50.888]],["parent/400",[232,3.491]],["name/401",[165,51.705]],["parent/401",[232,3.491]],["name/402",[166,51.705]],["parent/402",[232,3.491]],["name/403",[167,50.888]],["parent/403",[232,3.491]],["name/404",[168,50.888]],["parent/404",[232,3.491]],["name/405",[169,50.888]],["parent/405",[232,3.491]],["name/406",[170,50.888]],["parent/406",[232,3.491]],["name/407",[128,16.909]],["parent/407",[400,7.913]],["name/408",[172,50.888]],["parent/408",[232,3.491]],["name/409",[128,16.909]],["parent/409",[401,7.913]],["name/410",[174,44.459]],["parent/410",[232,3.491]],["name/411",[128,16.909]],["parent/411",[402,7.913]],["name/412",[176,52.14]],["parent/412",[232,3.491]],["name/413",[128,16.909]],["parent/413",[403,7.913]],["name/414",[178,50.888]],["parent/414",[232,3.491]],["name/415",[128,16.909]],["parent/415",[404,7.913]],["name/416",[180,50.888]],["parent/416",[232,3.491]],["name/417",[181,50.888]],["parent/417",[232,3.491]],["name/418",[182,50.888]],["parent/418",[232,3.491]],["name/419",[183,50.888]],["parent/419",[232,3.491]],["name/420",[184,50.888]],["parent/420",[232,3.491]],["name/421",[185,50.888]],["parent/421",[232,3.491]],["name/422",[186,50.503]],["parent/422",[232,3.491]],["name/423",[187,50.888]],["parent/423",[232,3.491]],["name/424",[188,50.888]],["parent/424",[232,3.491]],["name/425",[189,50.888]],["parent/425",[232,3.491]],["name/426",[190,50.888]],["parent/426",[232,3.491]],["name/427",[191,50.888]],["parent/427",[232,3.491]],["name/428",[192,50.888]],["parent/428",[232,3.491]],["name/429",[193,50.888]],["parent/429",[232,3.491]],["name/430",[194,50.888]],["parent/430",[232,3.491]],["name/431",[195,50.888]],["parent/431",[232,3.491]],["name/432",[196,50.503]],["parent/432",[232,3.491]],["name/433",[197,50.888]],["parent/433",[232,3.491]],["name/434",[198,50.888]],["parent/434",[232,3.491]],["name/435",[199,51.705]],["parent/435",[232,3.491]],["name/436",[200,51.705]],["parent/436",[232,3.491]],["name/437",[128,16.909]],["parent/437",[405,7.913]],["name/438",[202,51.705]],["parent/438",[406,5.301]],["name/439",[204,43.293]],["parent/439",[406,5.301]],["name/440",[205,50.503]],["parent/440",[406,5.301]],["name/441",[206,44.055]],["parent/441",[406,5.301]],["name/442",[207,51.705]],["parent/442",[406,5.301]],["name/443",[208,51.705]],["parent/443",[406,5.301]],["name/444",[209,51.705]],["parent/444",[406,5.301]],["name/445",[210,50.888]],["parent/445",[406,5.301]],["name/446",[211,51.705]],["parent/446",[406,5.301]],["name/447",[212,50.888]],["parent/447",[406,5.301]],["name/448",[213,51.705]],["parent/448",[406,5.301]],["name/449",[214,51.705]],["parent/449",[406,5.301]],["name/450",[215,51.705]],["parent/450",[406,5.301]],["name/451",[216,51.705]],["parent/451",[406,5.301]],["name/452",[174,44.459]],["parent/452",[406,5.301]],["name/453",[217,51.705]],["parent/453",[406,5.301]],["name/454",[218,51.705]],["parent/454",[406,5.301]],["name/455",[219,51.705]],["parent/455",[406,5.301]],["name/456",[220,48.159]],["parent/456",[406,5.301]],["name/457",[221,51.705]],["parent/457",[406,5.301]],["name/458",[222,51.705]],["parent/458",[232,3.491]],["name/459",[128,16.909]],["parent/459",[407,7.913]],["name/460",[206,44.055]],["parent/460",[408,6.616]],["name/461",[225,51.705]],["parent/461",[408,6.616]],["name/462",[204,43.293]],["parent/462",[408,6.616]],["name/463",[226,51.705]],["parent/463",[408,6.616]],["name/464",[227,49.098]],["parent/464",[408,6.616]],["name/465",[409,51.705]],["parent/465",[232,3.491]],["name/466",[410,51.705]],["parent/466",[232,3.491]],["name/467",[128,16.909]],["parent/467",[411,7.913]],["name/468",[140,50.503]],["parent/468",[232,3.491]],["name/469",[128,16.909]],["parent/469",[412,7.913]],["name/470",[413,51.705]],["parent/470",[232,3.491]],["name/471",[128,16.909]],["parent/471",[414,7.913]],["name/472",[142,50.503]],["parent/472",[232,3.491]],["name/473",[128,16.909]],["parent/473",[415,7.913]],["name/474",[144,50.503]],["parent/474",[232,3.491]],["name/475",[128,16.909]],["parent/475",[416,7.913]],["name/476",[146,50.503]],["parent/476",[232,3.491]],["name/477",[128,16.909]],["parent/477",[417,7.913]],["name/478",[148,50.503]],["parent/478",[232,3.491]],["name/479",[128,16.909]],["parent/479",[418,7.913]],["name/480",[150,50.503]],["parent/480",[232,3.491]],["name/481",[128,16.909]],["parent/481",[419,7.913]],["name/482",[152,50.503]],["parent/482",[232,3.491]],["name/483",[128,16.909]],["parent/483",[420,7.913]],["name/484",[154,50.503]],["parent/484",[232,3.491]],["name/485",[128,16.909]],["parent/485",[421,7.913]],["name/486",[156,50.503]],["parent/486",[232,3.491]],["name/487",[128,16.909]],["parent/487",[422,7.913]],["name/488",[158,50.503]],["parent/488",[232,3.491]],["name/489",[128,16.909]],["parent/489",[423,7.913]],["name/490",[160,50.503]],["parent/490",[232,3.491]],["name/491",[128,16.909]],["parent/491",[424,7.913]],["name/492",[425,51.705]],["parent/492",[232,3.491]],["name/493",[128,16.909]],["parent/493",[426,7.913]],["name/494",[427,51.705]],["parent/494",[232,3.491]],["name/495",[128,16.909]],["parent/495",[428,7.913]],["name/496",[429,51.705]],["parent/496",[232,3.491]],["name/497",[430,51.705]],["parent/497",[232,3.491]],["name/498",[228,50.503]],["parent/498",[230,5.97]],["name/499",[229,50.503]],["parent/499",[230,5.97]],["name/500",[431,79.22]],["parent/500",[230,5.97]],["name/501",[2,50.503]],["parent/501",[432,3.422]],["name/502",[433,79.22]],["parent/502",[432,3.422]],["name/503",[434,79.22]],["parent/503",[432,3.422]],["name/504",[435,79.22]],["parent/504",[432,3.422]],["name/505",[436,79.22]],["parent/505",[432,3.422]],["name/506",[437,79.22]],["parent/506",[432,3.422]],["name/507",[438,79.22]],["parent/507",[432,3.422]],["name/508",[439,79.22]],["parent/508",[432,3.422]],["name/509",[440,79.22]],["parent/509",[432,3.422]],["name/510",[441,79.22]],["parent/510",[432,3.422]],["name/511",[442,79.22]],["parent/511",[432,3.422]],["name/512",[443,79.22]],["parent/512",[432,3.422]],["name/513",[444,79.22]],["parent/513",[432,3.422]],["name/514",[445,79.22]],["parent/514",[432,3.422]],["name/515",[446,79.22]],["parent/515",[432,3.422]],["name/516",[447,79.22]],["parent/516",[432,3.422]],["name/517",[448,79.22]],["parent/517",[432,3.422]],["name/518",[449,79.22]],["parent/518",[432,3.422]],["name/519",[450,79.22]],["parent/519",[432,3.422]],["name/520",[451,79.22]],["parent/520",[432,3.422]],["name/521",[452,79.22]],["parent/521",[432,3.422]],["name/522",[453,79.22]],["parent/522",[432,3.422]],["name/523",[454,79.22]],["parent/523",[432,3.422]],["name/524",[455,79.22]],["parent/524",[432,3.422]],["name/525",[456,79.22]],["parent/525",[432,3.422]],["name/526",[457,79.22]],["parent/526",[432,3.422]],["name/527",[458,79.22]],["parent/527",[432,3.422]],["name/528",[459,79.22]],["parent/528",[432,3.422]],["name/529",[460,79.22]],["parent/529",[432,3.422]],["name/530",[461,79.22]],["parent/530",[432,3.422]],["name/531",[462,79.22]],["parent/531",[432,3.422]],["name/532",[463,79.22]],["parent/532",[432,3.422]],["name/533",[464,79.22]],["parent/533",[432,3.422]],["name/534",[465,79.22]],["parent/534",[432,3.422]],["name/535",[466,79.22]],["parent/535",[432,3.422]],["name/536",[467,79.22]],["parent/536",[432,3.422]],["name/537",[468,79.22]],["parent/537",[432,3.422]],["name/538",[469,79.22]],["parent/538",[432,3.422]],["name/539",[55,49.776]],["parent/539",[432,3.422]],["name/540",[101,50.503]],["parent/540",[432,3.422]],["name/541",[470,66.227]],["parent/541",[432,3.422]],["name/542",[128,16.909]],["parent/542",[471,7.913]],["name/543",[162,50.888]],["parent/543",[432,3.422]],["name/544",[163,50.888]],["parent/544",[432,3.422]],["name/545",[164,50.888]],["parent/545",[432,3.422]],["name/546",[165,51.705]],["parent/546",[432,3.422]],["name/547",[166,51.705]],["parent/547",[432,3.422]],["name/548",[167,50.888]],["parent/548",[432,3.422]],["name/549",[168,50.888]],["parent/549",[432,3.422]],["name/550",[169,50.888]],["parent/550",[432,3.422]],["name/551",[170,50.888]],["parent/551",[432,3.422]],["name/552",[128,16.909]],["parent/552",[472,7.913]],["name/553",[172,50.888]],["parent/553",[432,3.422]],["name/554",[128,16.909]],["parent/554",[473,7.913]],["name/555",[174,44.459]],["parent/555",[432,3.422]],["name/556",[128,16.909]],["parent/556",[474,7.913]],["name/557",[176,52.14]],["parent/557",[432,3.422]],["name/558",[128,16.909]],["parent/558",[475,7.913]],["name/559",[178,50.888]],["parent/559",[432,3.422]],["name/560",[128,16.909]],["parent/560",[476,7.913]],["name/561",[180,50.888]],["parent/561",[432,3.422]],["name/562",[181,50.888]],["parent/562",[432,3.422]],["name/563",[182,50.888]],["parent/563",[432,3.422]],["name/564",[183,50.888]],["parent/564",[432,3.422]],["name/565",[184,50.888]],["parent/565",[432,3.422]],["name/566",[185,50.888]],["parent/566",[432,3.422]],["name/567",[186,50.503]],["parent/567",[432,3.422]],["name/568",[187,50.888]],["parent/568",[432,3.422]],["name/569",[188,50.888]],["parent/569",[432,3.422]],["name/570",[189,50.888]],["parent/570",[432,3.422]],["name/571",[190,50.888]],["parent/571",[432,3.422]],["name/572",[191,50.888]],["parent/572",[432,3.422]],["name/573",[192,50.888]],["parent/573",[432,3.422]],["name/574",[193,50.888]],["parent/574",[432,3.422]],["name/575",[194,50.888]],["parent/575",[432,3.422]],["name/576",[195,50.888]],["parent/576",[432,3.422]],["name/577",[196,50.503]],["parent/577",[432,3.422]],["name/578",[197,50.888]],["parent/578",[432,3.422]],["name/579",[198,50.888]],["parent/579",[432,3.422]],["name/580",[199,51.705]],["parent/580",[432,3.422]],["name/581",[200,51.705]],["parent/581",[432,3.422]],["name/582",[128,16.909]],["parent/582",[477,7.913]],["name/583",[202,51.705]],["parent/583",[478,5.301]],["name/584",[204,43.293]],["parent/584",[478,5.301]],["name/585",[205,50.503]],["parent/585",[478,5.301]],["name/586",[206,44.055]],["parent/586",[478,5.301]],["name/587",[207,51.705]],["parent/587",[478,5.301]],["name/588",[208,51.705]],["parent/588",[478,5.301]],["name/589",[209,51.705]],["parent/589",[478,5.301]],["name/590",[210,50.888]],["parent/590",[478,5.301]],["name/591",[211,51.705]],["parent/591",[478,5.301]],["name/592",[212,50.888]],["parent/592",[478,5.301]],["name/593",[213,51.705]],["parent/593",[478,5.301]],["name/594",[214,51.705]],["parent/594",[478,5.301]],["name/595",[215,51.705]],["parent/595",[478,5.301]],["name/596",[216,51.705]],["parent/596",[478,5.301]],["name/597",[174,44.459]],["parent/597",[478,5.301]],["name/598",[217,51.705]],["parent/598",[478,5.301]],["name/599",[218,51.705]],["parent/599",[478,5.301]],["name/600",[219,51.705]],["parent/600",[478,5.301]],["name/601",[220,48.159]],["parent/601",[478,5.301]],["name/602",[221,51.705]],["parent/602",[478,5.301]],["name/603",[222,51.705]],["parent/603",[432,3.422]],["name/604",[128,16.909]],["parent/604",[479,7.913]],["name/605",[206,44.055]],["parent/605",[480,6.616]],["name/606",[225,51.705]],["parent/606",[480,6.616]],["name/607",[204,43.293]],["parent/607",[480,6.616]],["name/608",[226,51.705]],["parent/608",[480,6.616]],["name/609",[227,49.098]],["parent/609",[480,6.616]],["name/610",[481,74.112]],["parent/610",[432,3.422]],["name/611",[482,74.112]],["parent/611",[432,3.422]],["name/612",[483,70.747]],["parent/612",[432,3.422]],["name/613",[484,74.112]],["parent/613",[432,3.422]],["name/614",[284,68.234]],["parent/614",[432,3.422]],["name/615",[128,16.909]],["parent/615",[485,7.913]],["name/616",[286,66.227]],["parent/616",[486,5.879]],["name/617",[288,70.747]],["parent/617",[486,5.879]],["name/618",[289,66.227]],["parent/618",[486,5.879]],["name/619",[290,66.227]],["parent/619",[486,5.879]],["name/620",[291,66.227]],["parent/620",[486,5.879]],["name/621",[292,66.227]],["parent/621",[486,5.879]],["name/622",[293,66.227]],["parent/622",[486,5.879]],["name/623",[294,66.227]],["parent/623",[486,5.879]],["name/624",[295,70.747]],["parent/624",[486,5.879]],["name/625",[296,66.227]],["parent/625",[486,5.879]],["name/626",[297,66.227]],["parent/626",[486,5.879]],["name/627",[487,74.112]],["parent/627",[432,3.422]],["name/628",[298,68.234]],["parent/628",[432,3.422]],["name/629",[299,68.234]],["parent/629",[432,3.422]],["name/630",[488,74.112]],["parent/630",[432,3.422]],["name/631",[128,16.909]],["parent/631",[489,7.913]],["name/632",[353,70.747]],["parent/632",[490,6.616]],["name/633",[355,66.227]],["parent/633",[490,6.616]],["name/634",[204,43.293]],["parent/634",[490,6.616]],["name/635",[356,70.747]],["parent/635",[490,6.616]],["name/636",[357,70.747]],["parent/636",[490,6.616]],["name/637",[309,68.234]],["parent/637",[432,3.422]],["name/638",[491,74.112]],["parent/638",[432,3.422]],["name/639",[128,16.909]],["parent/639",[492,7.913]],["name/640",[493,74.112]],["parent/640",[494,6.816]],["name/641",[205,50.503]],["parent/641",[494,6.816]],["name/642",[495,68.234]],["parent/642",[494,6.816]],["name/643",[496,64.557]],["parent/643",[494,6.816]],["name/644",[497,74.112]],["parent/644",[432,3.422]],["name/645",[498,70.747]],["parent/645",[432,3.422]],["name/646",[323,68.234]],["parent/646",[432,3.422]],["name/647",[499,74.112]],["parent/647",[432,3.422]],["name/648",[500,68.234]],["parent/648",[432,3.422]],["name/649",[128,16.909]],["parent/649",[501,7.913]],["name/650",[500,68.234]],["parent/650",[502,7.913]],["name/651",[503,70.747]],["parent/651",[432,3.422]],["name/652",[324,68.234]],["parent/652",[432,3.422]],["name/653",[504,74.112]],["parent/653",[432,3.422]],["name/654",[326,68.234]],["parent/654",[432,3.422]],["name/655",[327,68.234]],["parent/655",[432,3.422]],["name/656",[505,70.747]],["parent/656",[432,3.422]],["name/657",[128,16.909]],["parent/657",[506,7.913]],["name/658",[335,68.234]],["parent/658",[432,3.422]],["name/659",[507,74.112]],["parent/659",[432,3.422]],["name/660",[508,66.227]],["parent/660",[432,3.422]],["name/661",[128,16.909]],["parent/661",[509,7.913]],["name/662",[510,74.112]],["parent/662",[511,6.816]],["name/663",[369,70.747]],["parent/663",[511,6.816]],["name/664",[371,70.747]],["parent/664",[511,6.816]],["name/665",[496,64.557]],["parent/665",[511,6.816]],["name/666",[339,68.234]],["parent/666",[432,3.422]],["name/667",[376,68.234]],["parent/667",[432,3.422]],["name/668",[512,74.112]],["parent/668",[432,3.422]],["name/669",[128,16.909]],["parent/669",[513,7.913]],["name/670",[220,48.159]],["parent/670",[514,7.403]],["name/671",[227,49.098]],["parent/671",[514,7.403]],["name/672",[515,70.747]],["parent/672",[432,3.422]],["name/673",[516,74.112]],["parent/673",[432,3.422]],["name/674",[128,16.909]],["parent/674",[517,7.913]],["name/675",[333,70.747]],["parent/675",[518,7.403]],["name/676",[519,74.112]],["parent/676",[518,7.403]],["name/677",[520,74.112]],["parent/677",[432,3.422]],["name/678",[380,68.234]],["parent/678",[432,3.422]],["name/679",[521,70.747]],["parent/679",[432,3.422]],["name/680",[522,70.747]],["parent/680",[432,3.422]],["name/681",[128,16.909]],["parent/681",[523,7.913]],["name/682",[524,70.747]],["parent/682",[525,7.403]],["name/683",[526,70.747]],["parent/683",[525,7.403]],["name/684",[382,68.234]],["parent/684",[432,3.422]],["name/685",[527,74.112]],["parent/685",[432,3.422]],["name/686",[128,16.909]],["parent/686",[528,7.913]],["name/687",[286,66.227]],["parent/687",[529,6.07]],["name/688",[289,66.227]],["parent/688",[529,6.07]],["name/689",[290,66.227]],["parent/689",[529,6.07]],["name/690",[291,66.227]],["parent/690",[529,6.07]],["name/691",[292,66.227]],["parent/691",[529,6.07]],["name/692",[293,66.227]],["parent/692",[529,6.07]],["name/693",[294,66.227]],["parent/693",[529,6.07]],["name/694",[296,66.227]],["parent/694",[529,6.07]],["name/695",[297,66.227]],["parent/695",[529,6.07]],["name/696",[530,74.112]],["parent/696",[432,3.422]],["name/697",[531,74.112]],["parent/697",[432,3.422]],["name/698",[128,16.909]],["parent/698",[532,7.913]],["name/699",[204,43.293]],["parent/699",[533,7.067]],["name/700",[534,74.112]],["parent/700",[533,7.067]],["name/701",[227,49.098]],["parent/701",[533,7.067]],["name/702",[282,57.248]],["parent/702",[432,3.422]],["name/703",[128,16.909]],["parent/703",[535,7.913]],["name/704",[311,63.126]],["parent/704",[536,7.067]],["name/705",[391,70.747]],["parent/705",[536,7.067]],["name/706",[282,57.248]],["parent/706",[536,7.067]],["name/707",[392,68.234]],["parent/707",[432,3.422]],["name/708",[128,16.909]],["parent/708",[537,7.913]],["name/709",[204,43.293]],["parent/709",[538,6.181]],["name/710",[395,70.747]],["parent/710",[538,6.181]],["name/711",[508,66.227]],["parent/711",[538,6.181]],["name/712",[397,70.747]],["parent/712",[538,6.181]],["name/713",[387,68.234]],["parent/713",[538,6.181]],["name/714",[398,70.747]],["parent/714",[538,6.181]],["name/715",[399,70.747]],["parent/715",[538,6.181]],["name/716",[220,48.159]],["parent/716",[538,6.181]],["name/717",[409,51.705]],["parent/717",[432,3.422]],["name/718",[410,51.705]],["parent/718",[432,3.422]],["name/719",[128,16.909]],["parent/719",[539,7.913]],["name/720",[140,50.503]],["parent/720",[432,3.422]],["name/721",[128,16.909]],["parent/721",[540,7.913]],["name/722",[413,51.705]],["parent/722",[432,3.422]],["name/723",[128,16.909]],["parent/723",[541,7.913]],["name/724",[142,50.503]],["parent/724",[432,3.422]],["name/725",[128,16.909]],["parent/725",[542,7.913]],["name/726",[144,50.503]],["parent/726",[432,3.422]],["name/727",[128,16.909]],["parent/727",[543,7.913]],["name/728",[146,50.503]],["parent/728",[432,3.422]],["name/729",[128,16.909]],["parent/729",[544,7.913]],["name/730",[148,50.503]],["parent/730",[432,3.422]],["name/731",[128,16.909]],["parent/731",[545,7.913]],["name/732",[150,50.503]],["parent/732",[432,3.422]],["name/733",[128,16.909]],["parent/733",[546,7.913]],["name/734",[152,50.503]],["parent/734",[432,3.422]],["name/735",[128,16.909]],["parent/735",[547,7.913]],["name/736",[154,50.503]],["parent/736",[432,3.422]],["name/737",[128,16.909]],["parent/737",[548,7.913]],["name/738",[156,50.503]],["parent/738",[432,3.422]],["name/739",[128,16.909]],["parent/739",[549,7.913]],["name/740",[158,50.503]],["parent/740",[432,3.422]],["name/741",[128,16.909]],["parent/741",[550,7.913]],["name/742",[160,50.503]],["parent/742",[432,3.422]],["name/743",[128,16.909]],["parent/743",[551,7.913]],["name/744",[425,51.705]],["parent/744",[432,3.422]],["name/745",[128,16.909]],["parent/745",[552,7.913]],["name/746",[427,51.705]],["parent/746",[432,3.422]],["name/747",[128,16.909]],["parent/747",[553,7.913]],["name/748",[429,51.705]],["parent/748",[432,3.422]],["name/749",[430,51.705]],["parent/749",[432,3.422]],["name/750",[228,50.503]],["parent/750",[230,5.97]],["name/751",[229,50.503]],["parent/751",[230,5.97]],["name/752",[554,79.22]],["parent/752",[230,5.97]],["name/753",[2,50.503]],["parent/753",[555,3.665]],["name/754",[556,79.22]],["parent/754",[555,3.665]],["name/755",[235,74.112]],["parent/755",[555,3.665]],["name/756",[557,79.22]],["parent/756",[555,3.665]],["name/757",[558,79.22]],["parent/757",[555,3.665]],["name/758",[559,79.22]],["parent/758",[555,3.665]],["name/759",[560,79.22]],["parent/759",[555,3.665]],["name/760",[561,79.22]],["parent/760",[555,3.665]],["name/761",[562,79.22]],["parent/761",[555,3.665]],["name/762",[55,49.776]],["parent/762",[555,3.665]],["name/763",[101,50.503]],["parent/763",[555,3.665]],["name/764",[470,66.227]],["parent/764",[555,3.665]],["name/765",[128,16.909]],["parent/765",[563,7.913]],["name/766",[162,50.888]],["parent/766",[555,3.665]],["name/767",[163,50.888]],["parent/767",[555,3.665]],["name/768",[164,50.888]],["parent/768",[555,3.665]],["name/769",[165,51.705]],["parent/769",[555,3.665]],["name/770",[166,51.705]],["parent/770",[555,3.665]],["name/771",[167,50.888]],["parent/771",[555,3.665]],["name/772",[168,50.888]],["parent/772",[555,3.665]],["name/773",[169,50.888]],["parent/773",[555,3.665]],["name/774",[170,50.888]],["parent/774",[555,3.665]],["name/775",[128,16.909]],["parent/775",[564,7.913]],["name/776",[172,50.888]],["parent/776",[555,3.665]],["name/777",[128,16.909]],["parent/777",[565,7.913]],["name/778",[174,44.459]],["parent/778",[555,3.665]],["name/779",[128,16.909]],["parent/779",[566,7.913]],["name/780",[176,52.14]],["parent/780",[555,3.665]],["name/781",[128,16.909]],["parent/781",[567,7.913]],["name/782",[178,50.888]],["parent/782",[555,3.665]],["name/783",[128,16.909]],["parent/783",[568,7.913]],["name/784",[180,50.888]],["parent/784",[555,3.665]],["name/785",[181,50.888]],["parent/785",[555,3.665]],["name/786",[182,50.888]],["parent/786",[555,3.665]],["name/787",[183,50.888]],["parent/787",[555,3.665]],["name/788",[184,50.888]],["parent/788",[555,3.665]],["name/789",[185,50.888]],["parent/789",[555,3.665]],["name/790",[186,50.503]],["parent/790",[555,3.665]],["name/791",[187,50.888]],["parent/791",[555,3.665]],["name/792",[188,50.888]],["parent/792",[555,3.665]],["name/793",[189,50.888]],["parent/793",[555,3.665]],["name/794",[190,50.888]],["parent/794",[555,3.665]],["name/795",[191,50.888]],["parent/795",[555,3.665]],["name/796",[192,50.888]],["parent/796",[555,3.665]],["name/797",[193,50.888]],["parent/797",[555,3.665]],["name/798",[194,50.888]],["parent/798",[555,3.665]],["name/799",[195,50.888]],["parent/799",[555,3.665]],["name/800",[196,50.503]],["parent/800",[555,3.665]],["name/801",[197,50.888]],["parent/801",[555,3.665]],["name/802",[198,50.888]],["parent/802",[555,3.665]],["name/803",[199,51.705]],["parent/803",[555,3.665]],["name/804",[200,51.705]],["parent/804",[555,3.665]],["name/805",[128,16.909]],["parent/805",[569,7.913]],["name/806",[202,51.705]],["parent/806",[570,5.301]],["name/807",[204,43.293]],["parent/807",[570,5.301]],["name/808",[205,50.503]],["parent/808",[570,5.301]],["name/809",[206,44.055]],["parent/809",[570,5.301]],["name/810",[207,51.705]],["parent/810",[570,5.301]],["name/811",[208,51.705]],["parent/811",[570,5.301]],["name/812",[209,51.705]],["parent/812",[570,5.301]],["name/813",[210,50.888]],["parent/813",[570,5.301]],["name/814",[211,51.705]],["parent/814",[570,5.301]],["name/815",[212,50.888]],["parent/815",[570,5.301]],["name/816",[213,51.705]],["parent/816",[570,5.301]],["name/817",[214,51.705]],["parent/817",[570,5.301]],["name/818",[215,51.705]],["parent/818",[570,5.301]],["name/819",[216,51.705]],["parent/819",[570,5.301]],["name/820",[174,44.459]],["parent/820",[570,5.301]],["name/821",[217,51.705]],["parent/821",[570,5.301]],["name/822",[218,51.705]],["parent/822",[570,5.301]],["name/823",[219,51.705]],["parent/823",[570,5.301]],["name/824",[220,48.159]],["parent/824",[570,5.301]],["name/825",[221,51.705]],["parent/825",[570,5.301]],["name/826",[222,51.705]],["parent/826",[555,3.665]],["name/827",[128,16.909]],["parent/827",[571,7.913]],["name/828",[206,44.055]],["parent/828",[572,6.616]],["name/829",[225,51.705]],["parent/829",[572,6.616]],["name/830",[204,43.293]],["parent/830",[572,6.616]],["name/831",[226,51.705]],["parent/831",[572,6.616]],["name/832",[227,49.098]],["parent/832",[572,6.616]],["name/833",[481,74.112]],["parent/833",[555,3.665]],["name/834",[482,74.112]],["parent/834",[555,3.665]],["name/835",[483,70.747]],["parent/835",[555,3.665]],["name/836",[484,74.112]],["parent/836",[555,3.665]],["name/837",[284,68.234]],["parent/837",[555,3.665]],["name/838",[128,16.909]],["parent/838",[573,7.913]],["name/839",[286,66.227]],["parent/839",[574,5.879]],["name/840",[288,70.747]],["parent/840",[574,5.879]],["name/841",[289,66.227]],["parent/841",[574,5.879]],["name/842",[290,66.227]],["parent/842",[574,5.879]],["name/843",[291,66.227]],["parent/843",[574,5.879]],["name/844",[292,66.227]],["parent/844",[574,5.879]],["name/845",[293,66.227]],["parent/845",[574,5.879]],["name/846",[294,66.227]],["parent/846",[574,5.879]],["name/847",[295,70.747]],["parent/847",[574,5.879]],["name/848",[296,66.227]],["parent/848",[574,5.879]],["name/849",[297,66.227]],["parent/849",[574,5.879]],["name/850",[487,74.112]],["parent/850",[555,3.665]],["name/851",[298,68.234]],["parent/851",[555,3.665]],["name/852",[299,68.234]],["parent/852",[555,3.665]],["name/853",[488,74.112]],["parent/853",[555,3.665]],["name/854",[128,16.909]],["parent/854",[575,7.913]],["name/855",[353,70.747]],["parent/855",[576,6.616]],["name/856",[355,66.227]],["parent/856",[576,6.616]],["name/857",[204,43.293]],["parent/857",[576,6.616]],["name/858",[356,70.747]],["parent/858",[576,6.616]],["name/859",[357,70.747]],["parent/859",[576,6.616]],["name/860",[309,68.234]],["parent/860",[555,3.665]],["name/861",[491,74.112]],["parent/861",[555,3.665]],["name/862",[128,16.909]],["parent/862",[577,7.913]],["name/863",[493,74.112]],["parent/863",[578,6.816]],["name/864",[205,50.503]],["parent/864",[578,6.816]],["name/865",[495,68.234]],["parent/865",[578,6.816]],["name/866",[496,64.557]],["parent/866",[578,6.816]],["name/867",[497,74.112]],["parent/867",[555,3.665]],["name/868",[498,70.747]],["parent/868",[555,3.665]],["name/869",[323,68.234]],["parent/869",[555,3.665]],["name/870",[499,74.112]],["parent/870",[555,3.665]],["name/871",[500,68.234]],["parent/871",[555,3.665]],["name/872",[128,16.909]],["parent/872",[579,7.913]],["name/873",[500,68.234]],["parent/873",[580,7.913]],["name/874",[503,70.747]],["parent/874",[555,3.665]],["name/875",[324,68.234]],["parent/875",[555,3.665]],["name/876",[504,74.112]],["parent/876",[555,3.665]],["name/877",[326,68.234]],["parent/877",[555,3.665]],["name/878",[327,68.234]],["parent/878",[555,3.665]],["name/879",[505,70.747]],["parent/879",[555,3.665]],["name/880",[128,16.909]],["parent/880",[581,7.913]],["name/881",[335,68.234]],["parent/881",[555,3.665]],["name/882",[507,74.112]],["parent/882",[555,3.665]],["name/883",[508,66.227]],["parent/883",[555,3.665]],["name/884",[128,16.909]],["parent/884",[582,7.913]],["name/885",[510,74.112]],["parent/885",[583,6.816]],["name/886",[369,70.747]],["parent/886",[583,6.816]],["name/887",[371,70.747]],["parent/887",[583,6.816]],["name/888",[496,64.557]],["parent/888",[583,6.816]],["name/889",[339,68.234]],["parent/889",[555,3.665]],["name/890",[376,68.234]],["parent/890",[555,3.665]],["name/891",[512,74.112]],["parent/891",[555,3.665]],["name/892",[128,16.909]],["parent/892",[584,7.913]],["name/893",[220,48.159]],["parent/893",[585,7.403]],["name/894",[227,49.098]],["parent/894",[585,7.403]],["name/895",[515,70.747]],["parent/895",[555,3.665]],["name/896",[516,74.112]],["parent/896",[555,3.665]],["name/897",[128,16.909]],["parent/897",[586,7.913]],["name/898",[333,70.747]],["parent/898",[587,7.403]],["name/899",[519,74.112]],["parent/899",[587,7.403]],["name/900",[520,74.112]],["parent/900",[555,3.665]],["name/901",[380,68.234]],["parent/901",[555,3.665]],["name/902",[521,70.747]],["parent/902",[555,3.665]],["name/903",[522,70.747]],["parent/903",[555,3.665]],["name/904",[128,16.909]],["parent/904",[588,7.913]],["name/905",[524,70.747]],["parent/905",[589,7.403]],["name/906",[526,70.747]],["parent/906",[589,7.403]],["name/907",[382,68.234]],["parent/907",[555,3.665]],["name/908",[527,74.112]],["parent/908",[555,3.665]],["name/909",[128,16.909]],["parent/909",[590,7.913]],["name/910",[286,66.227]],["parent/910",[591,6.07]],["name/911",[289,66.227]],["parent/911",[591,6.07]],["name/912",[290,66.227]],["parent/912",[591,6.07]],["name/913",[291,66.227]],["parent/913",[591,6.07]],["name/914",[292,66.227]],["parent/914",[591,6.07]],["name/915",[293,66.227]],["parent/915",[591,6.07]],["name/916",[294,66.227]],["parent/916",[591,6.07]],["name/917",[296,66.227]],["parent/917",[591,6.07]],["name/918",[297,66.227]],["parent/918",[591,6.07]],["name/919",[530,74.112]],["parent/919",[555,3.665]],["name/920",[531,74.112]],["parent/920",[555,3.665]],["name/921",[128,16.909]],["parent/921",[592,7.913]],["name/922",[204,43.293]],["parent/922",[593,7.067]],["name/923",[534,74.112]],["parent/923",[593,7.067]],["name/924",[227,49.098]],["parent/924",[593,7.067]],["name/925",[282,57.248]],["parent/925",[555,3.665]],["name/926",[128,16.909]],["parent/926",[594,7.913]],["name/927",[311,63.126]],["parent/927",[595,7.067]],["name/928",[391,70.747]],["parent/928",[595,7.067]],["name/929",[282,57.248]],["parent/929",[595,7.067]],["name/930",[392,68.234]],["parent/930",[555,3.665]],["name/931",[128,16.909]],["parent/931",[596,7.913]],["name/932",[204,43.293]],["parent/932",[597,6.181]],["name/933",[395,70.747]],["parent/933",[597,6.181]],["name/934",[508,66.227]],["parent/934",[597,6.181]],["name/935",[397,70.747]],["parent/935",[597,6.181]],["name/936",[387,68.234]],["parent/936",[597,6.181]],["name/937",[398,70.747]],["parent/937",[597,6.181]],["name/938",[399,70.747]],["parent/938",[597,6.181]],["name/939",[220,48.159]],["parent/939",[597,6.181]],["name/940",[409,51.705]],["parent/940",[555,3.665]],["name/941",[410,51.705]],["parent/941",[555,3.665]],["name/942",[128,16.909]],["parent/942",[598,7.913]],["name/943",[140,50.503]],["parent/943",[555,3.665]],["name/944",[128,16.909]],["parent/944",[599,7.913]],["name/945",[413,51.705]],["parent/945",[555,3.665]],["name/946",[128,16.909]],["parent/946",[600,7.913]],["name/947",[142,50.503]],["parent/947",[555,3.665]],["name/948",[128,16.909]],["parent/948",[601,7.913]],["name/949",[144,50.503]],["parent/949",[555,3.665]],["name/950",[128,16.909]],["parent/950",[602,7.913]],["name/951",[146,50.503]],["parent/951",[555,3.665]],["name/952",[128,16.909]],["parent/952",[603,7.913]],["name/953",[148,50.503]],["parent/953",[555,3.665]],["name/954",[128,16.909]],["parent/954",[604,7.913]],["name/955",[150,50.503]],["parent/955",[555,3.665]],["name/956",[128,16.909]],["parent/956",[605,7.913]],["name/957",[152,50.503]],["parent/957",[555,3.665]],["name/958",[128,16.909]],["parent/958",[606,7.913]],["name/959",[154,50.503]],["parent/959",[555,3.665]],["name/960",[128,16.909]],["parent/960",[607,7.913]],["name/961",[156,50.503]],["parent/961",[555,3.665]],["name/962",[128,16.909]],["parent/962",[608,7.913]],["name/963",[158,50.503]],["parent/963",[555,3.665]],["name/964",[128,16.909]],["parent/964",[609,7.913]],["name/965",[160,50.503]],["parent/965",[555,3.665]],["name/966",[128,16.909]],["parent/966",[610,7.913]],["name/967",[425,51.705]],["parent/967",[555,3.665]],["name/968",[128,16.909]],["parent/968",[611,7.913]],["name/969",[427,51.705]],["parent/969",[555,3.665]],["name/970",[128,16.909]],["parent/970",[612,7.913]],["name/971",[429,51.705]],["parent/971",[555,3.665]],["name/972",[430,51.705]],["parent/972",[555,3.665]],["name/973",[228,50.503]],["parent/973",[230,5.97]],["name/974",[229,50.503]],["parent/974",[230,5.97]],["name/975",[613,52.594]],["parent/975",[]],["name/976",[614,79.22]],["parent/976",[613,5.254]],["name/977",[2,50.503]],["parent/977",[615,3.886]],["name/978",[616,79.22]],["parent/978",[615,3.886]],["name/979",[617,79.22]],["parent/979",[615,3.886]],["name/980",[618,79.22]],["parent/980",[615,3.886]],["name/981",[619,79.22]],["parent/981",[615,3.886]],["name/982",[620,79.22]],["parent/982",[615,3.886]],["name/983",[621,79.22]],["parent/983",[615,3.886]],["name/984",[622,79.22]],["parent/984",[615,3.886]],["name/985",[623,79.22]],["parent/985",[615,3.886]],["name/986",[624,79.22]],["parent/986",[615,3.886]],["name/987",[625,79.22]],["parent/987",[615,3.886]],["name/988",[626,79.22]],["parent/988",[615,3.886]],["name/989",[627,79.22]],["parent/989",[615,3.886]],["name/990",[55,49.776]],["parent/990",[615,3.886]],["name/991",[628,74.112]],["parent/991",[615,3.886]],["name/992",[629,79.22]],["parent/992",[615,3.886]],["name/993",[630,79.22]],["parent/993",[615,3.886]],["name/994",[631,79.22]],["parent/994",[615,3.886]],["name/995",[632,79.22]],["parent/995",[615,3.886]],["name/996",[633,79.22]],["parent/996",[615,3.886]],["name/997",[613,52.594]],["parent/997",[615,3.886]],["name/998",[634,79.22]],["parent/998",[615,3.886]],["name/999",[635,79.22]],["parent/999",[615,3.886]],["name/1000",[636,79.22]],["parent/1000",[615,3.886]],["name/1001",[101,50.503]],["parent/1001",[615,3.886]],["name/1002",[637,63.126]],["parent/1002",[615,3.886]],["name/1003",[128,16.909]],["parent/1003",[638,7.913]],["name/1004",[639,79.22]],["parent/1004",[615,3.886]],["name/1005",[128,16.909]],["parent/1005",[640,7.913]],["name/1006",[254,58.018]],["parent/1006",[615,3.886]],["name/1007",[128,16.909]],["parent/1007",[641,7.913]],["name/1008",[642,79.22]],["parent/1008",[615,3.886]],["name/1009",[128,16.909]],["parent/1009",[643,7.913]],["name/1010",[644,79.22]],["parent/1010",[615,3.886]],["name/1011",[128,16.909]],["parent/1011",[645,7.913]],["name/1012",[646,61.874]],["parent/1012",[615,3.886]],["name/1013",[128,16.909]],["parent/1013",[647,7.913]],["name/1014",[409,51.705]],["parent/1014",[615,3.886]],["name/1015",[410,51.705]],["parent/1015",[615,3.886]],["name/1016",[128,16.909]],["parent/1016",[648,7.913]],["name/1017",[140,50.503]],["parent/1017",[615,3.886]],["name/1018",[128,16.909]],["parent/1018",[649,7.913]],["name/1019",[413,51.705]],["parent/1019",[615,3.886]],["name/1020",[128,16.909]],["parent/1020",[650,7.913]],["name/1021",[142,50.503]],["parent/1021",[615,3.886]],["name/1022",[128,16.909]],["parent/1022",[651,7.913]],["name/1023",[144,50.503]],["parent/1023",[615,3.886]],["name/1024",[128,16.909]],["parent/1024",[652,7.913]],["name/1025",[146,50.503]],["parent/1025",[615,3.886]],["name/1026",[128,16.909]],["parent/1026",[653,7.913]],["name/1027",[148,50.503]],["parent/1027",[615,3.886]],["name/1028",[128,16.909]],["parent/1028",[654,7.913]],["name/1029",[150,50.503]],["parent/1029",[615,3.886]],["name/1030",[128,16.909]],["parent/1030",[655,7.913]],["name/1031",[152,50.503]],["parent/1031",[615,3.886]],["name/1032",[128,16.909]],["parent/1032",[656,7.913]],["name/1033",[154,50.503]],["parent/1033",[615,3.886]],["name/1034",[128,16.909]],["parent/1034",[657,7.913]],["name/1035",[156,50.503]],["parent/1035",[615,3.886]],["name/1036",[128,16.909]],["parent/1036",[658,7.913]],["name/1037",[158,50.503]],["parent/1037",[615,3.886]],["name/1038",[128,16.909]],["parent/1038",[659,7.913]],["name/1039",[196,50.503]],["parent/1039",[615,3.886]],["name/1040",[128,16.909]],["parent/1040",[660,7.913]],["name/1041",[160,50.503]],["parent/1041",[615,3.886]],["name/1042",[128,16.909]],["parent/1042",[661,7.913]],["name/1043",[425,51.705]],["parent/1043",[615,3.886]],["name/1044",[128,16.909]],["parent/1044",[662,7.913]],["name/1045",[427,51.705]],["parent/1045",[615,3.886]],["name/1046",[128,16.909]],["parent/1046",[663,7.913]],["name/1047",[429,51.705]],["parent/1047",[615,3.886]],["name/1048",[430,51.705]],["parent/1048",[615,3.886]],["name/1049",[162,50.888]],["parent/1049",[615,3.886]],["name/1050",[163,50.888]],["parent/1050",[615,3.886]],["name/1051",[164,50.888]],["parent/1051",[615,3.886]],["name/1052",[165,51.705]],["parent/1052",[615,3.886]],["name/1053",[166,51.705]],["parent/1053",[615,3.886]],["name/1054",[167,50.888]],["parent/1054",[615,3.886]],["name/1055",[168,50.888]],["parent/1055",[615,3.886]],["name/1056",[169,50.888]],["parent/1056",[615,3.886]],["name/1057",[170,50.888]],["parent/1057",[615,3.886]],["name/1058",[128,16.909]],["parent/1058",[664,7.913]],["name/1059",[172,50.888]],["parent/1059",[615,3.886]],["name/1060",[128,16.909]],["parent/1060",[665,7.913]],["name/1061",[174,44.459]],["parent/1061",[615,3.886]],["name/1062",[128,16.909]],["parent/1062",[666,7.913]],["name/1063",[176,52.14]],["parent/1063",[615,3.886]],["name/1064",[128,16.909]],["parent/1064",[667,7.913]],["name/1065",[178,50.888]],["parent/1065",[615,3.886]],["name/1066",[128,16.909]],["parent/1066",[668,7.913]],["name/1067",[180,50.888]],["parent/1067",[615,3.886]],["name/1068",[181,50.888]],["parent/1068",[615,3.886]],["name/1069",[182,50.888]],["parent/1069",[615,3.886]],["name/1070",[183,50.888]],["parent/1070",[615,3.886]],["name/1071",[184,50.888]],["parent/1071",[615,3.886]],["name/1072",[185,50.888]],["parent/1072",[615,3.886]],["name/1073",[186,50.503]],["parent/1073",[615,3.886]],["name/1074",[187,50.888]],["parent/1074",[615,3.886]],["name/1075",[188,50.888]],["parent/1075",[615,3.886]],["name/1076",[189,50.888]],["parent/1076",[615,3.886]],["name/1077",[190,50.888]],["parent/1077",[615,3.886]],["name/1078",[191,50.888]],["parent/1078",[615,3.886]],["name/1079",[192,50.888]],["parent/1079",[615,3.886]],["name/1080",[193,50.888]],["parent/1080",[615,3.886]],["name/1081",[194,50.888]],["parent/1081",[615,3.886]],["name/1082",[195,50.888]],["parent/1082",[615,3.886]],["name/1083",[197,50.888]],["parent/1083",[615,3.886]],["name/1084",[198,50.888]],["parent/1084",[615,3.886]],["name/1085",[199,51.705]],["parent/1085",[615,3.886]],["name/1086",[200,51.705]],["parent/1086",[615,3.886]],["name/1087",[128,16.909]],["parent/1087",[669,7.913]],["name/1088",[202,51.705]],["parent/1088",[670,5.301]],["name/1089",[204,43.293]],["parent/1089",[670,5.301]],["name/1090",[205,50.503]],["parent/1090",[670,5.301]],["name/1091",[206,44.055]],["parent/1091",[670,5.301]],["name/1092",[207,51.705]],["parent/1092",[670,5.301]],["name/1093",[208,51.705]],["parent/1093",[670,5.301]],["name/1094",[209,51.705]],["parent/1094",[670,5.301]],["name/1095",[210,50.888]],["parent/1095",[670,5.301]],["name/1096",[211,51.705]],["parent/1096",[670,5.301]],["name/1097",[212,50.888]],["parent/1097",[670,5.301]],["name/1098",[213,51.705]],["parent/1098",[670,5.301]],["name/1099",[214,51.705]],["parent/1099",[670,5.301]],["name/1100",[215,51.705]],["parent/1100",[670,5.301]],["name/1101",[216,51.705]],["parent/1101",[670,5.301]],["name/1102",[174,44.459]],["parent/1102",[670,5.301]],["name/1103",[217,51.705]],["parent/1103",[670,5.301]],["name/1104",[218,51.705]],["parent/1104",[670,5.301]],["name/1105",[219,51.705]],["parent/1105",[670,5.301]],["name/1106",[220,48.159]],["parent/1106",[670,5.301]],["name/1107",[221,51.705]],["parent/1107",[670,5.301]],["name/1108",[222,51.705]],["parent/1108",[615,3.886]],["name/1109",[128,16.909]],["parent/1109",[671,7.913]],["name/1110",[206,44.055]],["parent/1110",[672,6.616]],["name/1111",[225,51.705]],["parent/1111",[672,6.616]],["name/1112",[204,43.293]],["parent/1112",[672,6.616]],["name/1113",[226,51.705]],["parent/1113",[672,6.616]],["name/1114",[227,49.098]],["parent/1114",[672,6.616]],["name/1115",[228,50.503]],["parent/1115",[613,5.254]],["name/1116",[229,50.503]],["parent/1116",[613,5.254]],["name/1117",[673,74.112]],["parent/1117",[613,5.254]],["name/1118",[2,50.503]],["parent/1118",[674,4.204]],["name/1119",[675,79.22]],["parent/1119",[674,4.204]],["name/1120",[676,79.22]],["parent/1120",[674,4.204]],["name/1121",[677,79.22]],["parent/1121",[674,4.204]],["name/1122",[678,79.22]],["parent/1122",[674,4.204]],["name/1123",[55,49.776]],["parent/1123",[674,4.204]],["name/1124",[673,74.112]],["parent/1124",[674,4.204]],["name/1125",[101,50.503]],["parent/1125",[674,4.204]],["name/1126",[409,51.705]],["parent/1126",[674,4.204]],["name/1127",[410,51.705]],["parent/1127",[674,4.204]],["name/1128",[128,16.909]],["parent/1128",[679,7.913]],["name/1129",[140,50.503]],["parent/1129",[674,4.204]],["name/1130",[128,16.909]],["parent/1130",[680,7.913]],["name/1131",[413,51.705]],["parent/1131",[674,4.204]],["name/1132",[128,16.909]],["parent/1132",[681,7.913]],["name/1133",[142,50.503]],["parent/1133",[674,4.204]],["name/1134",[128,16.909]],["parent/1134",[682,7.913]],["name/1135",[144,50.503]],["parent/1135",[674,4.204]],["name/1136",[128,16.909]],["parent/1136",[683,7.913]],["name/1137",[146,50.503]],["parent/1137",[674,4.204]],["name/1138",[128,16.909]],["parent/1138",[684,7.913]],["name/1139",[148,50.503]],["parent/1139",[674,4.204]],["name/1140",[128,16.909]],["parent/1140",[685,7.913]],["name/1141",[150,50.503]],["parent/1141",[674,4.204]],["name/1142",[128,16.909]],["parent/1142",[686,7.913]],["name/1143",[152,50.503]],["parent/1143",[674,4.204]],["name/1144",[128,16.909]],["parent/1144",[687,7.913]],["name/1145",[154,50.503]],["parent/1145",[674,4.204]],["name/1146",[128,16.909]],["parent/1146",[688,7.913]],["name/1147",[156,50.503]],["parent/1147",[674,4.204]],["name/1148",[128,16.909]],["parent/1148",[689,7.913]],["name/1149",[158,50.503]],["parent/1149",[674,4.204]],["name/1150",[128,16.909]],["parent/1150",[690,7.913]],["name/1151",[196,50.503]],["parent/1151",[674,4.204]],["name/1152",[128,16.909]],["parent/1152",[691,7.913]],["name/1153",[160,50.503]],["parent/1153",[674,4.204]],["name/1154",[128,16.909]],["parent/1154",[692,7.913]],["name/1155",[425,51.705]],["parent/1155",[674,4.204]],["name/1156",[128,16.909]],["parent/1156",[693,7.913]],["name/1157",[427,51.705]],["parent/1157",[674,4.204]],["name/1158",[128,16.909]],["parent/1158",[694,7.913]],["name/1159",[429,51.705]],["parent/1159",[674,4.204]],["name/1160",[430,51.705]],["parent/1160",[674,4.204]],["name/1161",[162,50.888]],["parent/1161",[674,4.204]],["name/1162",[163,50.888]],["parent/1162",[674,4.204]],["name/1163",[164,50.888]],["parent/1163",[674,4.204]],["name/1164",[165,51.705]],["parent/1164",[674,4.204]],["name/1165",[166,51.705]],["parent/1165",[674,4.204]],["name/1166",[167,50.888]],["parent/1166",[674,4.204]],["name/1167",[168,50.888]],["parent/1167",[674,4.204]],["name/1168",[169,50.888]],["parent/1168",[674,4.204]],["name/1169",[170,50.888]],["parent/1169",[674,4.204]],["name/1170",[128,16.909]],["parent/1170",[695,7.913]],["name/1171",[172,50.888]],["parent/1171",[674,4.204]],["name/1172",[128,16.909]],["parent/1172",[696,7.913]],["name/1173",[174,44.459]],["parent/1173",[674,4.204]],["name/1174",[128,16.909]],["parent/1174",[697,7.913]],["name/1175",[176,52.14]],["parent/1175",[674,4.204]],["name/1176",[128,16.909]],["parent/1176",[698,7.913]],["name/1177",[178,50.888]],["parent/1177",[674,4.204]],["name/1178",[128,16.909]],["parent/1178",[699,7.913]],["name/1179",[180,50.888]],["parent/1179",[674,4.204]],["name/1180",[181,50.888]],["parent/1180",[674,4.204]],["name/1181",[182,50.888]],["parent/1181",[674,4.204]],["name/1182",[183,50.888]],["parent/1182",[674,4.204]],["name/1183",[184,50.888]],["parent/1183",[674,4.204]],["name/1184",[185,50.888]],["parent/1184",[674,4.204]],["name/1185",[186,50.503]],["parent/1185",[674,4.204]],["name/1186",[187,50.888]],["parent/1186",[674,4.204]],["name/1187",[188,50.888]],["parent/1187",[674,4.204]],["name/1188",[189,50.888]],["parent/1188",[674,4.204]],["name/1189",[190,50.888]],["parent/1189",[674,4.204]],["name/1190",[191,50.888]],["parent/1190",[674,4.204]],["name/1191",[192,50.888]],["parent/1191",[674,4.204]],["name/1192",[193,50.888]],["parent/1192",[674,4.204]],["name/1193",[194,50.888]],["parent/1193",[674,4.204]],["name/1194",[195,50.888]],["parent/1194",[674,4.204]],["name/1195",[197,50.888]],["parent/1195",[674,4.204]],["name/1196",[198,50.888]],["parent/1196",[674,4.204]],["name/1197",[199,51.705]],["parent/1197",[674,4.204]],["name/1198",[200,51.705]],["parent/1198",[674,4.204]],["name/1199",[128,16.909]],["parent/1199",[700,7.913]],["name/1200",[202,51.705]],["parent/1200",[701,5.301]],["name/1201",[204,43.293]],["parent/1201",[701,5.301]],["name/1202",[205,50.503]],["parent/1202",[701,5.301]],["name/1203",[206,44.055]],["parent/1203",[701,5.301]],["name/1204",[207,51.705]],["parent/1204",[701,5.301]],["name/1205",[208,51.705]],["parent/1205",[701,5.301]],["name/1206",[209,51.705]],["parent/1206",[701,5.301]],["name/1207",[210,50.888]],["parent/1207",[701,5.301]],["name/1208",[211,51.705]],["parent/1208",[701,5.301]],["name/1209",[212,50.888]],["parent/1209",[701,5.301]],["name/1210",[213,51.705]],["parent/1210",[701,5.301]],["name/1211",[214,51.705]],["parent/1211",[701,5.301]],["name/1212",[215,51.705]],["parent/1212",[701,5.301]],["name/1213",[216,51.705]],["parent/1213",[701,5.301]],["name/1214",[174,44.459]],["parent/1214",[701,5.301]],["name/1215",[217,51.705]],["parent/1215",[701,5.301]],["name/1216",[218,51.705]],["parent/1216",[701,5.301]],["name/1217",[219,51.705]],["parent/1217",[701,5.301]],["name/1218",[220,48.159]],["parent/1218",[701,5.301]],["name/1219",[221,51.705]],["parent/1219",[701,5.301]],["name/1220",[222,51.705]],["parent/1220",[674,4.204]],["name/1221",[128,16.909]],["parent/1221",[702,7.913]],["name/1222",[206,44.055]],["parent/1222",[703,6.616]],["name/1223",[225,51.705]],["parent/1223",[703,6.616]],["name/1224",[204,43.293]],["parent/1224",[703,6.616]],["name/1225",[226,51.705]],["parent/1225",[703,6.616]],["name/1226",[227,49.098]],["parent/1226",[703,6.616]],["name/1227",[228,50.503]],["parent/1227",[613,5.254]],["name/1228",[229,50.503]],["parent/1228",[613,5.254]],["name/1229",[704,79.22]],["parent/1229",[613,5.254]],["name/1230",[2,50.503]],["parent/1230",[705,3.233]],["name/1231",[706,79.22]],["parent/1231",[705,3.233]],["name/1232",[707,74.112]],["parent/1232",[705,3.233]],["name/1233",[708,79.22]],["parent/1233",[705,3.233]],["name/1234",[709,79.22]],["parent/1234",[705,3.233]],["name/1235",[710,79.22]],["parent/1235",[705,3.233]],["name/1236",[711,79.22]],["parent/1236",[705,3.233]],["name/1237",[712,79.22]],["parent/1237",[705,3.233]],["name/1238",[713,79.22]],["parent/1238",[705,3.233]],["name/1239",[714,79.22]],["parent/1239",[705,3.233]],["name/1240",[715,79.22]],["parent/1240",[705,3.233]],["name/1241",[716,79.22]],["parent/1241",[705,3.233]],["name/1242",[717,79.22]],["parent/1242",[705,3.233]],["name/1243",[718,79.22]],["parent/1243",[705,3.233]],["name/1244",[719,79.22]],["parent/1244",[705,3.233]],["name/1245",[720,79.22]],["parent/1245",[705,3.233]],["name/1246",[721,79.22]],["parent/1246",[705,3.233]],["name/1247",[722,79.22]],["parent/1247",[705,3.233]],["name/1248",[723,79.22]],["parent/1248",[705,3.233]],["name/1249",[724,79.22]],["parent/1249",[705,3.233]],["name/1250",[725,79.22]],["parent/1250",[705,3.233]],["name/1251",[726,79.22]],["parent/1251",[705,3.233]],["name/1252",[727,79.22]],["parent/1252",[705,3.233]],["name/1253",[728,79.22]],["parent/1253",[705,3.233]],["name/1254",[729,79.22]],["parent/1254",[705,3.233]],["name/1255",[730,79.22]],["parent/1255",[705,3.233]],["name/1256",[731,79.22]],["parent/1256",[705,3.233]],["name/1257",[732,79.22]],["parent/1257",[705,3.233]],["name/1258",[733,79.22]],["parent/1258",[705,3.233]],["name/1259",[734,79.22]],["parent/1259",[705,3.233]],["name/1260",[55,49.776]],["parent/1260",[705,3.233]],["name/1261",[628,74.112]],["parent/1261",[705,3.233]],["name/1262",[735,79.22]],["parent/1262",[705,3.233]],["name/1263",[736,79.22]],["parent/1263",[705,3.233]],["name/1264",[737,74.112]],["parent/1264",[705,3.233]],["name/1265",[738,68.234]],["parent/1265",[705,3.233]],["name/1266",[483,70.747]],["parent/1266",[705,3.233]],["name/1267",[739,79.22]],["parent/1267",[705,3.233]],["name/1268",[740,79.22]],["parent/1268",[705,3.233]],["name/1269",[741,79.22]],["parent/1269",[705,3.233]],["name/1270",[742,79.22]],["parent/1270",[705,3.233]],["name/1271",[284,68.234]],["parent/1271",[705,3.233]],["name/1272",[298,68.234]],["parent/1272",[705,3.233]],["name/1273",[299,68.234]],["parent/1273",[705,3.233]],["name/1274",[743,79.22]],["parent/1274",[705,3.233]],["name/1275",[309,68.234]],["parent/1275",[705,3.233]],["name/1276",[498,70.747]],["parent/1276",[705,3.233]],["name/1277",[744,64.557]],["parent/1277",[705,3.233]],["name/1278",[745,79.22]],["parent/1278",[705,3.233]],["name/1279",[323,68.234]],["parent/1279",[705,3.233]],["name/1280",[746,79.22]],["parent/1280",[705,3.233]],["name/1281",[747,79.22]],["parent/1281",[705,3.233]],["name/1282",[748,79.22]],["parent/1282",[705,3.233]],["name/1283",[749,74.112]],["parent/1283",[705,3.233]],["name/1284",[503,70.747]],["parent/1284",[705,3.233]],["name/1285",[750,64.557]],["parent/1285",[705,3.233]],["name/1286",[751,79.22]],["parent/1286",[705,3.233]],["name/1287",[752,74.112]],["parent/1287",[705,3.233]],["name/1288",[753,66.227]],["parent/1288",[705,3.233]],["name/1289",[324,68.234]],["parent/1289",[705,3.233]],["name/1290",[754,79.22]],["parent/1290",[705,3.233]],["name/1291",[326,68.234]],["parent/1291",[705,3.233]],["name/1292",[327,68.234]],["parent/1292",[705,3.233]],["name/1293",[755,66.227]],["parent/1293",[705,3.233]],["name/1294",[505,70.747]],["parent/1294",[705,3.233]],["name/1295",[756,79.22]],["parent/1295",[705,3.233]],["name/1296",[335,68.234]],["parent/1296",[705,3.233]],["name/1297",[757,79.22]],["parent/1297",[705,3.233]],["name/1298",[508,66.227]],["parent/1298",[705,3.233]],["name/1299",[758,74.112]],["parent/1299",[705,3.233]],["name/1300",[339,68.234]],["parent/1300",[705,3.233]],["name/1301",[376,68.234]],["parent/1301",[705,3.233]],["name/1302",[759,79.22]],["parent/1302",[705,3.233]],["name/1303",[760,79.22]],["parent/1303",[705,3.233]],["name/1304",[761,79.22]],["parent/1304",[705,3.233]],["name/1305",[762,74.112]],["parent/1305",[705,3.233]],["name/1306",[763,79.22]],["parent/1306",[705,3.233]],["name/1307",[515,70.747]],["parent/1307",[705,3.233]],["name/1308",[764,79.22]],["parent/1308",[705,3.233]],["name/1309",[765,66.227]],["parent/1309",[705,3.233]],["name/1310",[766,79.22]],["parent/1310",[705,3.233]],["name/1311",[613,52.594]],["parent/1311",[705,3.233]],["name/1312",[767,79.22]],["parent/1312",[705,3.233]],["name/1313",[768,74.112]],["parent/1313",[705,3.233]],["name/1314",[769,79.22]],["parent/1314",[705,3.233]],["name/1315",[770,79.22]],["parent/1315",[705,3.233]],["name/1316",[380,68.234]],["parent/1316",[705,3.233]],["name/1317",[771,79.22]],["parent/1317",[705,3.233]],["name/1318",[772,79.22]],["parent/1318",[705,3.233]],["name/1319",[773,79.22]],["parent/1319",[705,3.233]],["name/1320",[521,70.747]],["parent/1320",[705,3.233]],["name/1321",[522,70.747]],["parent/1321",[705,3.233]],["name/1322",[128,16.909]],["parent/1322",[774,7.913]],["name/1323",[524,70.747]],["parent/1323",[775,7.403]],["name/1324",[526,70.747]],["parent/1324",[775,7.403]],["name/1325",[776,79.22]],["parent/1325",[705,3.233]],["name/1326",[382,68.234]],["parent/1326",[705,3.233]],["name/1327",[396,55.866]],["parent/1327",[705,3.233]],["name/1328",[777,68.234]],["parent/1328",[705,3.233]],["name/1329",[778,64.557]],["parent/1329",[705,3.233]],["name/1330",[779,70.747]],["parent/1330",[705,3.233]],["name/1331",[780,74.112]],["parent/1331",[705,3.233]],["name/1332",[282,57.248]],["parent/1332",[705,3.233]],["name/1333",[781,79.22]],["parent/1333",[705,3.233]],["name/1334",[392,68.234]],["parent/1334",[705,3.233]],["name/1335",[101,50.503]],["parent/1335",[705,3.233]],["name/1336",[409,51.705]],["parent/1336",[705,3.233]],["name/1337",[410,51.705]],["parent/1337",[705,3.233]],["name/1338",[128,16.909]],["parent/1338",[782,7.913]],["name/1339",[140,50.503]],["parent/1339",[705,3.233]],["name/1340",[128,16.909]],["parent/1340",[783,7.913]],["name/1341",[413,51.705]],["parent/1341",[705,3.233]],["name/1342",[128,16.909]],["parent/1342",[784,7.913]],["name/1343",[142,50.503]],["parent/1343",[705,3.233]],["name/1344",[128,16.909]],["parent/1344",[785,7.913]],["name/1345",[144,50.503]],["parent/1345",[705,3.233]],["name/1346",[128,16.909]],["parent/1346",[786,7.913]],["name/1347",[146,50.503]],["parent/1347",[705,3.233]],["name/1348",[128,16.909]],["parent/1348",[787,7.913]],["name/1349",[148,50.503]],["parent/1349",[705,3.233]],["name/1350",[128,16.909]],["parent/1350",[788,7.913]],["name/1351",[150,50.503]],["parent/1351",[705,3.233]],["name/1352",[128,16.909]],["parent/1352",[789,7.913]],["name/1353",[152,50.503]],["parent/1353",[705,3.233]],["name/1354",[128,16.909]],["parent/1354",[790,7.913]],["name/1355",[154,50.503]],["parent/1355",[705,3.233]],["name/1356",[128,16.909]],["parent/1356",[791,7.913]],["name/1357",[156,50.503]],["parent/1357",[705,3.233]],["name/1358",[128,16.909]],["parent/1358",[792,7.913]],["name/1359",[158,50.503]],["parent/1359",[705,3.233]],["name/1360",[128,16.909]],["parent/1360",[793,7.913]],["name/1361",[196,50.503]],["parent/1361",[705,3.233]],["name/1362",[128,16.909]],["parent/1362",[794,7.913]],["name/1363",[160,50.503]],["parent/1363",[705,3.233]],["name/1364",[128,16.909]],["parent/1364",[795,7.913]],["name/1365",[425,51.705]],["parent/1365",[705,3.233]],["name/1366",[128,16.909]],["parent/1366",[796,7.913]],["name/1367",[427,51.705]],["parent/1367",[705,3.233]],["name/1368",[128,16.909]],["parent/1368",[797,7.913]],["name/1369",[429,51.705]],["parent/1369",[705,3.233]],["name/1370",[430,51.705]],["parent/1370",[705,3.233]],["name/1371",[798,79.22]],["parent/1371",[705,3.233]],["name/1372",[128,16.909]],["parent/1372",[799,7.913]],["name/1373",[637,63.126]],["parent/1373",[705,3.233]],["name/1374",[128,16.909]],["parent/1374",[800,7.913]],["name/1375",[254,58.018]],["parent/1375",[705,3.233]],["name/1376",[128,16.909]],["parent/1376",[801,7.913]],["name/1377",[802,79.22]],["parent/1377",[705,3.233]],["name/1378",[128,16.909]],["parent/1378",[803,7.913]],["name/1379",[646,61.874]],["parent/1379",[705,3.233]],["name/1380",[128,16.909]],["parent/1380",[804,7.913]],["name/1381",[805,79.22]],["parent/1381",[705,3.233]],["name/1382",[128,16.909]],["parent/1382",[806,7.913]],["name/1383",[162,50.888]],["parent/1383",[705,3.233]],["name/1384",[163,50.888]],["parent/1384",[705,3.233]],["name/1385",[164,50.888]],["parent/1385",[705,3.233]],["name/1386",[165,51.705]],["parent/1386",[705,3.233]],["name/1387",[166,51.705]],["parent/1387",[705,3.233]],["name/1388",[167,50.888]],["parent/1388",[705,3.233]],["name/1389",[168,50.888]],["parent/1389",[705,3.233]],["name/1390",[169,50.888]],["parent/1390",[705,3.233]],["name/1391",[170,50.888]],["parent/1391",[705,3.233]],["name/1392",[128,16.909]],["parent/1392",[807,7.913]],["name/1393",[172,50.888]],["parent/1393",[705,3.233]],["name/1394",[128,16.909]],["parent/1394",[808,7.913]],["name/1395",[174,44.459]],["parent/1395",[705,3.233]],["name/1396",[128,16.909]],["parent/1396",[809,7.913]],["name/1397",[176,52.14]],["parent/1397",[705,3.233]],["name/1398",[128,16.909]],["parent/1398",[810,7.913]],["name/1399",[178,50.888]],["parent/1399",[705,3.233]],["name/1400",[128,16.909]],["parent/1400",[811,7.913]],["name/1401",[180,50.888]],["parent/1401",[705,3.233]],["name/1402",[181,50.888]],["parent/1402",[705,3.233]],["name/1403",[182,50.888]],["parent/1403",[705,3.233]],["name/1404",[183,50.888]],["parent/1404",[705,3.233]],["name/1405",[184,50.888]],["parent/1405",[705,3.233]],["name/1406",[185,50.888]],["parent/1406",[705,3.233]],["name/1407",[186,50.503]],["parent/1407",[705,3.233]],["name/1408",[187,50.888]],["parent/1408",[705,3.233]],["name/1409",[188,50.888]],["parent/1409",[705,3.233]],["name/1410",[189,50.888]],["parent/1410",[705,3.233]],["name/1411",[190,50.888]],["parent/1411",[705,3.233]],["name/1412",[191,50.888]],["parent/1412",[705,3.233]],["name/1413",[192,50.888]],["parent/1413",[705,3.233]],["name/1414",[193,50.888]],["parent/1414",[705,3.233]],["name/1415",[194,50.888]],["parent/1415",[705,3.233]],["name/1416",[195,50.888]],["parent/1416",[705,3.233]],["name/1417",[197,50.888]],["parent/1417",[705,3.233]],["name/1418",[198,50.888]],["parent/1418",[705,3.233]],["name/1419",[199,51.705]],["parent/1419",[705,3.233]],["name/1420",[200,51.705]],["parent/1420",[705,3.233]],["name/1421",[128,16.909]],["parent/1421",[812,7.913]],["name/1422",[202,51.705]],["parent/1422",[813,5.301]],["name/1423",[204,43.293]],["parent/1423",[813,5.301]],["name/1424",[205,50.503]],["parent/1424",[813,5.301]],["name/1425",[206,44.055]],["parent/1425",[813,5.301]],["name/1426",[207,51.705]],["parent/1426",[813,5.301]],["name/1427",[208,51.705]],["parent/1427",[813,5.301]],["name/1428",[209,51.705]],["parent/1428",[813,5.301]],["name/1429",[210,50.888]],["parent/1429",[813,5.301]],["name/1430",[211,51.705]],["parent/1430",[813,5.301]],["name/1431",[212,50.888]],["parent/1431",[813,5.301]],["name/1432",[213,51.705]],["parent/1432",[813,5.301]],["name/1433",[214,51.705]],["parent/1433",[813,5.301]],["name/1434",[215,51.705]],["parent/1434",[813,5.301]],["name/1435",[216,51.705]],["parent/1435",[813,5.301]],["name/1436",[174,44.459]],["parent/1436",[813,5.301]],["name/1437",[217,51.705]],["parent/1437",[813,5.301]],["name/1438",[218,51.705]],["parent/1438",[813,5.301]],["name/1439",[219,51.705]],["parent/1439",[813,5.301]],["name/1440",[220,48.159]],["parent/1440",[813,5.301]],["name/1441",[221,51.705]],["parent/1441",[813,5.301]],["name/1442",[222,51.705]],["parent/1442",[705,3.233]],["name/1443",[128,16.909]],["parent/1443",[814,7.913]],["name/1444",[206,44.055]],["parent/1444",[815,6.616]],["name/1445",[225,51.705]],["parent/1445",[815,6.616]],["name/1446",[204,43.293]],["parent/1446",[815,6.616]],["name/1447",[226,51.705]],["parent/1447",[815,6.616]],["name/1448",[227,49.098]],["parent/1448",[815,6.616]],["name/1449",[228,50.503]],["parent/1449",[613,5.254]],["name/1450",[229,50.503]],["parent/1450",[613,5.254]],["name/1451",[816,79.22]],["parent/1451",[613,5.254]],["name/1452",[2,50.503]],["parent/1452",[817,3.863]],["name/1453",[818,74.112]],["parent/1453",[817,3.863]],["name/1454",[819,79.22]],["parent/1454",[817,3.863]],["name/1455",[820,74.112]],["parent/1455",[817,3.863]],["name/1456",[821,74.112]],["parent/1456",[817,3.863]],["name/1457",[822,74.112]],["parent/1457",[817,3.863]],["name/1458",[823,79.22]],["parent/1458",[817,3.863]],["name/1459",[824,79.22]],["parent/1459",[817,3.863]],["name/1460",[825,79.22]],["parent/1460",[817,3.863]],["name/1461",[826,79.22]],["parent/1461",[817,3.863]],["name/1462",[827,79.22]],["parent/1462",[817,3.863]],["name/1463",[707,74.112]],["parent/1463",[817,3.863]],["name/1464",[828,79.22]],["parent/1464",[817,3.863]],["name/1465",[829,79.22]],["parent/1465",[817,3.863]],["name/1466",[830,79.22]],["parent/1466",[817,3.863]],["name/1467",[831,79.22]],["parent/1467",[817,3.863]],["name/1468",[832,79.22]],["parent/1468",[817,3.863]],["name/1469",[833,79.22]],["parent/1469",[817,3.863]],["name/1470",[55,49.776]],["parent/1470",[817,3.863]],["name/1471",[834,74.112]],["parent/1471",[817,3.863]],["name/1472",[835,79.22]],["parent/1472",[817,3.863]],["name/1473",[836,79.22]],["parent/1473",[817,3.863]],["name/1474",[837,79.22]],["parent/1474",[817,3.863]],["name/1475",[838,79.22]],["parent/1475",[817,3.863]],["name/1476",[839,79.22]],["parent/1476",[817,3.863]],["name/1477",[840,79.22]],["parent/1477",[817,3.863]],["name/1478",[841,79.22]],["parent/1478",[817,3.863]],["name/1479",[842,79.22]],["parent/1479",[817,3.863]],["name/1480",[843,74.112]],["parent/1480",[817,3.863]],["name/1481",[844,74.112]],["parent/1481",[817,3.863]],["name/1482",[845,79.22]],["parent/1482",[817,3.863]],["name/1483",[846,79.22]],["parent/1483",[817,3.863]],["name/1484",[847,79.22]],["parent/1484",[817,3.863]],["name/1485",[128,16.909]],["parent/1485",[848,7.913]],["name/1486",[101,50.503]],["parent/1486",[817,3.863]],["name/1487",[409,51.705]],["parent/1487",[817,3.863]],["name/1488",[410,51.705]],["parent/1488",[817,3.863]],["name/1489",[128,16.909]],["parent/1489",[849,7.913]],["name/1490",[140,50.503]],["parent/1490",[817,3.863]],["name/1491",[128,16.909]],["parent/1491",[850,7.913]],["name/1492",[413,51.705]],["parent/1492",[817,3.863]],["name/1493",[128,16.909]],["parent/1493",[851,7.913]],["name/1494",[142,50.503]],["parent/1494",[817,3.863]],["name/1495",[128,16.909]],["parent/1495",[852,7.913]],["name/1496",[144,50.503]],["parent/1496",[817,3.863]],["name/1497",[128,16.909]],["parent/1497",[853,7.913]],["name/1498",[146,50.503]],["parent/1498",[817,3.863]],["name/1499",[128,16.909]],["parent/1499",[854,7.913]],["name/1500",[148,50.503]],["parent/1500",[817,3.863]],["name/1501",[128,16.909]],["parent/1501",[855,7.913]],["name/1502",[150,50.503]],["parent/1502",[817,3.863]],["name/1503",[128,16.909]],["parent/1503",[856,7.913]],["name/1504",[152,50.503]],["parent/1504",[817,3.863]],["name/1505",[128,16.909]],["parent/1505",[857,7.913]],["name/1506",[154,50.503]],["parent/1506",[817,3.863]],["name/1507",[128,16.909]],["parent/1507",[858,7.913]],["name/1508",[156,50.503]],["parent/1508",[817,3.863]],["name/1509",[128,16.909]],["parent/1509",[859,7.913]],["name/1510",[158,50.503]],["parent/1510",[817,3.863]],["name/1511",[128,16.909]],["parent/1511",[860,7.913]],["name/1512",[196,50.503]],["parent/1512",[817,3.863]],["name/1513",[128,16.909]],["parent/1513",[861,7.913]],["name/1514",[160,50.503]],["parent/1514",[817,3.863]],["name/1515",[128,16.909]],["parent/1515",[862,7.913]],["name/1516",[425,51.705]],["parent/1516",[817,3.863]],["name/1517",[128,16.909]],["parent/1517",[863,7.913]],["name/1518",[427,51.705]],["parent/1518",[817,3.863]],["name/1519",[128,16.909]],["parent/1519",[864,7.913]],["name/1520",[429,51.705]],["parent/1520",[817,3.863]],["name/1521",[430,51.705]],["parent/1521",[817,3.863]],["name/1522",[162,50.888]],["parent/1522",[817,3.863]],["name/1523",[163,50.888]],["parent/1523",[817,3.863]],["name/1524",[164,50.888]],["parent/1524",[817,3.863]],["name/1525",[165,51.705]],["parent/1525",[817,3.863]],["name/1526",[166,51.705]],["parent/1526",[817,3.863]],["name/1527",[167,50.888]],["parent/1527",[817,3.863]],["name/1528",[168,50.888]],["parent/1528",[817,3.863]],["name/1529",[169,50.888]],["parent/1529",[817,3.863]],["name/1530",[170,50.888]],["parent/1530",[817,3.863]],["name/1531",[128,16.909]],["parent/1531",[865,7.913]],["name/1532",[172,50.888]],["parent/1532",[817,3.863]],["name/1533",[128,16.909]],["parent/1533",[866,7.913]],["name/1534",[174,44.459]],["parent/1534",[817,3.863]],["name/1535",[128,16.909]],["parent/1535",[867,7.913]],["name/1536",[178,50.888]],["parent/1536",[817,3.863]],["name/1537",[128,16.909]],["parent/1537",[868,7.913]],["name/1538",[180,50.888]],["parent/1538",[817,3.863]],["name/1539",[181,50.888]],["parent/1539",[817,3.863]],["name/1540",[182,50.888]],["parent/1540",[817,3.863]],["name/1541",[183,50.888]],["parent/1541",[817,3.863]],["name/1542",[184,50.888]],["parent/1542",[817,3.863]],["name/1543",[185,50.888]],["parent/1543",[817,3.863]],["name/1544",[186,50.503]],["parent/1544",[817,3.863]],["name/1545",[187,50.888]],["parent/1545",[817,3.863]],["name/1546",[188,50.888]],["parent/1546",[817,3.863]],["name/1547",[189,50.888]],["parent/1547",[817,3.863]],["name/1548",[190,50.888]],["parent/1548",[817,3.863]],["name/1549",[191,50.888]],["parent/1549",[817,3.863]],["name/1550",[192,50.888]],["parent/1550",[817,3.863]],["name/1551",[193,50.888]],["parent/1551",[817,3.863]],["name/1552",[194,50.888]],["parent/1552",[817,3.863]],["name/1553",[195,50.888]],["parent/1553",[817,3.863]],["name/1554",[197,50.888]],["parent/1554",[817,3.863]],["name/1555",[198,50.888]],["parent/1555",[817,3.863]],["name/1556",[199,51.705]],["parent/1556",[817,3.863]],["name/1557",[200,51.705]],["parent/1557",[817,3.863]],["name/1558",[128,16.909]],["parent/1558",[869,7.913]],["name/1559",[202,51.705]],["parent/1559",[870,5.301]],["name/1560",[204,43.293]],["parent/1560",[870,5.301]],["name/1561",[205,50.503]],["parent/1561",[870,5.301]],["name/1562",[206,44.055]],["parent/1562",[870,5.301]],["name/1563",[207,51.705]],["parent/1563",[870,5.301]],["name/1564",[208,51.705]],["parent/1564",[870,5.301]],["name/1565",[209,51.705]],["parent/1565",[870,5.301]],["name/1566",[210,50.888]],["parent/1566",[870,5.301]],["name/1567",[211,51.705]],["parent/1567",[870,5.301]],["name/1568",[212,50.888]],["parent/1568",[870,5.301]],["name/1569",[213,51.705]],["parent/1569",[870,5.301]],["name/1570",[214,51.705]],["parent/1570",[870,5.301]],["name/1571",[215,51.705]],["parent/1571",[870,5.301]],["name/1572",[216,51.705]],["parent/1572",[870,5.301]],["name/1573",[174,44.459]],["parent/1573",[870,5.301]],["name/1574",[217,51.705]],["parent/1574",[870,5.301]],["name/1575",[218,51.705]],["parent/1575",[870,5.301]],["name/1576",[219,51.705]],["parent/1576",[870,5.301]],["name/1577",[220,48.159]],["parent/1577",[870,5.301]],["name/1578",[221,51.705]],["parent/1578",[870,5.301]],["name/1579",[222,51.705]],["parent/1579",[817,3.863]],["name/1580",[128,16.909]],["parent/1580",[871,7.913]],["name/1581",[206,44.055]],["parent/1581",[872,6.616]],["name/1582",[225,51.705]],["parent/1582",[872,6.616]],["name/1583",[204,43.293]],["parent/1583",[872,6.616]],["name/1584",[226,51.705]],["parent/1584",[872,6.616]],["name/1585",[227,49.098]],["parent/1585",[872,6.616]],["name/1586",[228,50.503]],["parent/1586",[613,5.254]],["name/1587",[229,50.503]],["parent/1587",[613,5.254]],["name/1588",[873,79.22]],["parent/1588",[613,5.254]],["name/1589",[2,50.503]],["parent/1589",[874,4.188]],["name/1590",[875,79.22]],["parent/1590",[874,4.188]],["name/1591",[55,49.776]],["parent/1591",[874,4.188]],["name/1592",[470,66.227]],["parent/1592",[874,4.188]],["name/1593",[128,16.909]],["parent/1593",[876,7.913]],["name/1594",[162,50.888]],["parent/1594",[874,4.188]],["name/1595",[163,50.888]],["parent/1595",[874,4.188]],["name/1596",[164,50.888]],["parent/1596",[874,4.188]],["name/1597",[165,51.705]],["parent/1597",[874,4.188]],["name/1598",[166,51.705]],["parent/1598",[874,4.188]],["name/1599",[167,50.888]],["parent/1599",[874,4.188]],["name/1600",[168,50.888]],["parent/1600",[874,4.188]],["name/1601",[169,50.888]],["parent/1601",[874,4.188]],["name/1602",[170,50.888]],["parent/1602",[874,4.188]],["name/1603",[128,16.909]],["parent/1603",[877,7.913]],["name/1604",[172,50.888]],["parent/1604",[874,4.188]],["name/1605",[128,16.909]],["parent/1605",[878,7.913]],["name/1606",[174,44.459]],["parent/1606",[874,4.188]],["name/1607",[128,16.909]],["parent/1607",[879,7.913]],["name/1608",[176,52.14]],["parent/1608",[874,4.188]],["name/1609",[128,16.909]],["parent/1609",[880,7.913]],["name/1610",[178,50.888]],["parent/1610",[874,4.188]],["name/1611",[128,16.909]],["parent/1611",[881,7.913]],["name/1612",[180,50.888]],["parent/1612",[874,4.188]],["name/1613",[181,50.888]],["parent/1613",[874,4.188]],["name/1614",[182,50.888]],["parent/1614",[874,4.188]],["name/1615",[183,50.888]],["parent/1615",[874,4.188]],["name/1616",[184,50.888]],["parent/1616",[874,4.188]],["name/1617",[185,50.888]],["parent/1617",[874,4.188]],["name/1618",[186,50.503]],["parent/1618",[874,4.188]],["name/1619",[187,50.888]],["parent/1619",[874,4.188]],["name/1620",[188,50.888]],["parent/1620",[874,4.188]],["name/1621",[189,50.888]],["parent/1621",[874,4.188]],["name/1622",[190,50.888]],["parent/1622",[874,4.188]],["name/1623",[191,50.888]],["parent/1623",[874,4.188]],["name/1624",[192,50.888]],["parent/1624",[874,4.188]],["name/1625",[193,50.888]],["parent/1625",[874,4.188]],["name/1626",[194,50.888]],["parent/1626",[874,4.188]],["name/1627",[195,50.888]],["parent/1627",[874,4.188]],["name/1628",[196,50.503]],["parent/1628",[874,4.188]],["name/1629",[197,50.888]],["parent/1629",[874,4.188]],["name/1630",[198,50.888]],["parent/1630",[874,4.188]],["name/1631",[199,51.705]],["parent/1631",[874,4.188]],["name/1632",[200,51.705]],["parent/1632",[874,4.188]],["name/1633",[128,16.909]],["parent/1633",[882,7.913]],["name/1634",[202,51.705]],["parent/1634",[883,5.301]],["name/1635",[204,43.293]],["parent/1635",[883,5.301]],["name/1636",[205,50.503]],["parent/1636",[883,5.301]],["name/1637",[206,44.055]],["parent/1637",[883,5.301]],["name/1638",[207,51.705]],["parent/1638",[883,5.301]],["name/1639",[208,51.705]],["parent/1639",[883,5.301]],["name/1640",[209,51.705]],["parent/1640",[883,5.301]],["name/1641",[210,50.888]],["parent/1641",[883,5.301]],["name/1642",[211,51.705]],["parent/1642",[883,5.301]],["name/1643",[212,50.888]],["parent/1643",[883,5.301]],["name/1644",[213,51.705]],["parent/1644",[883,5.301]],["name/1645",[214,51.705]],["parent/1645",[883,5.301]],["name/1646",[215,51.705]],["parent/1646",[883,5.301]],["name/1647",[216,51.705]],["parent/1647",[883,5.301]],["name/1648",[174,44.459]],["parent/1648",[883,5.301]],["name/1649",[217,51.705]],["parent/1649",[883,5.301]],["name/1650",[218,51.705]],["parent/1650",[883,5.301]],["name/1651",[219,51.705]],["parent/1651",[883,5.301]],["name/1652",[220,48.159]],["parent/1652",[883,5.301]],["name/1653",[221,51.705]],["parent/1653",[883,5.301]],["name/1654",[222,51.705]],["parent/1654",[874,4.188]],["name/1655",[128,16.909]],["parent/1655",[884,7.913]],["name/1656",[206,44.055]],["parent/1656",[885,6.616]],["name/1657",[225,51.705]],["parent/1657",[885,6.616]],["name/1658",[204,43.293]],["parent/1658",[885,6.616]],["name/1659",[226,51.705]],["parent/1659",[885,6.616]],["name/1660",[227,49.098]],["parent/1660",[885,6.616]],["name/1661",[886,79.22]],["parent/1661",[874,4.188]],["name/1662",[254,58.018]],["parent/1662",[874,4.188]],["name/1663",[128,16.909]],["parent/1663",[887,7.913]],["name/1664",[646,61.874]],["parent/1664",[874,4.188]],["name/1665",[128,16.909]],["parent/1665",[888,7.913]],["name/1666",[637,63.126]],["parent/1666",[874,4.188]],["name/1667",[128,16.909]],["parent/1667",[889,7.913]],["name/1668",[101,50.503]],["parent/1668",[874,4.188]],["name/1669",[409,51.705]],["parent/1669",[874,4.188]],["name/1670",[410,51.705]],["parent/1670",[874,4.188]],["name/1671",[128,16.909]],["parent/1671",[890,7.913]],["name/1672",[140,50.503]],["parent/1672",[874,4.188]],["name/1673",[128,16.909]],["parent/1673",[891,7.913]],["name/1674",[413,51.705]],["parent/1674",[874,4.188]],["name/1675",[128,16.909]],["parent/1675",[892,7.913]],["name/1676",[142,50.503]],["parent/1676",[874,4.188]],["name/1677",[128,16.909]],["parent/1677",[893,7.913]],["name/1678",[144,50.503]],["parent/1678",[874,4.188]],["name/1679",[128,16.909]],["parent/1679",[894,7.913]],["name/1680",[146,50.503]],["parent/1680",[874,4.188]],["name/1681",[128,16.909]],["parent/1681",[895,7.913]],["name/1682",[148,50.503]],["parent/1682",[874,4.188]],["name/1683",[128,16.909]],["parent/1683",[896,7.913]],["name/1684",[150,50.503]],["parent/1684",[874,4.188]],["name/1685",[128,16.909]],["parent/1685",[897,7.913]],["name/1686",[152,50.503]],["parent/1686",[874,4.188]],["name/1687",[128,16.909]],["parent/1687",[898,7.913]],["name/1688",[154,50.503]],["parent/1688",[874,4.188]],["name/1689",[128,16.909]],["parent/1689",[899,7.913]],["name/1690",[156,50.503]],["parent/1690",[874,4.188]],["name/1691",[128,16.909]],["parent/1691",[900,7.913]],["name/1692",[158,50.503]],["parent/1692",[874,4.188]],["name/1693",[128,16.909]],["parent/1693",[901,7.913]],["name/1694",[160,50.503]],["parent/1694",[874,4.188]],["name/1695",[128,16.909]],["parent/1695",[902,7.913]],["name/1696",[425,51.705]],["parent/1696",[874,4.188]],["name/1697",[128,16.909]],["parent/1697",[903,7.913]],["name/1698",[427,51.705]],["parent/1698",[874,4.188]],["name/1699",[128,16.909]],["parent/1699",[904,7.913]],["name/1700",[429,51.705]],["parent/1700",[874,4.188]],["name/1701",[430,51.705]],["parent/1701",[874,4.188]],["name/1702",[228,50.503]],["parent/1702",[613,5.254]],["name/1703",[229,50.503]],["parent/1703",[613,5.254]],["name/1704",[905,79.22]],["parent/1704",[613,5.254]],["name/1705",[2,50.503]],["parent/1705",[906,4.483]],["name/1706",[907,79.22]],["parent/1706",[906,4.483]],["name/1707",[908,79.22]],["parent/1707",[906,4.483]],["name/1708",[909,79.22]],["parent/1708",[906,4.483]],["name/1709",[910,79.22]],["parent/1709",[906,4.483]],["name/1710",[911,79.22]],["parent/1710",[906,4.483]],["name/1711",[912,79.22]],["parent/1711",[906,4.483]],["name/1712",[913,79.22]],["parent/1712",[906,4.483]],["name/1713",[914,79.22]],["parent/1713",[906,4.483]],["name/1714",[915,79.22]],["parent/1714",[906,4.483]],["name/1715",[916,79.22]],["parent/1715",[906,4.483]],["name/1716",[917,79.22]],["parent/1716",[906,4.483]],["name/1717",[918,79.22]],["parent/1717",[906,4.483]],["name/1718",[919,79.22]],["parent/1718",[906,4.483]],["name/1719",[920,79.22]],["parent/1719",[906,4.483]],["name/1720",[55,49.776]],["parent/1720",[906,4.483]],["name/1721",[921,79.22]],["parent/1721",[906,4.483]],["name/1722",[922,79.22]],["parent/1722",[906,4.483]],["name/1723",[923,79.22]],["parent/1723",[906,4.483]],["name/1724",[924,79.22]],["parent/1724",[906,4.483]],["name/1725",[925,79.22]],["parent/1725",[906,4.483]],["name/1726",[926,79.22]],["parent/1726",[906,4.483]],["name/1727",[927,79.22]],["parent/1727",[906,4.483]],["name/1728",[928,79.22]],["parent/1728",[906,4.483]],["name/1729",[929,79.22]],["parent/1729",[906,4.483]],["name/1730",[930,79.22]],["parent/1730",[906,4.483]],["name/1731",[101,50.503]],["parent/1731",[906,4.483]],["name/1732",[409,51.705]],["parent/1732",[906,4.483]],["name/1733",[410,51.705]],["parent/1733",[906,4.483]],["name/1734",[128,16.909]],["parent/1734",[931,7.913]],["name/1735",[140,50.503]],["parent/1735",[906,4.483]],["name/1736",[128,16.909]],["parent/1736",[932,7.913]],["name/1737",[413,51.705]],["parent/1737",[906,4.483]],["name/1738",[128,16.909]],["parent/1738",[933,7.913]],["name/1739",[142,50.503]],["parent/1739",[906,4.483]],["name/1740",[128,16.909]],["parent/1740",[934,7.913]],["name/1741",[144,50.503]],["parent/1741",[906,4.483]],["name/1742",[128,16.909]],["parent/1742",[935,7.913]],["name/1743",[146,50.503]],["parent/1743",[906,4.483]],["name/1744",[128,16.909]],["parent/1744",[936,7.913]],["name/1745",[148,50.503]],["parent/1745",[906,4.483]],["name/1746",[128,16.909]],["parent/1746",[937,7.913]],["name/1747",[150,50.503]],["parent/1747",[906,4.483]],["name/1748",[128,16.909]],["parent/1748",[938,7.913]],["name/1749",[152,50.503]],["parent/1749",[906,4.483]],["name/1750",[128,16.909]],["parent/1750",[939,7.913]],["name/1751",[154,50.503]],["parent/1751",[906,4.483]],["name/1752",[128,16.909]],["parent/1752",[940,7.913]],["name/1753",[156,50.503]],["parent/1753",[906,4.483]],["name/1754",[128,16.909]],["parent/1754",[941,7.913]],["name/1755",[158,50.503]],["parent/1755",[906,4.483]],["name/1756",[128,16.909]],["parent/1756",[942,7.913]],["name/1757",[196,50.503]],["parent/1757",[906,4.483]],["name/1758",[128,16.909]],["parent/1758",[943,7.913]],["name/1759",[160,50.503]],["parent/1759",[906,4.483]],["name/1760",[128,16.909]],["parent/1760",[944,7.913]],["name/1761",[425,51.705]],["parent/1761",[906,4.483]],["name/1762",[128,16.909]],["parent/1762",[945,7.913]],["name/1763",[427,51.705]],["parent/1763",[906,4.483]],["name/1764",[128,16.909]],["parent/1764",[946,7.913]],["name/1765",[429,51.705]],["parent/1765",[906,4.483]],["name/1766",[430,51.705]],["parent/1766",[906,4.483]],["name/1767",[228,50.503]],["parent/1767",[613,5.254]],["name/1768",[229,50.503]],["parent/1768",[613,5.254]],["name/1769",[947,63.126]],["parent/1769",[]],["name/1770",[948,79.22]],["parent/1770",[947,6.306]],["name/1771",[2,50.503]],["parent/1771",[949,3.764]],["name/1772",[950,79.22]],["parent/1772",[949,3.764]],["name/1773",[951,79.22]],["parent/1773",[949,3.764]],["name/1774",[55,49.776]],["parent/1774",[949,3.764]],["name/1775",[101,50.503]],["parent/1775",[949,3.764]],["name/1776",[140,50.503]],["parent/1776",[949,3.764]],["name/1777",[128,16.909]],["parent/1777",[952,7.913]],["name/1778",[142,50.503]],["parent/1778",[949,3.764]],["name/1779",[128,16.909]],["parent/1779",[953,7.913]],["name/1780",[144,50.503]],["parent/1780",[949,3.764]],["name/1781",[128,16.909]],["parent/1781",[954,7.913]],["name/1782",[146,50.503]],["parent/1782",[949,3.764]],["name/1783",[128,16.909]],["parent/1783",[955,7.913]],["name/1784",[148,50.503]],["parent/1784",[949,3.764]],["name/1785",[128,16.909]],["parent/1785",[956,7.913]],["name/1786",[150,50.503]],["parent/1786",[949,3.764]],["name/1787",[128,16.909]],["parent/1787",[957,7.913]],["name/1788",[152,50.503]],["parent/1788",[949,3.764]],["name/1789",[128,16.909]],["parent/1789",[958,7.913]],["name/1790",[154,50.503]],["parent/1790",[949,3.764]],["name/1791",[128,16.909]],["parent/1791",[959,7.913]],["name/1792",[156,50.503]],["parent/1792",[949,3.764]],["name/1793",[128,16.909]],["parent/1793",[960,7.913]],["name/1794",[158,50.503]],["parent/1794",[949,3.764]],["name/1795",[128,16.909]],["parent/1795",[961,7.913]],["name/1796",[160,50.503]],["parent/1796",[949,3.764]],["name/1797",[128,16.909]],["parent/1797",[962,7.913]],["name/1798",[162,50.888]],["parent/1798",[949,3.764]],["name/1799",[163,50.888]],["parent/1799",[949,3.764]],["name/1800",[164,50.888]],["parent/1800",[949,3.764]],["name/1801",[167,50.888]],["parent/1801",[949,3.764]],["name/1802",[168,50.888]],["parent/1802",[949,3.764]],["name/1803",[169,50.888]],["parent/1803",[949,3.764]],["name/1804",[170,50.888]],["parent/1804",[949,3.764]],["name/1805",[128,16.909]],["parent/1805",[963,7.913]],["name/1806",[172,50.888]],["parent/1806",[949,3.764]],["name/1807",[128,16.909]],["parent/1807",[964,7.913]],["name/1808",[174,44.459]],["parent/1808",[949,3.764]],["name/1809",[128,16.909]],["parent/1809",[965,7.913]],["name/1810",[178,50.888]],["parent/1810",[949,3.764]],["name/1811",[128,16.909]],["parent/1811",[966,7.913]],["name/1812",[180,50.888]],["parent/1812",[949,3.764]],["name/1813",[181,50.888]],["parent/1813",[949,3.764]],["name/1814",[182,50.888]],["parent/1814",[949,3.764]],["name/1815",[183,50.888]],["parent/1815",[949,3.764]],["name/1816",[184,50.888]],["parent/1816",[949,3.764]],["name/1817",[185,50.888]],["parent/1817",[949,3.764]],["name/1818",[186,50.503]],["parent/1818",[949,3.764]],["name/1819",[187,50.888]],["parent/1819",[949,3.764]],["name/1820",[188,50.888]],["parent/1820",[949,3.764]],["name/1821",[189,50.888]],["parent/1821",[949,3.764]],["name/1822",[190,50.888]],["parent/1822",[949,3.764]],["name/1823",[191,50.888]],["parent/1823",[949,3.764]],["name/1824",[192,50.888]],["parent/1824",[949,3.764]],["name/1825",[193,50.888]],["parent/1825",[949,3.764]],["name/1826",[194,50.888]],["parent/1826",[949,3.764]],["name/1827",[195,50.888]],["parent/1827",[949,3.764]],["name/1828",[196,50.503]],["parent/1828",[949,3.764]],["name/1829",[197,50.888]],["parent/1829",[949,3.764]],["name/1830",[198,50.888]],["parent/1830",[949,3.764]],["name/1831",[967,79.22]],["parent/1831",[949,3.764]],["name/1832",[968,79.22]],["parent/1832",[949,3.764]],["name/1833",[969,79.22]],["parent/1833",[949,3.764]],["name/1834",[970,79.22]],["parent/1834",[949,3.764]],["name/1835",[128,16.909]],["parent/1835",[971,7.913]],["name/1836",[972,79.22]],["parent/1836",[949,3.764]],["name/1837",[128,16.909]],["parent/1837",[973,7.913]],["name/1838",[974,79.22]],["parent/1838",[949,3.764]],["name/1839",[128,16.909]],["parent/1839",[975,7.913]],["name/1840",[976,79.22]],["parent/1840",[949,3.764]],["name/1841",[128,16.909]],["parent/1841",[977,7.913]],["name/1842",[978,70.747]],["parent/1842",[949,3.764]],["name/1843",[128,16.909]],["parent/1843",[979,7.913]],["name/1844",[980,79.22]],["parent/1844",[981,7.913]],["name/1845",[982,79.22]],["parent/1845",[949,3.764]],["name/1846",[128,16.909]],["parent/1846",[983,7.913]],["name/1847",[978,70.747]],["parent/1847",[984,7.913]],["name/1848",[985,79.22]],["parent/1848",[949,3.764]],["name/1849",[128,16.909]],["parent/1849",[986,7.913]],["name/1850",[987,79.22]],["parent/1850",[988,7.067]],["name/1851",[978,70.747]],["parent/1851",[988,7.067]],["name/1852",[989,79.22]],["parent/1852",[988,7.067]],["name/1853",[990,79.22]],["parent/1853",[949,3.764]],["name/1854",[128,16.909]],["parent/1854",[991,7.913]],["name/1855",[992,79.22]],["parent/1855",[949,3.764]],["name/1856",[128,16.909]],["parent/1856",[993,7.913]],["name/1857",[994,79.22]],["parent/1857",[949,3.764]],["name/1858",[128,16.909]],["parent/1858",[995,7.913]],["name/1859",[996,79.22]],["parent/1859",[949,3.764]],["name/1860",[128,16.909]],["parent/1860",[997,7.913]],["name/1861",[998,79.22]],["parent/1861",[949,3.764]],["name/1862",[128,16.909]],["parent/1862",[999,7.913]],["name/1863",[220,48.159]],["parent/1863",[1000,6.816]],["name/1864",[496,64.557]],["parent/1864",[1000,6.816]],["name/1865",[1001,74.112]],["parent/1865",[1000,6.816]],["name/1866",[1002,74.112]],["parent/1866",[1000,6.816]],["name/1867",[637,63.126]],["parent/1867",[949,3.764]],["name/1868",[128,16.909]],["parent/1868",[1003,7.913]],["name/1869",[1004,79.22]],["parent/1869",[949,3.764]],["name/1870",[128,16.909]],["parent/1870",[1005,7.913]],["name/1871",[1006,79.22]],["parent/1871",[949,3.764]],["name/1872",[128,16.909]],["parent/1872",[1007,7.913]],["name/1873",[254,58.018]],["parent/1873",[949,3.764]],["name/1874",[128,16.909]],["parent/1874",[1008,7.913]],["name/1875",[1009,79.22]],["parent/1875",[949,3.764]],["name/1876",[128,16.909]],["parent/1876",[1010,7.913]],["name/1877",[1011,79.22]],["parent/1877",[949,3.764]],["name/1878",[128,16.909]],["parent/1878",[1012,7.913]],["name/1879",[1013,79.22]],["parent/1879",[949,3.764]],["name/1880",[128,16.909]],["parent/1880",[1014,7.913]],["name/1881",[1015,79.22]],["parent/1881",[1016,6.616]],["name/1882",[220,48.159]],["parent/1882",[1016,6.616]],["name/1883",[496,64.557]],["parent/1883",[1016,6.616]],["name/1884",[1001,74.112]],["parent/1884",[1016,6.616]],["name/1885",[1002,74.112]],["parent/1885",[1016,6.616]],["name/1886",[1017,79.22]],["parent/1886",[949,3.764]],["name/1887",[128,16.909]],["parent/1887",[1018,7.913]],["name/1888",[1019,79.22]],["parent/1888",[949,3.764]],["name/1889",[128,16.909]],["parent/1889",[1020,7.913]],["name/1890",[227,49.098]],["parent/1890",[1021,6.816]],["name/1891",[1022,74.112]],["parent/1891",[1021,6.816]],["name/1892",[1023,70.747]],["parent/1892",[1021,6.816]],["name/1893",[1024,70.747]],["parent/1893",[1021,6.816]],["name/1894",[1024,70.747]],["parent/1894",[949,3.764]],["name/1895",[1025,79.22]],["parent/1895",[949,3.764]],["name/1896",[128,16.909]],["parent/1896",[1026,7.913]],["name/1897",[227,49.098]],["parent/1897",[1027,6.816]],["name/1898",[1022,74.112]],["parent/1898",[1027,6.816]],["name/1899",[1023,70.747]],["parent/1899",[1027,6.816]],["name/1900",[1024,70.747]],["parent/1900",[1027,6.816]],["name/1901",[1028,79.22]],["parent/1901",[949,3.764]],["name/1902",[128,16.909]],["parent/1902",[1029,7.913]],["name/1903",[1030,79.22]],["parent/1903",[1031,6.449]],["name/1904",[1032,74.112]],["parent/1904",[1031,6.449]],["name/1905",[1033,79.22]],["parent/1905",[1031,6.449]],["name/1906",[1034,66.227]],["parent/1906",[1031,6.449]],["name/1907",[1035,70.747]],["parent/1907",[1031,6.449]],["name/1908",[1036,68.234]],["parent/1908",[1031,6.449]],["name/1909",[1037,79.22]],["parent/1909",[949,3.764]],["name/1910",[128,16.909]],["parent/1910",[1038,7.913]],["name/1911",[186,50.503]],["parent/1911",[1039,6.306]],["name/1912",[1040,79.22]],["parent/1912",[1039,6.306]],["name/1913",[1041,74.112]],["parent/1913",[1039,6.306]],["name/1914",[1042,74.112]],["parent/1914",[1039,6.306]],["name/1915",[1032,74.112]],["parent/1915",[1039,6.306]],["name/1916",[1043,74.112]],["parent/1916",[1039,6.306]],["name/1917",[1044,74.112]],["parent/1917",[1039,6.306]],["name/1918",[1023,70.747]],["parent/1918",[949,3.764]],["name/1919",[1045,79.22]],["parent/1919",[949,3.764]],["name/1920",[1046,79.22]],["parent/1920",[949,3.764]],["name/1921",[128,16.909]],["parent/1921",[1047,7.913]],["name/1922",[1048,74.112]],["parent/1922",[1049,7.067]],["name/1923",[1050,63.126]],["parent/1923",[1049,7.067]],["name/1924",[1051,74.112]],["parent/1924",[1049,7.067]],["name/1925",[1052,79.22]],["parent/1925",[949,3.764]],["name/1926",[128,16.909]],["parent/1926",[1053,7.913]],["name/1927",[212,50.888]],["parent/1927",[1054,6.816]],["name/1928",[210,50.888]],["parent/1928",[1054,6.816]],["name/1929",[1050,63.126]],["parent/1929",[1054,6.816]],["name/1930",[1051,74.112]],["parent/1930",[1054,6.816]],["name/1931",[1055,79.22]],["parent/1931",[949,3.764]],["name/1932",[128,16.909]],["parent/1932",[1056,7.913]],["name/1933",[1048,74.112]],["parent/1933",[1057,7.067]],["name/1934",[1050,63.126]],["parent/1934",[1057,7.067]],["name/1935",[1058,70.747]],["parent/1935",[1057,7.067]],["name/1936",[1059,79.22]],["parent/1936",[949,3.764]],["name/1937",[1060,79.22]],["parent/1937",[949,3.764]],["name/1938",[128,16.909]],["parent/1938",[1061,7.913]],["name/1939",[1062,79.22]],["parent/1939",[949,3.764]],["name/1940",[128,16.909]],["parent/1940",[1063,7.913]],["name/1941",[212,50.888]],["parent/1941",[1064,6.816]],["name/1942",[210,50.888]],["parent/1942",[1064,6.816]],["name/1943",[1050,63.126]],["parent/1943",[1064,6.816]],["name/1944",[1058,70.747]],["parent/1944",[1064,6.816]],["name/1945",[1065,79.22]],["parent/1945",[949,3.764]],["name/1946",[128,16.909]],["parent/1946",[1066,7.913]],["name/1947",[1067,79.22]],["parent/1947",[1068,7.067]],["name/1948",[1050,63.126]],["parent/1948",[1068,7.067]],["name/1949",[1058,70.747]],["parent/1949",[1068,7.067]],["name/1950",[1043,74.112]],["parent/1950",[949,3.764]],["name/1951",[1069,79.22]],["parent/1951",[949,3.764]],["name/1952",[1070,79.22]],["parent/1952",[949,3.764]],["name/1953",[1044,74.112]],["parent/1953",[949,3.764]],["name/1954",[1071,79.22]],["parent/1954",[949,3.764]],["name/1955",[128,16.909]],["parent/1955",[1072,7.913]],["name/1956",[1050,63.126]],["parent/1956",[1073,7.067]],["name/1957",[1074,79.22]],["parent/1957",[1073,7.067]],["name/1958",[1075,79.22]],["parent/1958",[1073,7.067]],["name/1959",[1076,79.22]],["parent/1959",[949,3.764]],["name/1960",[128,16.909]],["parent/1960",[1077,7.913]],["name/1961",[1042,74.112]],["parent/1961",[949,3.764]],["name/1962",[1078,79.22]],["parent/1962",[949,3.764]],["name/1963",[128,16.909]],["parent/1963",[1079,7.913]],["name/1964",[1050,63.126]],["parent/1964",[1080,7.067]],["name/1965",[1041,74.112]],["parent/1965",[1080,7.067]],["name/1966",[1081,79.22]],["parent/1966",[1080,7.067]],["name/1967",[1082,79.22]],["parent/1967",[949,3.764]],["name/1968",[1083,79.22]],["parent/1968",[949,3.764]],["name/1969",[1084,79.22]],["parent/1969",[949,3.764]],["name/1970",[128,16.909]],["parent/1970",[1085,7.913]],["name/1971",[1086,79.22]],["parent/1971",[1087,6.616]],["name/1972",[1088,79.22]],["parent/1972",[1087,6.616]],["name/1973",[1089,79.22]],["parent/1973",[1087,6.616]],["name/1974",[1090,79.22]],["parent/1974",[1087,6.616]],["name/1975",[1091,79.22]],["parent/1975",[1087,6.616]],["name/1976",[1092,70.747]],["parent/1976",[949,3.764]],["name/1977",[128,16.909]],["parent/1977",[1093,7.913]],["name/1978",[1094,79.22]],["parent/1978",[1095,7.913]],["name/1979",[1096,79.22]],["parent/1979",[949,3.764]],["name/1980",[128,16.909]],["parent/1980",[1097,7.913]],["name/1981",[1098,79.22]],["parent/1981",[1099,7.067]],["name/1982",[1100,79.22]],["parent/1982",[1099,7.067]],["name/1983",[1101,79.22]],["parent/1983",[1099,7.067]],["name/1984",[228,50.503]],["parent/1984",[947,6.306]],["name/1985",[229,50.503]],["parent/1985",[947,6.306]],["name/1986",[1102,74.112]],["parent/1986",[947,6.306]],["name/1987",[2,50.503]],["parent/1987",[1103,3.852]],["name/1988",[1104,74.112]],["parent/1988",[1103,3.852]],["name/1989",[1105,74.112]],["parent/1989",[1103,3.852]],["name/1990",[55,49.776]],["parent/1990",[1103,3.852]],["name/1991",[162,50.888]],["parent/1991",[1103,3.852]],["name/1992",[163,50.888]],["parent/1992",[1103,3.852]],["name/1993",[164,50.888]],["parent/1993",[1103,3.852]],["name/1994",[165,51.705]],["parent/1994",[1103,3.852]],["name/1995",[166,51.705]],["parent/1995",[1103,3.852]],["name/1996",[167,50.888]],["parent/1996",[1103,3.852]],["name/1997",[168,50.888]],["parent/1997",[1103,3.852]],["name/1998",[169,50.888]],["parent/1998",[1103,3.852]],["name/1999",[170,50.888]],["parent/1999",[1103,3.852]],["name/2000",[128,16.909]],["parent/2000",[1106,7.913]],["name/2001",[172,50.888]],["parent/2001",[1103,3.852]],["name/2002",[128,16.909]],["parent/2002",[1107,7.913]],["name/2003",[174,44.459]],["parent/2003",[1103,3.852]],["name/2004",[128,16.909]],["parent/2004",[1108,7.913]],["name/2005",[176,52.14]],["parent/2005",[1103,3.852]],["name/2006",[128,16.909]],["parent/2006",[1109,7.913]],["name/2007",[178,50.888]],["parent/2007",[1103,3.852]],["name/2008",[128,16.909]],["parent/2008",[1110,7.913]],["name/2009",[180,50.888]],["parent/2009",[1103,3.852]],["name/2010",[181,50.888]],["parent/2010",[1103,3.852]],["name/2011",[182,50.888]],["parent/2011",[1103,3.852]],["name/2012",[183,50.888]],["parent/2012",[1103,3.852]],["name/2013",[184,50.888]],["parent/2013",[1103,3.852]],["name/2014",[185,50.888]],["parent/2014",[1103,3.852]],["name/2015",[186,50.503]],["parent/2015",[1103,3.852]],["name/2016",[187,50.888]],["parent/2016",[1103,3.852]],["name/2017",[188,50.888]],["parent/2017",[1103,3.852]],["name/2018",[189,50.888]],["parent/2018",[1103,3.852]],["name/2019",[190,50.888]],["parent/2019",[1103,3.852]],["name/2020",[191,50.888]],["parent/2020",[1103,3.852]],["name/2021",[192,50.888]],["parent/2021",[1103,3.852]],["name/2022",[193,50.888]],["parent/2022",[1103,3.852]],["name/2023",[194,50.888]],["parent/2023",[1103,3.852]],["name/2024",[195,50.888]],["parent/2024",[1103,3.852]],["name/2025",[196,50.503]],["parent/2025",[1103,3.852]],["name/2026",[197,50.888]],["parent/2026",[1103,3.852]],["name/2027",[198,50.888]],["parent/2027",[1103,3.852]],["name/2028",[199,51.705]],["parent/2028",[1103,3.852]],["name/2029",[200,51.705]],["parent/2029",[1103,3.852]],["name/2030",[128,16.909]],["parent/2030",[1111,7.913]],["name/2031",[202,51.705]],["parent/2031",[1112,5.301]],["name/2032",[204,43.293]],["parent/2032",[1112,5.301]],["name/2033",[205,50.503]],["parent/2033",[1112,5.301]],["name/2034",[206,44.055]],["parent/2034",[1112,5.301]],["name/2035",[207,51.705]],["parent/2035",[1112,5.301]],["name/2036",[208,51.705]],["parent/2036",[1112,5.301]],["name/2037",[209,51.705]],["parent/2037",[1112,5.301]],["name/2038",[210,50.888]],["parent/2038",[1112,5.301]],["name/2039",[211,51.705]],["parent/2039",[1112,5.301]],["name/2040",[212,50.888]],["parent/2040",[1112,5.301]],["name/2041",[213,51.705]],["parent/2041",[1112,5.301]],["name/2042",[214,51.705]],["parent/2042",[1112,5.301]],["name/2043",[215,51.705]],["parent/2043",[1112,5.301]],["name/2044",[216,51.705]],["parent/2044",[1112,5.301]],["name/2045",[174,44.459]],["parent/2045",[1112,5.301]],["name/2046",[217,51.705]],["parent/2046",[1112,5.301]],["name/2047",[218,51.705]],["parent/2047",[1112,5.301]],["name/2048",[219,51.705]],["parent/2048",[1112,5.301]],["name/2049",[220,48.159]],["parent/2049",[1112,5.301]],["name/2050",[221,51.705]],["parent/2050",[1112,5.301]],["name/2051",[222,51.705]],["parent/2051",[1103,3.852]],["name/2052",[128,16.909]],["parent/2052",[1113,7.913]],["name/2053",[206,44.055]],["parent/2053",[1114,6.616]],["name/2054",[225,51.705]],["parent/2054",[1114,6.616]],["name/2055",[204,43.293]],["parent/2055",[1114,6.616]],["name/2056",[226,51.705]],["parent/2056",[1114,6.616]],["name/2057",[227,49.098]],["parent/2057",[1114,6.616]],["name/2058",[101,50.503]],["parent/2058",[1103,3.852]],["name/2059",[409,51.705]],["parent/2059",[1103,3.852]],["name/2060",[410,51.705]],["parent/2060",[1103,3.852]],["name/2061",[128,16.909]],["parent/2061",[1115,7.913]],["name/2062",[140,50.503]],["parent/2062",[1103,3.852]],["name/2063",[128,16.909]],["parent/2063",[1116,7.913]],["name/2064",[413,51.705]],["parent/2064",[1103,3.852]],["name/2065",[128,16.909]],["parent/2065",[1117,7.913]],["name/2066",[142,50.503]],["parent/2066",[1103,3.852]],["name/2067",[128,16.909]],["parent/2067",[1118,7.913]],["name/2068",[144,50.503]],["parent/2068",[1103,3.852]],["name/2069",[128,16.909]],["parent/2069",[1119,7.913]],["name/2070",[146,50.503]],["parent/2070",[1103,3.852]],["name/2071",[128,16.909]],["parent/2071",[1120,7.913]],["name/2072",[148,50.503]],["parent/2072",[1103,3.852]],["name/2073",[128,16.909]],["parent/2073",[1121,7.913]],["name/2074",[150,50.503]],["parent/2074",[1103,3.852]],["name/2075",[128,16.909]],["parent/2075",[1122,7.913]],["name/2076",[152,50.503]],["parent/2076",[1103,3.852]],["name/2077",[128,16.909]],["parent/2077",[1123,7.913]],["name/2078",[154,50.503]],["parent/2078",[1103,3.852]],["name/2079",[128,16.909]],["parent/2079",[1124,7.913]],["name/2080",[156,50.503]],["parent/2080",[1103,3.852]],["name/2081",[128,16.909]],["parent/2081",[1125,7.913]],["name/2082",[158,50.503]],["parent/2082",[1103,3.852]],["name/2083",[128,16.909]],["parent/2083",[1126,7.913]],["name/2084",[160,50.503]],["parent/2084",[1103,3.852]],["name/2085",[128,16.909]],["parent/2085",[1127,7.913]],["name/2086",[425,51.705]],["parent/2086",[1103,3.852]],["name/2087",[128,16.909]],["parent/2087",[1128,7.913]],["name/2088",[427,51.705]],["parent/2088",[1103,3.852]],["name/2089",[128,16.909]],["parent/2089",[1129,7.913]],["name/2090",[429,51.705]],["parent/2090",[1103,3.852]],["name/2091",[430,51.705]],["parent/2091",[1103,3.852]],["name/2092",[1130,74.112]],["parent/2092",[1103,3.852]],["name/2093",[1131,74.112]],["parent/2093",[1103,3.852]],["name/2094",[1132,74.112]],["parent/2094",[1103,3.852]],["name/2095",[1133,74.112]],["parent/2095",[1103,3.852]],["name/2096",[1134,74.112]],["parent/2096",[1103,3.852]],["name/2097",[1135,74.112]],["parent/2097",[1103,3.852]],["name/2098",[1136,74.112]],["parent/2098",[1103,3.852]],["name/2099",[744,64.557]],["parent/2099",[1103,3.852]],["name/2100",[1137,74.112]],["parent/2100",[1103,3.852]],["name/2101",[1138,74.112]],["parent/2101",[1103,3.852]],["name/2102",[750,64.557]],["parent/2102",[1103,3.852]],["name/2103",[753,66.227]],["parent/2103",[1103,3.852]],["name/2104",[755,66.227]],["parent/2104",[1103,3.852]],["name/2105",[1139,74.112]],["parent/2105",[1103,3.852]],["name/2106",[1140,74.112]],["parent/2106",[1103,3.852]],["name/2107",[1141,74.112]],["parent/2107",[1103,3.852]],["name/2108",[765,66.227]],["parent/2108",[1103,3.852]],["name/2109",[1142,74.112]],["parent/2109",[1103,3.852]],["name/2110",[1143,74.112]],["parent/2110",[1103,3.852]],["name/2111",[1144,74.112]],["parent/2111",[1103,3.852]],["name/2112",[1145,74.112]],["parent/2112",[1103,3.852]],["name/2113",[1146,70.747]],["parent/2113",[1103,3.852]],["name/2114",[777,68.234]],["parent/2114",[1103,3.852]],["name/2115",[778,64.557]],["parent/2115",[1103,3.852]],["name/2116",[779,70.747]],["parent/2116",[1103,3.852]],["name/2117",[1092,70.747]],["parent/2117",[1103,3.852]],["name/2118",[1147,74.112]],["parent/2118",[1103,3.852]],["name/2119",[646,61.874]],["parent/2119",[1103,3.852]],["name/2120",[128,16.909]],["parent/2120",[1148,7.913]],["name/2121",[254,58.018]],["parent/2121",[1103,3.852]],["name/2122",[128,16.909]],["parent/2122",[1149,7.913]],["name/2123",[228,50.503]],["parent/2123",[947,6.306]],["name/2124",[229,50.503]],["parent/2124",[947,6.306]],["name/2125",[1150,68.234]],["parent/2125",[]],["name/2126",[1151,79.22]],["parent/2126",[1150,6.816]],["name/2127",[2,50.503]],["parent/2127",[1152,4.111]],["name/2128",[1153,79.22]],["parent/2128",[1152,4.111]],["name/2129",[1154,79.22]],["parent/2129",[1152,4.111]],["name/2130",[55,49.776]],["parent/2130",[1152,4.111]],["name/2131",[1155,79.22]],["parent/2131",[1152,4.111]],["name/2132",[1156,79.22]],["parent/2132",[1152,4.111]],["name/2133",[1157,79.22]],["parent/2133",[1152,4.111]],["name/2134",[1158,79.22]],["parent/2134",[1152,4.111]],["name/2135",[101,50.503]],["parent/2135",[1152,4.111]],["name/2136",[409,51.705]],["parent/2136",[1152,4.111]],["name/2137",[410,51.705]],["parent/2137",[1152,4.111]],["name/2138",[128,16.909]],["parent/2138",[1159,7.913]],["name/2139",[140,50.503]],["parent/2139",[1152,4.111]],["name/2140",[128,16.909]],["parent/2140",[1160,7.913]],["name/2141",[413,51.705]],["parent/2141",[1152,4.111]],["name/2142",[128,16.909]],["parent/2142",[1161,7.913]],["name/2143",[142,50.503]],["parent/2143",[1152,4.111]],["name/2144",[128,16.909]],["parent/2144",[1162,7.913]],["name/2145",[144,50.503]],["parent/2145",[1152,4.111]],["name/2146",[128,16.909]],["parent/2146",[1163,7.913]],["name/2147",[146,50.503]],["parent/2147",[1152,4.111]],["name/2148",[128,16.909]],["parent/2148",[1164,7.913]],["name/2149",[148,50.503]],["parent/2149",[1152,4.111]],["name/2150",[128,16.909]],["parent/2150",[1165,7.913]],["name/2151",[150,50.503]],["parent/2151",[1152,4.111]],["name/2152",[128,16.909]],["parent/2152",[1166,7.913]],["name/2153",[152,50.503]],["parent/2153",[1152,4.111]],["name/2154",[128,16.909]],["parent/2154",[1167,7.913]],["name/2155",[154,50.503]],["parent/2155",[1152,4.111]],["name/2156",[128,16.909]],["parent/2156",[1168,7.913]],["name/2157",[156,50.503]],["parent/2157",[1152,4.111]],["name/2158",[128,16.909]],["parent/2158",[1169,7.913]],["name/2159",[158,50.503]],["parent/2159",[1152,4.111]],["name/2160",[128,16.909]],["parent/2160",[1170,7.913]],["name/2161",[196,50.503]],["parent/2161",[1152,4.111]],["name/2162",[128,16.909]],["parent/2162",[1171,7.913]],["name/2163",[160,50.503]],["parent/2163",[1152,4.111]],["name/2164",[128,16.909]],["parent/2164",[1172,7.913]],["name/2165",[425,51.705]],["parent/2165",[1152,4.111]],["name/2166",[128,16.909]],["parent/2166",[1173,7.913]],["name/2167",[427,51.705]],["parent/2167",[1152,4.111]],["name/2168",[128,16.909]],["parent/2168",[1174,7.913]],["name/2169",[429,51.705]],["parent/2169",[1152,4.111]],["name/2170",[430,51.705]],["parent/2170",[1152,4.111]],["name/2171",[162,50.888]],["parent/2171",[1152,4.111]],["name/2172",[163,50.888]],["parent/2172",[1152,4.111]],["name/2173",[164,50.888]],["parent/2173",[1152,4.111]],["name/2174",[165,51.705]],["parent/2174",[1152,4.111]],["name/2175",[166,51.705]],["parent/2175",[1152,4.111]],["name/2176",[167,50.888]],["parent/2176",[1152,4.111]],["name/2177",[168,50.888]],["parent/2177",[1152,4.111]],["name/2178",[169,50.888]],["parent/2178",[1152,4.111]],["name/2179",[170,50.888]],["parent/2179",[1152,4.111]],["name/2180",[128,16.909]],["parent/2180",[1175,7.913]],["name/2181",[172,50.888]],["parent/2181",[1152,4.111]],["name/2182",[128,16.909]],["parent/2182",[1176,7.913]],["name/2183",[174,44.459]],["parent/2183",[1152,4.111]],["name/2184",[128,16.909]],["parent/2184",[1177,7.913]],["name/2185",[176,52.14]],["parent/2185",[1152,4.111]],["name/2186",[128,16.909]],["parent/2186",[1178,7.913]],["name/2187",[178,50.888]],["parent/2187",[1152,4.111]],["name/2188",[128,16.909]],["parent/2188",[1179,7.913]],["name/2189",[180,50.888]],["parent/2189",[1152,4.111]],["name/2190",[181,50.888]],["parent/2190",[1152,4.111]],["name/2191",[182,50.888]],["parent/2191",[1152,4.111]],["name/2192",[183,50.888]],["parent/2192",[1152,4.111]],["name/2193",[184,50.888]],["parent/2193",[1152,4.111]],["name/2194",[185,50.888]],["parent/2194",[1152,4.111]],["name/2195",[186,50.503]],["parent/2195",[1152,4.111]],["name/2196",[187,50.888]],["parent/2196",[1152,4.111]],["name/2197",[188,50.888]],["parent/2197",[1152,4.111]],["name/2198",[189,50.888]],["parent/2198",[1152,4.111]],["name/2199",[190,50.888]],["parent/2199",[1152,4.111]],["name/2200",[191,50.888]],["parent/2200",[1152,4.111]],["name/2201",[192,50.888]],["parent/2201",[1152,4.111]],["name/2202",[193,50.888]],["parent/2202",[1152,4.111]],["name/2203",[194,50.888]],["parent/2203",[1152,4.111]],["name/2204",[195,50.888]],["parent/2204",[1152,4.111]],["name/2205",[197,50.888]],["parent/2205",[1152,4.111]],["name/2206",[198,50.888]],["parent/2206",[1152,4.111]],["name/2207",[199,51.705]],["parent/2207",[1152,4.111]],["name/2208",[200,51.705]],["parent/2208",[1152,4.111]],["name/2209",[128,16.909]],["parent/2209",[1180,7.913]],["name/2210",[202,51.705]],["parent/2210",[1181,5.301]],["name/2211",[204,43.293]],["parent/2211",[1181,5.301]],["name/2212",[205,50.503]],["parent/2212",[1181,5.301]],["name/2213",[206,44.055]],["parent/2213",[1181,5.301]],["name/2214",[207,51.705]],["parent/2214",[1181,5.301]],["name/2215",[208,51.705]],["parent/2215",[1181,5.301]],["name/2216",[209,51.705]],["parent/2216",[1181,5.301]],["name/2217",[210,50.888]],["parent/2217",[1181,5.301]],["name/2218",[211,51.705]],["parent/2218",[1181,5.301]],["name/2219",[212,50.888]],["parent/2219",[1181,5.301]],["name/2220",[213,51.705]],["parent/2220",[1181,5.301]],["name/2221",[214,51.705]],["parent/2221",[1181,5.301]],["name/2222",[215,51.705]],["parent/2222",[1181,5.301]],["name/2223",[216,51.705]],["parent/2223",[1181,5.301]],["name/2224",[174,44.459]],["parent/2224",[1181,5.301]],["name/2225",[217,51.705]],["parent/2225",[1181,5.301]],["name/2226",[218,51.705]],["parent/2226",[1181,5.301]],["name/2227",[219,51.705]],["parent/2227",[1181,5.301]],["name/2228",[220,48.159]],["parent/2228",[1181,5.301]],["name/2229",[221,51.705]],["parent/2229",[1181,5.301]],["name/2230",[222,51.705]],["parent/2230",[1152,4.111]],["name/2231",[128,16.909]],["parent/2231",[1182,7.913]],["name/2232",[206,44.055]],["parent/2232",[1183,6.616]],["name/2233",[225,51.705]],["parent/2233",[1183,6.616]],["name/2234",[204,43.293]],["parent/2234",[1183,6.616]],["name/2235",[226,51.705]],["parent/2235",[1183,6.616]],["name/2236",[227,49.098]],["parent/2236",[1183,6.616]],["name/2237",[1184,79.22]],["parent/2237",[1152,4.111]],["name/2238",[128,16.909]],["parent/2238",[1185,7.913]],["name/2239",[1186,79.22]],["parent/2239",[1152,4.111]],["name/2240",[128,16.909]],["parent/2240",[1187,7.913]],["name/2241",[1188,79.22]],["parent/2241",[1152,4.111]],["name/2242",[128,16.909]],["parent/2242",[1189,7.913]],["name/2243",[1190,79.22]],["parent/2243",[1152,4.111]],["name/2244",[128,16.909]],["parent/2244",[1191,7.913]],["name/2245",[470,66.227]],["parent/2245",[1152,4.111]],["name/2246",[128,16.909]],["parent/2246",[1192,7.913]],["name/2247",[228,50.503]],["parent/2247",[1150,6.816]],["name/2248",[229,50.503]],["parent/2248",[1150,6.816]],["name/2249",[1193,51.705]],["parent/2249",[]],["name/2250",[1194,79.22]],["parent/2250",[1193,5.165]],["name/2251",[1195,79.22]],["parent/2251",[1193,5.165]],["name/2252",[1196,79.22]],["parent/2252",[1193,5.165]],["name/2253",[128,16.909]],["parent/2253",[1197,7.913]],["name/2254",[1198,79.22]],["parent/2254",[1199,6.616]],["name/2255",[1200,79.22]],["parent/2255",[1199,6.616]],["name/2256",[1201,79.22]],["parent/2256",[1199,6.616]],["name/2257",[1202,79.22]],["parent/2257",[1199,6.616]],["name/2258",[1203,79.22]],["parent/2258",[1199,6.616]],["name/2259",[1204,74.112]],["parent/2259",[1193,5.165]],["name/2260",[1205,79.22]],["parent/2260",[1193,5.165]],["name/2261",[818,74.112]],["parent/2261",[1206,6.616]],["name/2262",[821,74.112]],["parent/2262",[1206,6.616]],["name/2263",[822,74.112]],["parent/2263",[1206,6.616]],["name/2264",[820,74.112]],["parent/2264",[1206,6.616]],["name/2265",[55,49.776]],["parent/2265",[1206,6.616]],["name/2266",[834,74.112]],["parent/2266",[1193,5.165]],["name/2267",[844,74.112]],["parent/2267",[1193,5.165]],["name/2268",[843,74.112]],["parent/2268",[1193,5.165]],["name/2269",[1207,79.22]],["parent/2269",[1193,5.165]],["name/2270",[1208,79.22]],["parent/2270",[1193,5.165]],["name/2271",[1209,79.22]],["parent/2271",[1193,5.165]],["name/2272",[1210,79.22]],["parent/2272",[1193,5.165]],["name/2273",[1211,79.22]],["parent/2273",[1193,5.165]],["name/2274",[1212,79.22]],["parent/2274",[1193,5.165]],["name/2275",[1213,79.22]],["parent/2275",[1193,5.165]],["name/2276",[1214,79.22]],["parent/2276",[1193,5.165]],["name/2277",[1215,79.22]],["parent/2277",[1193,5.165]],["name/2278",[1216,79.22]],["parent/2278",[1193,5.165]],["name/2279",[1217,79.22]],["parent/2279",[1193,5.165]],["name/2280",[1218,79.22]],["parent/2280",[1193,5.165]],["name/2281",[1193,51.705]],["parent/2281",[1193,5.165]],["name/2282",[1204,74.112]],["parent/2282",[1219,7.913]],["name/2283",[1220,50.888]],["parent/2283",[]],["name/2284",[1221,79.22]],["parent/2284",[1220,5.083]],["name/2285",[2,50.503]],["parent/2285",[1222,4.111]],["name/2286",[1223,79.22]],["parent/2286",[1222,4.111]],["name/2287",[55,49.776]],["parent/2287",[1222,4.111]],["name/2288",[1224,68.234]],["parent/2288",[1222,4.111]],["name/2289",[128,16.909]],["parent/2289",[1225,7.913]],["name/2290",[1226,74.112]],["parent/2290",[1227,7.403]],["name/2291",[1228,74.112]],["parent/2291",[1227,7.403]],["name/2292",[1229,66.227]],["parent/2292",[1222,4.111]],["name/2293",[1230,74.112]],["parent/2293",[1222,4.111]],["name/2294",[128,16.909]],["parent/2294",[1231,7.913]],["name/2295",[1229,66.227]],["parent/2295",[1232,5.879]],["name/2296",[1233,68.234]],["parent/2296",[1232,5.879]],["name/2297",[1234,70.747]],["parent/2297",[1232,5.879]],["name/2298",[1235,74.112]],["parent/2298",[1232,5.879]],["name/2299",[206,44.055]],["parent/2299",[1232,5.879]],["name/2300",[1236,63.126]],["parent/2300",[1232,5.879]],["name/2301",[1237,66.227]],["parent/2301",[1232,5.879]],["name/2302",[495,68.234]],["parent/2302",[1232,5.879]],["name/2303",[1238,74.112]],["parent/2303",[1232,5.879]],["name/2304",[1239,61.874]],["parent/2304",[1232,5.879]],["name/2305",[1240,70.747]],["parent/2305",[1232,5.879]],["name/2306",[1241,74.112]],["parent/2306",[1222,4.111]],["name/2307",[128,16.909]],["parent/2307",[1242,7.913]],["name/2308",[1243,74.112]],["parent/2308",[1244,7.913]],["name/2309",[1237,66.227]],["parent/2309",[1222,4.111]],["name/2310",[1245,74.112]],["parent/2310",[1222,4.111]],["name/2311",[128,16.909]],["parent/2311",[1246,7.913]],["name/2312",[1247,68.234]],["parent/2312",[1248,5.719]],["name/2313",[1249,74.112]],["parent/2313",[1248,5.719]],["name/2314",[1250,74.112]],["parent/2314",[1248,5.719]],["name/2315",[1251,74.112]],["parent/2315",[1248,5.719]],["name/2316",[1252,74.112]],["parent/2316",[1248,5.719]],["name/2317",[1233,68.234]],["parent/2317",[1248,5.719]],["name/2318",[1236,63.126]],["parent/2318",[1248,5.719]],["name/2319",[1253,68.234]],["parent/2319",[1248,5.719]],["name/2320",[1239,61.874]],["parent/2320",[1248,5.719]],["name/2321",[1254,74.112]],["parent/2321",[1248,5.719]],["name/2322",[1255,68.234]],["parent/2322",[1248,5.719]],["name/2323",[1256,74.112]],["parent/2323",[1248,5.719]],["name/2324",[1257,74.112]],["parent/2324",[1248,5.719]],["name/2325",[1239,61.874]],["parent/2325",[1222,4.111]],["name/2326",[128,16.909]],["parent/2326",[1258,7.913]],["name/2327",[1253,68.234]],["parent/2327",[1259,7.067]],["name/2328",[1260,68.234]],["parent/2328",[1259,7.067]],["name/2329",[1255,68.234]],["parent/2329",[1259,7.067]],["name/2330",[1261,79.22]],["parent/2330",[1222,4.111]],["name/2331",[1260,68.234]],["parent/2331",[1222,4.111]],["name/2332",[128,16.909]],["parent/2332",[1262,7.913]],["name/2333",[1263,74.112]],["parent/2333",[1264,7.403]],["name/2334",[1224,68.234]],["parent/2334",[1264,7.403]],["name/2335",[1265,74.112]],["parent/2335",[1222,4.111]],["name/2336",[128,16.909]],["parent/2336",[1266,7.913]],["name/2337",[1267,74.112]],["parent/2337",[1268,6.449]],["name/2338",[1247,68.234]],["parent/2338",[1268,6.449]],["name/2339",[1236,63.126]],["parent/2339",[1268,6.449]],["name/2340",[1239,61.874]],["parent/2340",[1268,6.449]],["name/2341",[1269,74.112]],["parent/2341",[1268,6.449]],["name/2342",[349,70.747]],["parent/2342",[1268,6.449]],["name/2343",[101,50.503]],["parent/2343",[1222,4.111]],["name/2344",[409,51.705]],["parent/2344",[1222,4.111]],["name/2345",[410,51.705]],["parent/2345",[1222,4.111]],["name/2346",[128,16.909]],["parent/2346",[1270,7.913]],["name/2347",[140,50.503]],["parent/2347",[1222,4.111]],["name/2348",[128,16.909]],["parent/2348",[1271,7.913]],["name/2349",[413,51.705]],["parent/2349",[1222,4.111]],["name/2350",[128,16.909]],["parent/2350",[1272,7.913]],["name/2351",[142,50.503]],["parent/2351",[1222,4.111]],["name/2352",[128,16.909]],["parent/2352",[1273,7.913]],["name/2353",[144,50.503]],["parent/2353",[1222,4.111]],["name/2354",[128,16.909]],["parent/2354",[1274,7.913]],["name/2355",[146,50.503]],["parent/2355",[1222,4.111]],["name/2356",[128,16.909]],["parent/2356",[1275,7.913]],["name/2357",[148,50.503]],["parent/2357",[1222,4.111]],["name/2358",[128,16.909]],["parent/2358",[1276,7.913]],["name/2359",[150,50.503]],["parent/2359",[1222,4.111]],["name/2360",[128,16.909]],["parent/2360",[1277,7.913]],["name/2361",[152,50.503]],["parent/2361",[1222,4.111]],["name/2362",[128,16.909]],["parent/2362",[1278,7.913]],["name/2363",[154,50.503]],["parent/2363",[1222,4.111]],["name/2364",[128,16.909]],["parent/2364",[1279,7.913]],["name/2365",[156,50.503]],["parent/2365",[1222,4.111]],["name/2366",[128,16.909]],["parent/2366",[1280,7.913]],["name/2367",[158,50.503]],["parent/2367",[1222,4.111]],["name/2368",[128,16.909]],["parent/2368",[1281,7.913]],["name/2369",[196,50.503]],["parent/2369",[1222,4.111]],["name/2370",[128,16.909]],["parent/2370",[1282,7.913]],["name/2371",[160,50.503]],["parent/2371",[1222,4.111]],["name/2372",[128,16.909]],["parent/2372",[1283,7.913]],["name/2373",[425,51.705]],["parent/2373",[1222,4.111]],["name/2374",[128,16.909]],["parent/2374",[1284,7.913]],["name/2375",[427,51.705]],["parent/2375",[1222,4.111]],["name/2376",[128,16.909]],["parent/2376",[1285,7.913]],["name/2377",[429,51.705]],["parent/2377",[1222,4.111]],["name/2378",[430,51.705]],["parent/2378",[1222,4.111]],["name/2379",[162,50.888]],["parent/2379",[1222,4.111]],["name/2380",[163,50.888]],["parent/2380",[1222,4.111]],["name/2381",[164,50.888]],["parent/2381",[1222,4.111]],["name/2382",[165,51.705]],["parent/2382",[1222,4.111]],["name/2383",[166,51.705]],["parent/2383",[1222,4.111]],["name/2384",[167,50.888]],["parent/2384",[1222,4.111]],["name/2385",[168,50.888]],["parent/2385",[1222,4.111]],["name/2386",[169,50.888]],["parent/2386",[1222,4.111]],["name/2387",[170,50.888]],["parent/2387",[1222,4.111]],["name/2388",[128,16.909]],["parent/2388",[1286,7.913]],["name/2389",[172,50.888]],["parent/2389",[1222,4.111]],["name/2390",[128,16.909]],["parent/2390",[1287,7.913]],["name/2391",[174,44.459]],["parent/2391",[1222,4.111]],["name/2392",[128,16.909]],["parent/2392",[1288,7.913]],["name/2393",[176,52.14]],["parent/2393",[1222,4.111]],["name/2394",[128,16.909]],["parent/2394",[1289,7.913]],["name/2395",[178,50.888]],["parent/2395",[1222,4.111]],["name/2396",[128,16.909]],["parent/2396",[1290,7.913]],["name/2397",[180,50.888]],["parent/2397",[1222,4.111]],["name/2398",[181,50.888]],["parent/2398",[1222,4.111]],["name/2399",[182,50.888]],["parent/2399",[1222,4.111]],["name/2400",[183,50.888]],["parent/2400",[1222,4.111]],["name/2401",[184,50.888]],["parent/2401",[1222,4.111]],["name/2402",[185,50.888]],["parent/2402",[1222,4.111]],["name/2403",[186,50.503]],["parent/2403",[1222,4.111]],["name/2404",[187,50.888]],["parent/2404",[1222,4.111]],["name/2405",[188,50.888]],["parent/2405",[1222,4.111]],["name/2406",[189,50.888]],["parent/2406",[1222,4.111]],["name/2407",[190,50.888]],["parent/2407",[1222,4.111]],["name/2408",[191,50.888]],["parent/2408",[1222,4.111]],["name/2409",[192,50.888]],["parent/2409",[1222,4.111]],["name/2410",[193,50.888]],["parent/2410",[1222,4.111]],["name/2411",[194,50.888]],["parent/2411",[1222,4.111]],["name/2412",[195,50.888]],["parent/2412",[1222,4.111]],["name/2413",[197,50.888]],["parent/2413",[1222,4.111]],["name/2414",[198,50.888]],["parent/2414",[1222,4.111]],["name/2415",[199,51.705]],["parent/2415",[1222,4.111]],["name/2416",[200,51.705]],["parent/2416",[1222,4.111]],["name/2417",[128,16.909]],["parent/2417",[1291,7.913]],["name/2418",[202,51.705]],["parent/2418",[1292,5.301]],["name/2419",[204,43.293]],["parent/2419",[1292,5.301]],["name/2420",[205,50.503]],["parent/2420",[1292,5.301]],["name/2421",[206,44.055]],["parent/2421",[1292,5.301]],["name/2422",[207,51.705]],["parent/2422",[1292,5.301]],["name/2423",[208,51.705]],["parent/2423",[1292,5.301]],["name/2424",[209,51.705]],["parent/2424",[1292,5.301]],["name/2425",[210,50.888]],["parent/2425",[1292,5.301]],["name/2426",[211,51.705]],["parent/2426",[1292,5.301]],["name/2427",[212,50.888]],["parent/2427",[1292,5.301]],["name/2428",[213,51.705]],["parent/2428",[1292,5.301]],["name/2429",[214,51.705]],["parent/2429",[1292,5.301]],["name/2430",[215,51.705]],["parent/2430",[1292,5.301]],["name/2431",[216,51.705]],["parent/2431",[1292,5.301]],["name/2432",[174,44.459]],["parent/2432",[1292,5.301]],["name/2433",[217,51.705]],["parent/2433",[1292,5.301]],["name/2434",[218,51.705]],["parent/2434",[1292,5.301]],["name/2435",[219,51.705]],["parent/2435",[1292,5.301]],["name/2436",[220,48.159]],["parent/2436",[1292,5.301]],["name/2437",[221,51.705]],["parent/2437",[1292,5.301]],["name/2438",[222,51.705]],["parent/2438",[1222,4.111]],["name/2439",[128,16.909]],["parent/2439",[1293,7.913]],["name/2440",[206,44.055]],["parent/2440",[1294,6.616]],["name/2441",[225,51.705]],["parent/2441",[1294,6.616]],["name/2442",[204,43.293]],["parent/2442",[1294,6.616]],["name/2443",[226,51.705]],["parent/2443",[1294,6.616]],["name/2444",[227,49.098]],["parent/2444",[1294,6.616]],["name/2445",[228,50.503]],["parent/2445",[1220,5.083]],["name/2446",[229,50.503]],["parent/2446",[1220,5.083]],["name/2447",[1295,79.22]],["parent/2447",[1220,5.083]],["name/2448",[2,50.503]],["parent/2448",[1296,4.126]],["name/2449",[1297,79.22]],["parent/2449",[1296,4.126]],["name/2450",[1298,79.22]],["parent/2450",[1296,4.126]],["name/2451",[1299,79.22]],["parent/2451",[1296,4.126]],["name/2452",[1300,79.22]],["parent/2452",[1296,4.126]],["name/2453",[1301,79.22]],["parent/2453",[1296,4.126]],["name/2454",[55,49.776]],["parent/2454",[1296,4.126]],["name/2455",[1302,79.22]],["parent/2455",[1296,4.126]],["name/2456",[1229,66.227]],["parent/2456",[1296,4.126]],["name/2457",[101,50.503]],["parent/2457",[1296,4.126]],["name/2458",[409,51.705]],["parent/2458",[1296,4.126]],["name/2459",[410,51.705]],["parent/2459",[1296,4.126]],["name/2460",[128,16.909]],["parent/2460",[1303,7.913]],["name/2461",[140,50.503]],["parent/2461",[1296,4.126]],["name/2462",[128,16.909]],["parent/2462",[1304,7.913]],["name/2463",[413,51.705]],["parent/2463",[1296,4.126]],["name/2464",[128,16.909]],["parent/2464",[1305,7.913]],["name/2465",[142,50.503]],["parent/2465",[1296,4.126]],["name/2466",[128,16.909]],["parent/2466",[1306,7.913]],["name/2467",[144,50.503]],["parent/2467",[1296,4.126]],["name/2468",[128,16.909]],["parent/2468",[1307,7.913]],["name/2469",[146,50.503]],["parent/2469",[1296,4.126]],["name/2470",[128,16.909]],["parent/2470",[1308,7.913]],["name/2471",[148,50.503]],["parent/2471",[1296,4.126]],["name/2472",[128,16.909]],["parent/2472",[1309,7.913]],["name/2473",[150,50.503]],["parent/2473",[1296,4.126]],["name/2474",[128,16.909]],["parent/2474",[1310,7.913]],["name/2475",[152,50.503]],["parent/2475",[1296,4.126]],["name/2476",[128,16.909]],["parent/2476",[1311,7.913]],["name/2477",[154,50.503]],["parent/2477",[1296,4.126]],["name/2478",[128,16.909]],["parent/2478",[1312,7.913]],["name/2479",[156,50.503]],["parent/2479",[1296,4.126]],["name/2480",[128,16.909]],["parent/2480",[1313,7.913]],["name/2481",[158,50.503]],["parent/2481",[1296,4.126]],["name/2482",[128,16.909]],["parent/2482",[1314,7.913]],["name/2483",[196,50.503]],["parent/2483",[1296,4.126]],["name/2484",[128,16.909]],["parent/2484",[1315,7.913]],["name/2485",[160,50.503]],["parent/2485",[1296,4.126]],["name/2486",[128,16.909]],["parent/2486",[1316,7.913]],["name/2487",[425,51.705]],["parent/2487",[1296,4.126]],["name/2488",[128,16.909]],["parent/2488",[1317,7.913]],["name/2489",[427,51.705]],["parent/2489",[1296,4.126]],["name/2490",[128,16.909]],["parent/2490",[1318,7.913]],["name/2491",[429,51.705]],["parent/2491",[1296,4.126]],["name/2492",[430,51.705]],["parent/2492",[1296,4.126]],["name/2493",[162,50.888]],["parent/2493",[1296,4.126]],["name/2494",[163,50.888]],["parent/2494",[1296,4.126]],["name/2495",[164,50.888]],["parent/2495",[1296,4.126]],["name/2496",[165,51.705]],["parent/2496",[1296,4.126]],["name/2497",[166,51.705]],["parent/2497",[1296,4.126]],["name/2498",[167,50.888]],["parent/2498",[1296,4.126]],["name/2499",[168,50.888]],["parent/2499",[1296,4.126]],["name/2500",[169,50.888]],["parent/2500",[1296,4.126]],["name/2501",[170,50.888]],["parent/2501",[1296,4.126]],["name/2502",[128,16.909]],["parent/2502",[1319,7.913]],["name/2503",[172,50.888]],["parent/2503",[1296,4.126]],["name/2504",[128,16.909]],["parent/2504",[1320,7.913]],["name/2505",[174,44.459]],["parent/2505",[1296,4.126]],["name/2506",[128,16.909]],["parent/2506",[1321,7.913]],["name/2507",[176,52.14]],["parent/2507",[1296,4.126]],["name/2508",[128,16.909]],["parent/2508",[1322,7.913]],["name/2509",[178,50.888]],["parent/2509",[1296,4.126]],["name/2510",[128,16.909]],["parent/2510",[1323,7.913]],["name/2511",[180,50.888]],["parent/2511",[1296,4.126]],["name/2512",[181,50.888]],["parent/2512",[1296,4.126]],["name/2513",[182,50.888]],["parent/2513",[1296,4.126]],["name/2514",[183,50.888]],["parent/2514",[1296,4.126]],["name/2515",[184,50.888]],["parent/2515",[1296,4.126]],["name/2516",[185,50.888]],["parent/2516",[1296,4.126]],["name/2517",[186,50.503]],["parent/2517",[1296,4.126]],["name/2518",[187,50.888]],["parent/2518",[1296,4.126]],["name/2519",[188,50.888]],["parent/2519",[1296,4.126]],["name/2520",[189,50.888]],["parent/2520",[1296,4.126]],["name/2521",[190,50.888]],["parent/2521",[1296,4.126]],["name/2522",[191,50.888]],["parent/2522",[1296,4.126]],["name/2523",[192,50.888]],["parent/2523",[1296,4.126]],["name/2524",[193,50.888]],["parent/2524",[1296,4.126]],["name/2525",[194,50.888]],["parent/2525",[1296,4.126]],["name/2526",[195,50.888]],["parent/2526",[1296,4.126]],["name/2527",[197,50.888]],["parent/2527",[1296,4.126]],["name/2528",[198,50.888]],["parent/2528",[1296,4.126]],["name/2529",[199,51.705]],["parent/2529",[1296,4.126]],["name/2530",[200,51.705]],["parent/2530",[1296,4.126]],["name/2531",[128,16.909]],["parent/2531",[1324,7.913]],["name/2532",[202,51.705]],["parent/2532",[1325,5.301]],["name/2533",[204,43.293]],["parent/2533",[1325,5.301]],["name/2534",[205,50.503]],["parent/2534",[1325,5.301]],["name/2535",[206,44.055]],["parent/2535",[1325,5.301]],["name/2536",[207,51.705]],["parent/2536",[1325,5.301]],["name/2537",[208,51.705]],["parent/2537",[1325,5.301]],["name/2538",[209,51.705]],["parent/2538",[1325,5.301]],["name/2539",[210,50.888]],["parent/2539",[1325,5.301]],["name/2540",[211,51.705]],["parent/2540",[1325,5.301]],["name/2541",[212,50.888]],["parent/2541",[1325,5.301]],["name/2542",[213,51.705]],["parent/2542",[1325,5.301]],["name/2543",[214,51.705]],["parent/2543",[1325,5.301]],["name/2544",[215,51.705]],["parent/2544",[1325,5.301]],["name/2545",[216,51.705]],["parent/2545",[1325,5.301]],["name/2546",[174,44.459]],["parent/2546",[1325,5.301]],["name/2547",[217,51.705]],["parent/2547",[1325,5.301]],["name/2548",[218,51.705]],["parent/2548",[1325,5.301]],["name/2549",[219,51.705]],["parent/2549",[1325,5.301]],["name/2550",[220,48.159]],["parent/2550",[1325,5.301]],["name/2551",[221,51.705]],["parent/2551",[1325,5.301]],["name/2552",[222,51.705]],["parent/2552",[1296,4.126]],["name/2553",[128,16.909]],["parent/2553",[1326,7.913]],["name/2554",[206,44.055]],["parent/2554",[1327,6.616]],["name/2555",[225,51.705]],["parent/2555",[1327,6.616]],["name/2556",[204,43.293]],["parent/2556",[1327,6.616]],["name/2557",[226,51.705]],["parent/2557",[1327,6.616]],["name/2558",[227,49.098]],["parent/2558",[1327,6.616]],["name/2559",[1328,79.22]],["parent/2559",[1296,4.126]],["name/2560",[128,16.909]],["parent/2560",[1329,7.913]],["name/2561",[1330,79.22]],["parent/2561",[1296,4.126]],["name/2562",[128,16.909]],["parent/2562",[1331,7.913]],["name/2563",[1332,74.112]],["parent/2563",[1296,4.126]],["name/2564",[128,16.909]],["parent/2564",[1333,7.913]],["name/2565",[228,50.503]],["parent/2565",[1220,5.083]],["name/2566",[229,50.503]],["parent/2566",[1220,5.083]],["name/2567",[1234,70.747]],["parent/2567",[1220,5.083]],["name/2568",[2,50.503]],["parent/2568",[1334,3.973]],["name/2569",[1335,79.22]],["parent/2569",[1334,3.973]],["name/2570",[1336,79.22]],["parent/2570",[1334,3.973]],["name/2571",[1337,79.22]],["parent/2571",[1334,3.973]],["name/2572",[1338,79.22]],["parent/2572",[1334,3.973]],["name/2573",[1339,79.22]],["parent/2573",[1334,3.973]],["name/2574",[1340,79.22]],["parent/2574",[1334,3.973]],["name/2575",[1341,79.22]],["parent/2575",[1334,3.973]],["name/2576",[1342,79.22]],["parent/2576",[1334,3.973]],["name/2577",[1343,79.22]],["parent/2577",[1334,3.973]],["name/2578",[55,49.776]],["parent/2578",[1334,3.973]],["name/2579",[1344,79.22]],["parent/2579",[1334,3.973]],["name/2580",[1345,79.22]],["parent/2580",[1334,3.973]],["name/2581",[128,16.909]],["parent/2581",[1346,7.913]],["name/2582",[1034,66.227]],["parent/2582",[1347,6.816]],["name/2583",[318,68.234]],["parent/2583",[1347,6.816]],["name/2584",[1035,70.747]],["parent/2584",[1347,6.816]],["name/2585",[1036,68.234]],["parent/2585",[1347,6.816]],["name/2586",[1348,74.112]],["parent/2586",[1334,3.973]],["name/2587",[128,16.909]],["parent/2587",[1349,7.913]],["name/2588",[1350,79.22]],["parent/2588",[1351,7.067]],["name/2589",[1352,79.22]],["parent/2589",[1351,7.067]],["name/2590",[1353,79.22]],["parent/2590",[1351,7.067]],["name/2591",[1354,79.22]],["parent/2591",[1334,3.973]],["name/2592",[128,16.909]],["parent/2592",[1355,7.913]],["name/2593",[311,63.126]],["parent/2593",[1356,6.449]],["name/2594",[1357,74.112]],["parent/2594",[1356,6.449]],["name/2595",[355,66.227]],["parent/2595",[1356,6.449]],["name/2596",[1358,74.112]],["parent/2596",[1356,6.449]],["name/2597",[1359,70.747]],["parent/2597",[1356,6.449]],["name/2598",[1360,79.22]],["parent/2598",[1356,6.449]],["name/2599",[1361,79.22]],["parent/2599",[1334,3.973]],["name/2600",[128,16.909]],["parent/2600",[1362,7.913]],["name/2601",[1034,66.227]],["parent/2601",[1363,7.403]],["name/2602",[1364,79.22]],["parent/2602",[1363,7.403]],["name/2603",[1365,79.22]],["parent/2603",[1334,3.973]],["name/2604",[128,16.909]],["parent/2604",[1366,7.913]],["name/2605",[311,63.126]],["parent/2605",[1367,7.067]],["name/2606",[1368,79.22]],["parent/2606",[1367,7.067]],["name/2607",[1369,74.112]],["parent/2607",[1367,7.067]],["name/2608",[1370,79.22]],["parent/2608",[1334,3.973]],["name/2609",[1371,79.22]],["parent/2609",[1334,3.973]],["name/2610",[128,16.909]],["parent/2610",[1372,7.913]],["name/2611",[311,63.126]],["parent/2611",[1373,7.067]],["name/2612",[1358,74.112]],["parent/2612",[1373,7.067]],["name/2613",[1359,70.747]],["parent/2613",[1373,7.067]],["name/2614",[1374,79.22]],["parent/2614",[1334,3.973]],["name/2615",[128,16.909]],["parent/2615",[1375,7.913]],["name/2616",[1357,74.112]],["parent/2616",[1376,5.795]],["name/2617",[355,66.227]],["parent/2617",[1376,5.795]],["name/2618",[206,44.055]],["parent/2618",[1376,5.795]],["name/2619",[1236,63.126]],["parent/2619",[1376,5.795]],["name/2620",[1377,79.22]],["parent/2620",[1376,5.795]],["name/2621",[1378,79.22]],["parent/2621",[1376,5.795]],["name/2622",[1369,74.112]],["parent/2622",[1376,5.795]],["name/2623",[1348,74.112]],["parent/2623",[1376,5.795]],["name/2624",[1379,79.22]],["parent/2624",[1376,5.795]],["name/2625",[1380,79.22]],["parent/2625",[1376,5.795]],["name/2626",[1381,79.22]],["parent/2626",[1376,5.795]],["name/2627",[220,48.159]],["parent/2627",[1376,5.795]],["name/2628",[1382,79.22]],["parent/2628",[1334,3.973]],["name/2629",[128,16.909]],["parent/2629",[1383,7.913]],["name/2630",[1384,79.22]],["parent/2630",[1385,7.913]],["name/2631",[1386,79.22]],["parent/2631",[1334,3.973]],["name/2632",[128,16.909]],["parent/2632",[1387,7.913]],["name/2633",[1388,79.22]],["parent/2633",[1389,7.403]],["name/2634",[1390,79.22]],["parent/2634",[1389,7.403]],["name/2635",[1391,79.22]],["parent/2635",[1334,3.973]],["name/2636",[128,16.909]],["parent/2636",[1392,7.913]],["name/2637",[101,50.503]],["parent/2637",[1334,3.973]],["name/2638",[409,51.705]],["parent/2638",[1334,3.973]],["name/2639",[410,51.705]],["parent/2639",[1334,3.973]],["name/2640",[128,16.909]],["parent/2640",[1393,7.913]],["name/2641",[140,50.503]],["parent/2641",[1334,3.973]],["name/2642",[128,16.909]],["parent/2642",[1394,7.913]],["name/2643",[413,51.705]],["parent/2643",[1334,3.973]],["name/2644",[128,16.909]],["parent/2644",[1395,7.913]],["name/2645",[142,50.503]],["parent/2645",[1334,3.973]],["name/2646",[128,16.909]],["parent/2646",[1396,7.913]],["name/2647",[144,50.503]],["parent/2647",[1334,3.973]],["name/2648",[128,16.909]],["parent/2648",[1397,7.913]],["name/2649",[146,50.503]],["parent/2649",[1334,3.973]],["name/2650",[128,16.909]],["parent/2650",[1398,7.913]],["name/2651",[148,50.503]],["parent/2651",[1334,3.973]],["name/2652",[128,16.909]],["parent/2652",[1399,7.913]],["name/2653",[150,50.503]],["parent/2653",[1334,3.973]],["name/2654",[128,16.909]],["parent/2654",[1400,7.913]],["name/2655",[152,50.503]],["parent/2655",[1334,3.973]],["name/2656",[128,16.909]],["parent/2656",[1401,7.913]],["name/2657",[154,50.503]],["parent/2657",[1334,3.973]],["name/2658",[128,16.909]],["parent/2658",[1402,7.913]],["name/2659",[156,50.503]],["parent/2659",[1334,3.973]],["name/2660",[128,16.909]],["parent/2660",[1403,7.913]],["name/2661",[158,50.503]],["parent/2661",[1334,3.973]],["name/2662",[128,16.909]],["parent/2662",[1404,7.913]],["name/2663",[196,50.503]],["parent/2663",[1334,3.973]],["name/2664",[128,16.909]],["parent/2664",[1405,7.913]],["name/2665",[160,50.503]],["parent/2665",[1334,3.973]],["name/2666",[128,16.909]],["parent/2666",[1406,7.913]],["name/2667",[425,51.705]],["parent/2667",[1334,3.973]],["name/2668",[128,16.909]],["parent/2668",[1407,7.913]],["name/2669",[427,51.705]],["parent/2669",[1334,3.973]],["name/2670",[128,16.909]],["parent/2670",[1408,7.913]],["name/2671",[429,51.705]],["parent/2671",[1334,3.973]],["name/2672",[430,51.705]],["parent/2672",[1334,3.973]],["name/2673",[162,50.888]],["parent/2673",[1334,3.973]],["name/2674",[163,50.888]],["parent/2674",[1334,3.973]],["name/2675",[164,50.888]],["parent/2675",[1334,3.973]],["name/2676",[165,51.705]],["parent/2676",[1334,3.973]],["name/2677",[166,51.705]],["parent/2677",[1334,3.973]],["name/2678",[167,50.888]],["parent/2678",[1334,3.973]],["name/2679",[168,50.888]],["parent/2679",[1334,3.973]],["name/2680",[169,50.888]],["parent/2680",[1334,3.973]],["name/2681",[170,50.888]],["parent/2681",[1334,3.973]],["name/2682",[128,16.909]],["parent/2682",[1409,7.913]],["name/2683",[172,50.888]],["parent/2683",[1334,3.973]],["name/2684",[128,16.909]],["parent/2684",[1410,7.913]],["name/2685",[174,44.459]],["parent/2685",[1334,3.973]],["name/2686",[128,16.909]],["parent/2686",[1411,7.913]],["name/2687",[176,52.14]],["parent/2687",[1334,3.973]],["name/2688",[128,16.909]],["parent/2688",[1412,7.913]],["name/2689",[178,50.888]],["parent/2689",[1334,3.973]],["name/2690",[128,16.909]],["parent/2690",[1413,7.913]],["name/2691",[180,50.888]],["parent/2691",[1334,3.973]],["name/2692",[181,50.888]],["parent/2692",[1334,3.973]],["name/2693",[182,50.888]],["parent/2693",[1334,3.973]],["name/2694",[183,50.888]],["parent/2694",[1334,3.973]],["name/2695",[184,50.888]],["parent/2695",[1334,3.973]],["name/2696",[185,50.888]],["parent/2696",[1334,3.973]],["name/2697",[186,50.503]],["parent/2697",[1334,3.973]],["name/2698",[187,50.888]],["parent/2698",[1334,3.973]],["name/2699",[188,50.888]],["parent/2699",[1334,3.973]],["name/2700",[189,50.888]],["parent/2700",[1334,3.973]],["name/2701",[190,50.888]],["parent/2701",[1334,3.973]],["name/2702",[191,50.888]],["parent/2702",[1334,3.973]],["name/2703",[192,50.888]],["parent/2703",[1334,3.973]],["name/2704",[193,50.888]],["parent/2704",[1334,3.973]],["name/2705",[194,50.888]],["parent/2705",[1334,3.973]],["name/2706",[195,50.888]],["parent/2706",[1334,3.973]],["name/2707",[197,50.888]],["parent/2707",[1334,3.973]],["name/2708",[198,50.888]],["parent/2708",[1334,3.973]],["name/2709",[199,51.705]],["parent/2709",[1334,3.973]],["name/2710",[200,51.705]],["parent/2710",[1334,3.973]],["name/2711",[128,16.909]],["parent/2711",[1414,7.913]],["name/2712",[202,51.705]],["parent/2712",[1415,5.301]],["name/2713",[204,43.293]],["parent/2713",[1415,5.301]],["name/2714",[205,50.503]],["parent/2714",[1415,5.301]],["name/2715",[206,44.055]],["parent/2715",[1415,5.301]],["name/2716",[207,51.705]],["parent/2716",[1415,5.301]],["name/2717",[208,51.705]],["parent/2717",[1415,5.301]],["name/2718",[209,51.705]],["parent/2718",[1415,5.301]],["name/2719",[210,50.888]],["parent/2719",[1415,5.301]],["name/2720",[211,51.705]],["parent/2720",[1415,5.301]],["name/2721",[212,50.888]],["parent/2721",[1415,5.301]],["name/2722",[213,51.705]],["parent/2722",[1415,5.301]],["name/2723",[214,51.705]],["parent/2723",[1415,5.301]],["name/2724",[215,51.705]],["parent/2724",[1415,5.301]],["name/2725",[216,51.705]],["parent/2725",[1415,5.301]],["name/2726",[174,44.459]],["parent/2726",[1415,5.301]],["name/2727",[217,51.705]],["parent/2727",[1415,5.301]],["name/2728",[218,51.705]],["parent/2728",[1415,5.301]],["name/2729",[219,51.705]],["parent/2729",[1415,5.301]],["name/2730",[220,48.159]],["parent/2730",[1415,5.301]],["name/2731",[221,51.705]],["parent/2731",[1415,5.301]],["name/2732",[222,51.705]],["parent/2732",[1334,3.973]],["name/2733",[128,16.909]],["parent/2733",[1416,7.913]],["name/2734",[206,44.055]],["parent/2734",[1417,6.616]],["name/2735",[225,51.705]],["parent/2735",[1417,6.616]],["name/2736",[204,43.293]],["parent/2736",[1417,6.616]],["name/2737",[226,51.705]],["parent/2737",[1417,6.616]],["name/2738",[227,49.098]],["parent/2738",[1417,6.616]],["name/2739",[228,50.503]],["parent/2739",[1220,5.083]],["name/2740",[229,50.503]],["parent/2740",[1220,5.083]],["name/2741",[1418,74.112]],["parent/2741",[1220,5.083]],["name/2742",[2,50.503]],["parent/2742",[1419,4.026]],["name/2743",[1420,79.22]],["parent/2743",[1419,4.026]],["name/2744",[1421,79.22]],["parent/2744",[1419,4.026]],["name/2745",[1422,79.22]],["parent/2745",[1419,4.026]],["name/2746",[1423,74.112]],["parent/2746",[1419,4.026]],["name/2747",[1424,79.22]],["parent/2747",[1419,4.026]],["name/2748",[55,49.776]],["parent/2748",[1419,4.026]],["name/2749",[162,50.888]],["parent/2749",[1419,4.026]],["name/2750",[128,16.909]],["parent/2750",[1425,7.913]],["name/2751",[1426,79.22]],["parent/2751",[1427,7.403]],["name/2752",[227,49.098]],["parent/2752",[1427,7.403]],["name/2753",[1428,74.112]],["parent/2753",[1419,4.026]],["name/2754",[1429,79.22]],["parent/2754",[1419,4.026]],["name/2755",[1430,79.22]],["parent/2755",[1419,4.026]],["name/2756",[128,16.909]],["parent/2756",[1431,7.913]],["name/2757",[301,74.112]],["parent/2757",[1432,6.816]],["name/2758",[1359,70.747]],["parent/2758",[1432,6.816]],["name/2759",[1433,79.22]],["parent/2759",[1432,6.816]],["name/2760",[1434,79.22]],["parent/2760",[1432,6.816]],["name/2761",[1418,74.112]],["parent/2761",[1419,4.026]],["name/2762",[128,16.909]],["parent/2762",[1435,7.913]],["name/2763",[1035,70.747]],["parent/2763",[1436,6.816]],["name/2764",[318,68.234]],["parent/2764",[1436,6.816]],["name/2765",[1034,66.227]],["parent/2765",[1436,6.816]],["name/2766",[1036,68.234]],["parent/2766",[1436,6.816]],["name/2767",[101,50.503]],["parent/2767",[1419,4.026]],["name/2768",[409,51.705]],["parent/2768",[1419,4.026]],["name/2769",[410,51.705]],["parent/2769",[1419,4.026]],["name/2770",[128,16.909]],["parent/2770",[1437,7.913]],["name/2771",[140,50.503]],["parent/2771",[1419,4.026]],["name/2772",[128,16.909]],["parent/2772",[1438,7.913]],["name/2773",[413,51.705]],["parent/2773",[1419,4.026]],["name/2774",[128,16.909]],["parent/2774",[1439,7.913]],["name/2775",[142,50.503]],["parent/2775",[1419,4.026]],["name/2776",[128,16.909]],["parent/2776",[1440,7.913]],["name/2777",[144,50.503]],["parent/2777",[1419,4.026]],["name/2778",[128,16.909]],["parent/2778",[1441,7.913]],["name/2779",[146,50.503]],["parent/2779",[1419,4.026]],["name/2780",[128,16.909]],["parent/2780",[1442,7.913]],["name/2781",[148,50.503]],["parent/2781",[1419,4.026]],["name/2782",[128,16.909]],["parent/2782",[1443,7.913]],["name/2783",[150,50.503]],["parent/2783",[1419,4.026]],["name/2784",[128,16.909]],["parent/2784",[1444,7.913]],["name/2785",[152,50.503]],["parent/2785",[1419,4.026]],["name/2786",[128,16.909]],["parent/2786",[1445,7.913]],["name/2787",[154,50.503]],["parent/2787",[1419,4.026]],["name/2788",[128,16.909]],["parent/2788",[1446,7.913]],["name/2789",[156,50.503]],["parent/2789",[1419,4.026]],["name/2790",[128,16.909]],["parent/2790",[1447,7.913]],["name/2791",[158,50.503]],["parent/2791",[1419,4.026]],["name/2792",[128,16.909]],["parent/2792",[1448,7.913]],["name/2793",[196,50.503]],["parent/2793",[1419,4.026]],["name/2794",[128,16.909]],["parent/2794",[1449,7.913]],["name/2795",[160,50.503]],["parent/2795",[1419,4.026]],["name/2796",[128,16.909]],["parent/2796",[1450,7.913]],["name/2797",[425,51.705]],["parent/2797",[1419,4.026]],["name/2798",[128,16.909]],["parent/2798",[1451,7.913]],["name/2799",[427,51.705]],["parent/2799",[1419,4.026]],["name/2800",[128,16.909]],["parent/2800",[1452,7.913]],["name/2801",[429,51.705]],["parent/2801",[1419,4.026]],["name/2802",[430,51.705]],["parent/2802",[1419,4.026]],["name/2803",[163,50.888]],["parent/2803",[1419,4.026]],["name/2804",[164,50.888]],["parent/2804",[1419,4.026]],["name/2805",[165,51.705]],["parent/2805",[1419,4.026]],["name/2806",[166,51.705]],["parent/2806",[1419,4.026]],["name/2807",[167,50.888]],["parent/2807",[1419,4.026]],["name/2808",[168,50.888]],["parent/2808",[1419,4.026]],["name/2809",[169,50.888]],["parent/2809",[1419,4.026]],["name/2810",[170,50.888]],["parent/2810",[1419,4.026]],["name/2811",[128,16.909]],["parent/2811",[1453,7.913]],["name/2812",[172,50.888]],["parent/2812",[1419,4.026]],["name/2813",[128,16.909]],["parent/2813",[1454,7.913]],["name/2814",[174,44.459]],["parent/2814",[1419,4.026]],["name/2815",[128,16.909]],["parent/2815",[1455,7.913]],["name/2816",[176,52.14]],["parent/2816",[1419,4.026]],["name/2817",[128,16.909]],["parent/2817",[1456,7.913]],["name/2818",[178,50.888]],["parent/2818",[1419,4.026]],["name/2819",[128,16.909]],["parent/2819",[1457,7.913]],["name/2820",[180,50.888]],["parent/2820",[1419,4.026]],["name/2821",[181,50.888]],["parent/2821",[1419,4.026]],["name/2822",[182,50.888]],["parent/2822",[1419,4.026]],["name/2823",[183,50.888]],["parent/2823",[1419,4.026]],["name/2824",[184,50.888]],["parent/2824",[1419,4.026]],["name/2825",[185,50.888]],["parent/2825",[1419,4.026]],["name/2826",[186,50.503]],["parent/2826",[1419,4.026]],["name/2827",[187,50.888]],["parent/2827",[1419,4.026]],["name/2828",[188,50.888]],["parent/2828",[1419,4.026]],["name/2829",[189,50.888]],["parent/2829",[1419,4.026]],["name/2830",[190,50.888]],["parent/2830",[1419,4.026]],["name/2831",[191,50.888]],["parent/2831",[1419,4.026]],["name/2832",[192,50.888]],["parent/2832",[1419,4.026]],["name/2833",[193,50.888]],["parent/2833",[1419,4.026]],["name/2834",[194,50.888]],["parent/2834",[1419,4.026]],["name/2835",[195,50.888]],["parent/2835",[1419,4.026]],["name/2836",[197,50.888]],["parent/2836",[1419,4.026]],["name/2837",[198,50.888]],["parent/2837",[1419,4.026]],["name/2838",[199,51.705]],["parent/2838",[1419,4.026]],["name/2839",[200,51.705]],["parent/2839",[1419,4.026]],["name/2840",[128,16.909]],["parent/2840",[1458,7.913]],["name/2841",[202,51.705]],["parent/2841",[1459,5.301]],["name/2842",[204,43.293]],["parent/2842",[1459,5.301]],["name/2843",[205,50.503]],["parent/2843",[1459,5.301]],["name/2844",[206,44.055]],["parent/2844",[1459,5.301]],["name/2845",[207,51.705]],["parent/2845",[1459,5.301]],["name/2846",[208,51.705]],["parent/2846",[1459,5.301]],["name/2847",[209,51.705]],["parent/2847",[1459,5.301]],["name/2848",[210,50.888]],["parent/2848",[1459,5.301]],["name/2849",[211,51.705]],["parent/2849",[1459,5.301]],["name/2850",[212,50.888]],["parent/2850",[1459,5.301]],["name/2851",[213,51.705]],["parent/2851",[1459,5.301]],["name/2852",[214,51.705]],["parent/2852",[1459,5.301]],["name/2853",[215,51.705]],["parent/2853",[1459,5.301]],["name/2854",[216,51.705]],["parent/2854",[1459,5.301]],["name/2855",[174,44.459]],["parent/2855",[1459,5.301]],["name/2856",[217,51.705]],["parent/2856",[1459,5.301]],["name/2857",[218,51.705]],["parent/2857",[1459,5.301]],["name/2858",[219,51.705]],["parent/2858",[1459,5.301]],["name/2859",[220,48.159]],["parent/2859",[1459,5.301]],["name/2860",[221,51.705]],["parent/2860",[1459,5.301]],["name/2861",[222,51.705]],["parent/2861",[1419,4.026]],["name/2862",[128,16.909]],["parent/2862",[1460,7.913]],["name/2863",[206,44.055]],["parent/2863",[1461,6.616]],["name/2864",[225,51.705]],["parent/2864",[1461,6.616]],["name/2865",[204,43.293]],["parent/2865",[1461,6.616]],["name/2866",[226,51.705]],["parent/2866",[1461,6.616]],["name/2867",[227,49.098]],["parent/2867",[1461,6.616]],["name/2868",[1462,79.22]],["parent/2868",[1419,4.026]],["name/2869",[128,16.909]],["parent/2869",[1463,7.913]],["name/2870",[1464,79.22]],["parent/2870",[1419,4.026]],["name/2871",[128,16.909]],["parent/2871",[1465,7.913]],["name/2872",[1466,79.22]],["parent/2872",[1419,4.026]],["name/2873",[128,16.909]],["parent/2873",[1467,7.913]],["name/2874",[1468,79.22]],["parent/2874",[1419,4.026]],["name/2875",[128,16.909]],["parent/2875",[1469,7.913]],["name/2876",[1470,79.22]],["parent/2876",[1419,4.026]],["name/2877",[128,16.909]],["parent/2877",[1471,7.913]],["name/2878",[1472,79.22]],["parent/2878",[1419,4.026]],["name/2879",[128,16.909]],["parent/2879",[1473,7.913]],["name/2880",[1474,79.22]],["parent/2880",[1419,4.026]],["name/2881",[128,16.909]],["parent/2881",[1475,7.913]],["name/2882",[1476,79.22]],["parent/2882",[1419,4.026]],["name/2883",[128,16.909]],["parent/2883",[1477,7.913]],["name/2884",[228,50.503]],["parent/2884",[1220,5.083]],["name/2885",[229,50.503]],["parent/2885",[1220,5.083]],["name/2886",[1478,79.22]],["parent/2886",[1220,5.083]],["name/2887",[2,50.503]],["parent/2887",[1479,4.026]],["name/2888",[1480,79.22]],["parent/2888",[1479,4.026]],["name/2889",[1481,79.22]],["parent/2889",[1479,4.026]],["name/2890",[1482,79.22]],["parent/2890",[1479,4.026]],["name/2891",[1483,79.22]],["parent/2891",[1479,4.026]],["name/2892",[1484,79.22]],["parent/2892",[1479,4.026]],["name/2893",[55,49.776]],["parent/2893",[1479,4.026]],["name/2894",[1485,79.22]],["parent/2894",[1479,4.026]],["name/2895",[1224,68.234]],["parent/2895",[1479,4.026]],["name/2896",[128,16.909]],["parent/2896",[1486,7.913]],["name/2897",[1226,74.112]],["parent/2897",[1487,7.403]],["name/2898",[1228,74.112]],["parent/2898",[1487,7.403]],["name/2899",[1229,66.227]],["parent/2899",[1479,4.026]],["name/2900",[1230,74.112]],["parent/2900",[1479,4.026]],["name/2901",[128,16.909]],["parent/2901",[1488,7.913]],["name/2902",[1229,66.227]],["parent/2902",[1489,5.879]],["name/2903",[1233,68.234]],["parent/2903",[1489,5.879]],["name/2904",[1234,70.747]],["parent/2904",[1489,5.879]],["name/2905",[1235,74.112]],["parent/2905",[1489,5.879]],["name/2906",[206,44.055]],["parent/2906",[1489,5.879]],["name/2907",[1236,63.126]],["parent/2907",[1489,5.879]],["name/2908",[1237,66.227]],["parent/2908",[1489,5.879]],["name/2909",[495,68.234]],["parent/2909",[1489,5.879]],["name/2910",[1238,74.112]],["parent/2910",[1489,5.879]],["name/2911",[1239,61.874]],["parent/2911",[1489,5.879]],["name/2912",[1240,70.747]],["parent/2912",[1489,5.879]],["name/2913",[1241,74.112]],["parent/2913",[1479,4.026]],["name/2914",[128,16.909]],["parent/2914",[1490,7.913]],["name/2915",[1243,74.112]],["parent/2915",[1491,7.913]],["name/2916",[1237,66.227]],["parent/2916",[1479,4.026]],["name/2917",[1245,74.112]],["parent/2917",[1479,4.026]],["name/2918",[128,16.909]],["parent/2918",[1492,7.913]],["name/2919",[1247,68.234]],["parent/2919",[1493,5.719]],["name/2920",[1249,74.112]],["parent/2920",[1493,5.719]],["name/2921",[1250,74.112]],["parent/2921",[1493,5.719]],["name/2922",[1251,74.112]],["parent/2922",[1493,5.719]],["name/2923",[1252,74.112]],["parent/2923",[1493,5.719]],["name/2924",[1233,68.234]],["parent/2924",[1493,5.719]],["name/2925",[1236,63.126]],["parent/2925",[1493,5.719]],["name/2926",[1253,68.234]],["parent/2926",[1493,5.719]],["name/2927",[1239,61.874]],["parent/2927",[1493,5.719]],["name/2928",[1254,74.112]],["parent/2928",[1493,5.719]],["name/2929",[1255,68.234]],["parent/2929",[1493,5.719]],["name/2930",[1256,74.112]],["parent/2930",[1493,5.719]],["name/2931",[1257,74.112]],["parent/2931",[1493,5.719]],["name/2932",[1239,61.874]],["parent/2932",[1479,4.026]],["name/2933",[128,16.909]],["parent/2933",[1494,7.913]],["name/2934",[1253,68.234]],["parent/2934",[1495,7.067]],["name/2935",[1260,68.234]],["parent/2935",[1495,7.067]],["name/2936",[1255,68.234]],["parent/2936",[1495,7.067]],["name/2937",[1260,68.234]],["parent/2937",[1479,4.026]],["name/2938",[128,16.909]],["parent/2938",[1496,7.913]],["name/2939",[1263,74.112]],["parent/2939",[1497,7.403]],["name/2940",[1224,68.234]],["parent/2940",[1497,7.403]],["name/2941",[1265,74.112]],["parent/2941",[1479,4.026]],["name/2942",[128,16.909]],["parent/2942",[1498,7.913]],["name/2943",[1267,74.112]],["parent/2943",[1499,6.449]],["name/2944",[1247,68.234]],["parent/2944",[1499,6.449]],["name/2945",[1236,63.126]],["parent/2945",[1499,6.449]],["name/2946",[1239,61.874]],["parent/2946",[1499,6.449]],["name/2947",[1269,74.112]],["parent/2947",[1499,6.449]],["name/2948",[349,70.747]],["parent/2948",[1499,6.449]],["name/2949",[1500,74.112]],["parent/2949",[1479,4.026]],["name/2950",[128,16.909]],["parent/2950",[1501,7.913]],["name/2951",[1502,79.22]],["parent/2951",[1479,4.026]],["name/2952",[128,16.909]],["parent/2952",[1503,7.913]],["name/2953",[101,50.503]],["parent/2953",[1479,4.026]],["name/2954",[409,51.705]],["parent/2954",[1479,4.026]],["name/2955",[410,51.705]],["parent/2955",[1479,4.026]],["name/2956",[128,16.909]],["parent/2956",[1504,7.913]],["name/2957",[140,50.503]],["parent/2957",[1479,4.026]],["name/2958",[128,16.909]],["parent/2958",[1505,7.913]],["name/2959",[413,51.705]],["parent/2959",[1479,4.026]],["name/2960",[128,16.909]],["parent/2960",[1506,7.913]],["name/2961",[142,50.503]],["parent/2961",[1479,4.026]],["name/2962",[128,16.909]],["parent/2962",[1507,7.913]],["name/2963",[144,50.503]],["parent/2963",[1479,4.026]],["name/2964",[128,16.909]],["parent/2964",[1508,7.913]],["name/2965",[146,50.503]],["parent/2965",[1479,4.026]],["name/2966",[128,16.909]],["parent/2966",[1509,7.913]],["name/2967",[148,50.503]],["parent/2967",[1479,4.026]],["name/2968",[128,16.909]],["parent/2968",[1510,7.913]],["name/2969",[150,50.503]],["parent/2969",[1479,4.026]],["name/2970",[128,16.909]],["parent/2970",[1511,7.913]],["name/2971",[152,50.503]],["parent/2971",[1479,4.026]],["name/2972",[128,16.909]],["parent/2972",[1512,7.913]],["name/2973",[154,50.503]],["parent/2973",[1479,4.026]],["name/2974",[128,16.909]],["parent/2974",[1513,7.913]],["name/2975",[156,50.503]],["parent/2975",[1479,4.026]],["name/2976",[128,16.909]],["parent/2976",[1514,7.913]],["name/2977",[158,50.503]],["parent/2977",[1479,4.026]],["name/2978",[128,16.909]],["parent/2978",[1515,7.913]],["name/2979",[196,50.503]],["parent/2979",[1479,4.026]],["name/2980",[128,16.909]],["parent/2980",[1516,7.913]],["name/2981",[160,50.503]],["parent/2981",[1479,4.026]],["name/2982",[128,16.909]],["parent/2982",[1517,7.913]],["name/2983",[425,51.705]],["parent/2983",[1479,4.026]],["name/2984",[128,16.909]],["parent/2984",[1518,7.913]],["name/2985",[427,51.705]],["parent/2985",[1479,4.026]],["name/2986",[128,16.909]],["parent/2986",[1519,7.913]],["name/2987",[429,51.705]],["parent/2987",[1479,4.026]],["name/2988",[430,51.705]],["parent/2988",[1479,4.026]],["name/2989",[162,50.888]],["parent/2989",[1479,4.026]],["name/2990",[163,50.888]],["parent/2990",[1479,4.026]],["name/2991",[164,50.888]],["parent/2991",[1479,4.026]],["name/2992",[165,51.705]],["parent/2992",[1479,4.026]],["name/2993",[166,51.705]],["parent/2993",[1479,4.026]],["name/2994",[167,50.888]],["parent/2994",[1479,4.026]],["name/2995",[168,50.888]],["parent/2995",[1479,4.026]],["name/2996",[169,50.888]],["parent/2996",[1479,4.026]],["name/2997",[170,50.888]],["parent/2997",[1479,4.026]],["name/2998",[128,16.909]],["parent/2998",[1520,7.913]],["name/2999",[172,50.888]],["parent/2999",[1479,4.026]],["name/3000",[128,16.909]],["parent/3000",[1521,7.913]],["name/3001",[174,44.459]],["parent/3001",[1479,4.026]],["name/3002",[128,16.909]],["parent/3002",[1522,7.913]],["name/3003",[176,52.14]],["parent/3003",[1479,4.026]],["name/3004",[128,16.909]],["parent/3004",[1523,7.913]],["name/3005",[178,50.888]],["parent/3005",[1479,4.026]],["name/3006",[128,16.909]],["parent/3006",[1524,7.913]],["name/3007",[180,50.888]],["parent/3007",[1479,4.026]],["name/3008",[181,50.888]],["parent/3008",[1479,4.026]],["name/3009",[182,50.888]],["parent/3009",[1479,4.026]],["name/3010",[183,50.888]],["parent/3010",[1479,4.026]],["name/3011",[184,50.888]],["parent/3011",[1479,4.026]],["name/3012",[185,50.888]],["parent/3012",[1479,4.026]],["name/3013",[186,50.503]],["parent/3013",[1479,4.026]],["name/3014",[187,50.888]],["parent/3014",[1479,4.026]],["name/3015",[188,50.888]],["parent/3015",[1479,4.026]],["name/3016",[189,50.888]],["parent/3016",[1479,4.026]],["name/3017",[190,50.888]],["parent/3017",[1479,4.026]],["name/3018",[191,50.888]],["parent/3018",[1479,4.026]],["name/3019",[192,50.888]],["parent/3019",[1479,4.026]],["name/3020",[193,50.888]],["parent/3020",[1479,4.026]],["name/3021",[194,50.888]],["parent/3021",[1479,4.026]],["name/3022",[195,50.888]],["parent/3022",[1479,4.026]],["name/3023",[197,50.888]],["parent/3023",[1479,4.026]],["name/3024",[198,50.888]],["parent/3024",[1479,4.026]],["name/3025",[199,51.705]],["parent/3025",[1479,4.026]],["name/3026",[200,51.705]],["parent/3026",[1479,4.026]],["name/3027",[128,16.909]],["parent/3027",[1525,7.913]],["name/3028",[202,51.705]],["parent/3028",[1526,5.301]],["name/3029",[204,43.293]],["parent/3029",[1526,5.301]],["name/3030",[205,50.503]],["parent/3030",[1526,5.301]],["name/3031",[206,44.055]],["parent/3031",[1526,5.301]],["name/3032",[207,51.705]],["parent/3032",[1526,5.301]],["name/3033",[208,51.705]],["parent/3033",[1526,5.301]],["name/3034",[209,51.705]],["parent/3034",[1526,5.301]],["name/3035",[210,50.888]],["parent/3035",[1526,5.301]],["name/3036",[211,51.705]],["parent/3036",[1526,5.301]],["name/3037",[212,50.888]],["parent/3037",[1526,5.301]],["name/3038",[213,51.705]],["parent/3038",[1526,5.301]],["name/3039",[214,51.705]],["parent/3039",[1526,5.301]],["name/3040",[215,51.705]],["parent/3040",[1526,5.301]],["name/3041",[216,51.705]],["parent/3041",[1526,5.301]],["name/3042",[174,44.459]],["parent/3042",[1526,5.301]],["name/3043",[217,51.705]],["parent/3043",[1526,5.301]],["name/3044",[218,51.705]],["parent/3044",[1526,5.301]],["name/3045",[219,51.705]],["parent/3045",[1526,5.301]],["name/3046",[220,48.159]],["parent/3046",[1526,5.301]],["name/3047",[221,51.705]],["parent/3047",[1526,5.301]],["name/3048",[222,51.705]],["parent/3048",[1479,4.026]],["name/3049",[128,16.909]],["parent/3049",[1527,7.913]],["name/3050",[206,44.055]],["parent/3050",[1528,6.616]],["name/3051",[225,51.705]],["parent/3051",[1528,6.616]],["name/3052",[204,43.293]],["parent/3052",[1528,6.616]],["name/3053",[226,51.705]],["parent/3053",[1528,6.616]],["name/3054",[227,49.098]],["parent/3054",[1528,6.616]],["name/3055",[228,50.503]],["parent/3055",[1220,5.083]],["name/3056",[229,50.503]],["parent/3056",[1220,5.083]],["name/3057",[1529,79.22]],["parent/3057",[1220,5.083]],["name/3058",[2,50.503]],["parent/3058",[1530,4.22]],["name/3059",[1423,74.112]],["parent/3059",[1530,4.22]],["name/3060",[55,49.776]],["parent/3060",[1530,4.22]],["name/3061",[1428,74.112]],["parent/3061",[1530,4.22]],["name/3062",[1531,79.22]],["parent/3062",[1530,4.22]],["name/3063",[128,16.909]],["parent/3063",[1532,7.913]],["name/3064",[1533,79.22]],["parent/3064",[1534,7.913]],["name/3065",[637,63.126]],["parent/3065",[1530,4.22]],["name/3066",[128,16.909]],["parent/3066",[1535,7.913]],["name/3067",[101,50.503]],["parent/3067",[1530,4.22]],["name/3068",[409,51.705]],["parent/3068",[1530,4.22]],["name/3069",[410,51.705]],["parent/3069",[1530,4.22]],["name/3070",[128,16.909]],["parent/3070",[1536,7.913]],["name/3071",[140,50.503]],["parent/3071",[1530,4.22]],["name/3072",[128,16.909]],["parent/3072",[1537,7.913]],["name/3073",[413,51.705]],["parent/3073",[1530,4.22]],["name/3074",[128,16.909]],["parent/3074",[1538,7.913]],["name/3075",[142,50.503]],["parent/3075",[1530,4.22]],["name/3076",[128,16.909]],["parent/3076",[1539,7.913]],["name/3077",[144,50.503]],["parent/3077",[1530,4.22]],["name/3078",[128,16.909]],["parent/3078",[1540,7.913]],["name/3079",[146,50.503]],["parent/3079",[1530,4.22]],["name/3080",[128,16.909]],["parent/3080",[1541,7.913]],["name/3081",[148,50.503]],["parent/3081",[1530,4.22]],["name/3082",[128,16.909]],["parent/3082",[1542,7.913]],["name/3083",[150,50.503]],["parent/3083",[1530,4.22]],["name/3084",[128,16.909]],["parent/3084",[1543,7.913]],["name/3085",[152,50.503]],["parent/3085",[1530,4.22]],["name/3086",[128,16.909]],["parent/3086",[1544,7.913]],["name/3087",[154,50.503]],["parent/3087",[1530,4.22]],["name/3088",[128,16.909]],["parent/3088",[1545,7.913]],["name/3089",[156,50.503]],["parent/3089",[1530,4.22]],["name/3090",[128,16.909]],["parent/3090",[1546,7.913]],["name/3091",[158,50.503]],["parent/3091",[1530,4.22]],["name/3092",[128,16.909]],["parent/3092",[1547,7.913]],["name/3093",[196,50.503]],["parent/3093",[1530,4.22]],["name/3094",[128,16.909]],["parent/3094",[1548,7.913]],["name/3095",[160,50.503]],["parent/3095",[1530,4.22]],["name/3096",[128,16.909]],["parent/3096",[1549,7.913]],["name/3097",[425,51.705]],["parent/3097",[1530,4.22]],["name/3098",[128,16.909]],["parent/3098",[1550,7.913]],["name/3099",[427,51.705]],["parent/3099",[1530,4.22]],["name/3100",[128,16.909]],["parent/3100",[1551,7.913]],["name/3101",[429,51.705]],["parent/3101",[1530,4.22]],["name/3102",[430,51.705]],["parent/3102",[1530,4.22]],["name/3103",[162,50.888]],["parent/3103",[1530,4.22]],["name/3104",[163,50.888]],["parent/3104",[1530,4.22]],["name/3105",[164,50.888]],["parent/3105",[1530,4.22]],["name/3106",[165,51.705]],["parent/3106",[1530,4.22]],["name/3107",[166,51.705]],["parent/3107",[1530,4.22]],["name/3108",[167,50.888]],["parent/3108",[1530,4.22]],["name/3109",[168,50.888]],["parent/3109",[1530,4.22]],["name/3110",[169,50.888]],["parent/3110",[1530,4.22]],["name/3111",[170,50.888]],["parent/3111",[1530,4.22]],["name/3112",[128,16.909]],["parent/3112",[1552,7.913]],["name/3113",[172,50.888]],["parent/3113",[1530,4.22]],["name/3114",[128,16.909]],["parent/3114",[1553,7.913]],["name/3115",[174,44.459]],["parent/3115",[1530,4.22]],["name/3116",[128,16.909]],["parent/3116",[1554,7.913]],["name/3117",[176,52.14]],["parent/3117",[1530,4.22]],["name/3118",[128,16.909]],["parent/3118",[1555,7.913]],["name/3119",[178,50.888]],["parent/3119",[1530,4.22]],["name/3120",[128,16.909]],["parent/3120",[1556,7.913]],["name/3121",[180,50.888]],["parent/3121",[1530,4.22]],["name/3122",[181,50.888]],["parent/3122",[1530,4.22]],["name/3123",[182,50.888]],["parent/3123",[1530,4.22]],["name/3124",[183,50.888]],["parent/3124",[1530,4.22]],["name/3125",[184,50.888]],["parent/3125",[1530,4.22]],["name/3126",[185,50.888]],["parent/3126",[1530,4.22]],["name/3127",[186,50.503]],["parent/3127",[1530,4.22]],["name/3128",[187,50.888]],["parent/3128",[1530,4.22]],["name/3129",[188,50.888]],["parent/3129",[1530,4.22]],["name/3130",[189,50.888]],["parent/3130",[1530,4.22]],["name/3131",[190,50.888]],["parent/3131",[1530,4.22]],["name/3132",[191,50.888]],["parent/3132",[1530,4.22]],["name/3133",[192,50.888]],["parent/3133",[1530,4.22]],["name/3134",[193,50.888]],["parent/3134",[1530,4.22]],["name/3135",[194,50.888]],["parent/3135",[1530,4.22]],["name/3136",[195,50.888]],["parent/3136",[1530,4.22]],["name/3137",[197,50.888]],["parent/3137",[1530,4.22]],["name/3138",[198,50.888]],["parent/3138",[1530,4.22]],["name/3139",[199,51.705]],["parent/3139",[1530,4.22]],["name/3140",[200,51.705]],["parent/3140",[1530,4.22]],["name/3141",[128,16.909]],["parent/3141",[1557,7.913]],["name/3142",[202,51.705]],["parent/3142",[1558,5.301]],["name/3143",[204,43.293]],["parent/3143",[1558,5.301]],["name/3144",[205,50.503]],["parent/3144",[1558,5.301]],["name/3145",[206,44.055]],["parent/3145",[1558,5.301]],["name/3146",[207,51.705]],["parent/3146",[1558,5.301]],["name/3147",[208,51.705]],["parent/3147",[1558,5.301]],["name/3148",[209,51.705]],["parent/3148",[1558,5.301]],["name/3149",[210,50.888]],["parent/3149",[1558,5.301]],["name/3150",[211,51.705]],["parent/3150",[1558,5.301]],["name/3151",[212,50.888]],["parent/3151",[1558,5.301]],["name/3152",[213,51.705]],["parent/3152",[1558,5.301]],["name/3153",[214,51.705]],["parent/3153",[1558,5.301]],["name/3154",[215,51.705]],["parent/3154",[1558,5.301]],["name/3155",[216,51.705]],["parent/3155",[1558,5.301]],["name/3156",[174,44.459]],["parent/3156",[1558,5.301]],["name/3157",[217,51.705]],["parent/3157",[1558,5.301]],["name/3158",[218,51.705]],["parent/3158",[1558,5.301]],["name/3159",[219,51.705]],["parent/3159",[1558,5.301]],["name/3160",[220,48.159]],["parent/3160",[1558,5.301]],["name/3161",[221,51.705]],["parent/3161",[1558,5.301]],["name/3162",[222,51.705]],["parent/3162",[1530,4.22]],["name/3163",[128,16.909]],["parent/3163",[1559,7.913]],["name/3164",[206,44.055]],["parent/3164",[1560,6.616]],["name/3165",[225,51.705]],["parent/3165",[1560,6.616]],["name/3166",[204,43.293]],["parent/3166",[1560,6.616]],["name/3167",[226,51.705]],["parent/3167",[1560,6.616]],["name/3168",[227,49.098]],["parent/3168",[1560,6.616]],["name/3169",[228,50.503]],["parent/3169",[1220,5.083]],["name/3170",[229,50.503]],["parent/3170",[1220,5.083]],["name/3171",[1561,79.22]],["parent/3171",[1220,5.083]],["name/3172",[2,50.503]],["parent/3172",[1562,4.188]],["name/3173",[1563,79.22]],["parent/3173",[1562,4.188]],["name/3174",[1564,79.22]],["parent/3174",[1562,4.188]],["name/3175",[55,49.776]],["parent/3175",[1562,4.188]],["name/3176",[1237,66.227]],["parent/3176",[1562,4.188]],["name/3177",[1565,79.22]],["parent/3177",[1562,4.188]],["name/3178",[128,16.909]],["parent/3178",[1566,7.913]],["name/3179",[1034,66.227]],["parent/3179",[1567,7.067]],["name/3180",[318,68.234]],["parent/3180",[1567,7.067]],["name/3181",[1036,68.234]],["parent/3181",[1567,7.067]],["name/3182",[430,51.705]],["parent/3182",[1562,4.188]],["name/3183",[1500,74.112]],["parent/3183",[1562,4.188]],["name/3184",[128,16.909]],["parent/3184",[1568,7.913]],["name/3185",[254,58.018]],["parent/3185",[1562,4.188]],["name/3186",[128,16.909]],["parent/3186",[1569,7.913]],["name/3187",[101,50.503]],["parent/3187",[1562,4.188]],["name/3188",[409,51.705]],["parent/3188",[1562,4.188]],["name/3189",[410,51.705]],["parent/3189",[1562,4.188]],["name/3190",[128,16.909]],["parent/3190",[1570,7.913]],["name/3191",[140,50.503]],["parent/3191",[1562,4.188]],["name/3192",[128,16.909]],["parent/3192",[1571,7.913]],["name/3193",[413,51.705]],["parent/3193",[1562,4.188]],["name/3194",[128,16.909]],["parent/3194",[1572,7.913]],["name/3195",[142,50.503]],["parent/3195",[1562,4.188]],["name/3196",[128,16.909]],["parent/3196",[1573,7.913]],["name/3197",[144,50.503]],["parent/3197",[1562,4.188]],["name/3198",[128,16.909]],["parent/3198",[1574,7.913]],["name/3199",[146,50.503]],["parent/3199",[1562,4.188]],["name/3200",[128,16.909]],["parent/3200",[1575,7.913]],["name/3201",[148,50.503]],["parent/3201",[1562,4.188]],["name/3202",[128,16.909]],["parent/3202",[1576,7.913]],["name/3203",[150,50.503]],["parent/3203",[1562,4.188]],["name/3204",[128,16.909]],["parent/3204",[1577,7.913]],["name/3205",[152,50.503]],["parent/3205",[1562,4.188]],["name/3206",[128,16.909]],["parent/3206",[1578,7.913]],["name/3207",[154,50.503]],["parent/3207",[1562,4.188]],["name/3208",[128,16.909]],["parent/3208",[1579,7.913]],["name/3209",[156,50.503]],["parent/3209",[1562,4.188]],["name/3210",[128,16.909]],["parent/3210",[1580,7.913]],["name/3211",[158,50.503]],["parent/3211",[1562,4.188]],["name/3212",[128,16.909]],["parent/3212",[1581,7.913]],["name/3213",[196,50.503]],["parent/3213",[1562,4.188]],["name/3214",[128,16.909]],["parent/3214",[1582,7.913]],["name/3215",[160,50.503]],["parent/3215",[1562,4.188]],["name/3216",[128,16.909]],["parent/3216",[1583,7.913]],["name/3217",[425,51.705]],["parent/3217",[1562,4.188]],["name/3218",[128,16.909]],["parent/3218",[1584,7.913]],["name/3219",[427,51.705]],["parent/3219",[1562,4.188]],["name/3220",[128,16.909]],["parent/3220",[1585,7.913]],["name/3221",[429,51.705]],["parent/3221",[1562,4.188]],["name/3222",[162,50.888]],["parent/3222",[1562,4.188]],["name/3223",[163,50.888]],["parent/3223",[1562,4.188]],["name/3224",[164,50.888]],["parent/3224",[1562,4.188]],["name/3225",[165,51.705]],["parent/3225",[1562,4.188]],["name/3226",[166,51.705]],["parent/3226",[1562,4.188]],["name/3227",[167,50.888]],["parent/3227",[1562,4.188]],["name/3228",[168,50.888]],["parent/3228",[1562,4.188]],["name/3229",[169,50.888]],["parent/3229",[1562,4.188]],["name/3230",[170,50.888]],["parent/3230",[1562,4.188]],["name/3231",[128,16.909]],["parent/3231",[1586,7.913]],["name/3232",[172,50.888]],["parent/3232",[1562,4.188]],["name/3233",[128,16.909]],["parent/3233",[1587,7.913]],["name/3234",[174,44.459]],["parent/3234",[1562,4.188]],["name/3235",[128,16.909]],["parent/3235",[1588,7.913]],["name/3236",[176,52.14]],["parent/3236",[1562,4.188]],["name/3237",[128,16.909]],["parent/3237",[1589,7.913]],["name/3238",[178,50.888]],["parent/3238",[1562,4.188]],["name/3239",[128,16.909]],["parent/3239",[1590,7.913]],["name/3240",[180,50.888]],["parent/3240",[1562,4.188]],["name/3241",[181,50.888]],["parent/3241",[1562,4.188]],["name/3242",[182,50.888]],["parent/3242",[1562,4.188]],["name/3243",[183,50.888]],["parent/3243",[1562,4.188]],["name/3244",[184,50.888]],["parent/3244",[1562,4.188]],["name/3245",[185,50.888]],["parent/3245",[1562,4.188]],["name/3246",[186,50.503]],["parent/3246",[1562,4.188]],["name/3247",[187,50.888]],["parent/3247",[1562,4.188]],["name/3248",[188,50.888]],["parent/3248",[1562,4.188]],["name/3249",[189,50.888]],["parent/3249",[1562,4.188]],["name/3250",[190,50.888]],["parent/3250",[1562,4.188]],["name/3251",[191,50.888]],["parent/3251",[1562,4.188]],["name/3252",[192,50.888]],["parent/3252",[1562,4.188]],["name/3253",[193,50.888]],["parent/3253",[1562,4.188]],["name/3254",[194,50.888]],["parent/3254",[1562,4.188]],["name/3255",[195,50.888]],["parent/3255",[1562,4.188]],["name/3256",[197,50.888]],["parent/3256",[1562,4.188]],["name/3257",[198,50.888]],["parent/3257",[1562,4.188]],["name/3258",[199,51.705]],["parent/3258",[1562,4.188]],["name/3259",[200,51.705]],["parent/3259",[1562,4.188]],["name/3260",[128,16.909]],["parent/3260",[1591,7.913]],["name/3261",[202,51.705]],["parent/3261",[1592,5.301]],["name/3262",[204,43.293]],["parent/3262",[1592,5.301]],["name/3263",[205,50.503]],["parent/3263",[1592,5.301]],["name/3264",[206,44.055]],["parent/3264",[1592,5.301]],["name/3265",[207,51.705]],["parent/3265",[1592,5.301]],["name/3266",[208,51.705]],["parent/3266",[1592,5.301]],["name/3267",[209,51.705]],["parent/3267",[1592,5.301]],["name/3268",[210,50.888]],["parent/3268",[1592,5.301]],["name/3269",[211,51.705]],["parent/3269",[1592,5.301]],["name/3270",[212,50.888]],["parent/3270",[1592,5.301]],["name/3271",[213,51.705]],["parent/3271",[1592,5.301]],["name/3272",[214,51.705]],["parent/3272",[1592,5.301]],["name/3273",[215,51.705]],["parent/3273",[1592,5.301]],["name/3274",[216,51.705]],["parent/3274",[1592,5.301]],["name/3275",[174,44.459]],["parent/3275",[1592,5.301]],["name/3276",[217,51.705]],["parent/3276",[1592,5.301]],["name/3277",[218,51.705]],["parent/3277",[1592,5.301]],["name/3278",[219,51.705]],["parent/3278",[1592,5.301]],["name/3279",[220,48.159]],["parent/3279",[1592,5.301]],["name/3280",[221,51.705]],["parent/3280",[1592,5.301]],["name/3281",[222,51.705]],["parent/3281",[1562,4.188]],["name/3282",[128,16.909]],["parent/3282",[1593,7.913]],["name/3283",[206,44.055]],["parent/3283",[1594,6.616]],["name/3284",[225,51.705]],["parent/3284",[1594,6.616]],["name/3285",[204,43.293]],["parent/3285",[1594,6.616]],["name/3286",[226,51.705]],["parent/3286",[1594,6.616]],["name/3287",[227,49.098]],["parent/3287",[1594,6.616]],["name/3288",[228,50.503]],["parent/3288",[1220,5.083]],["name/3289",[229,50.503]],["parent/3289",[1220,5.083]],["name/3290",[1240,70.747]],["parent/3290",[1220,5.083]],["name/3291",[2,50.503]],["parent/3291",[1595,4.082]],["name/3292",[1596,79.22]],["parent/3292",[1595,4.082]],["name/3293",[1597,79.22]],["parent/3293",[1595,4.082]],["name/3294",[1598,79.22]],["parent/3294",[1595,4.082]],["name/3295",[1599,79.22]],["parent/3295",[1595,4.082]],["name/3296",[1600,79.22]],["parent/3296",[1595,4.082]],["name/3297",[55,49.776]],["parent/3297",[1595,4.082]],["name/3298",[1601,79.22]],["parent/3298",[1595,4.082]],["name/3299",[1602,79.22]],["parent/3299",[1595,4.082]],["name/3300",[1603,79.22]],["parent/3300",[1595,4.082]],["name/3301",[128,16.909]],["parent/3301",[1604,7.913]],["name/3302",[1605,79.22]],["parent/3302",[1606,7.403]],["name/3303",[1607,79.22]],["parent/3303",[1606,7.403]],["name/3304",[1608,79.22]],["parent/3304",[1595,4.082]],["name/3305",[128,16.909]],["parent/3305",[1609,7.913]],["name/3306",[1610,79.22]],["parent/3306",[1611,7.913]],["name/3307",[1612,79.22]],["parent/3307",[1595,4.082]],["name/3308",[128,16.909]],["parent/3308",[1613,7.913]],["name/3309",[1614,79.22]],["parent/3309",[1595,4.082]],["name/3310",[128,16.909]],["parent/3310",[1615,7.913]],["name/3311",[1332,74.112]],["parent/3311",[1595,4.082]],["name/3312",[128,16.909]],["parent/3312",[1616,7.913]],["name/3313",[1617,79.22]],["parent/3313",[1595,4.082]],["name/3314",[128,16.909]],["parent/3314",[1618,7.913]],["name/3315",[101,50.503]],["parent/3315",[1595,4.082]],["name/3316",[409,51.705]],["parent/3316",[1595,4.082]],["name/3317",[410,51.705]],["parent/3317",[1595,4.082]],["name/3318",[128,16.909]],["parent/3318",[1619,7.913]],["name/3319",[140,50.503]],["parent/3319",[1595,4.082]],["name/3320",[128,16.909]],["parent/3320",[1620,7.913]],["name/3321",[413,51.705]],["parent/3321",[1595,4.082]],["name/3322",[128,16.909]],["parent/3322",[1621,7.913]],["name/3323",[142,50.503]],["parent/3323",[1595,4.082]],["name/3324",[128,16.909]],["parent/3324",[1622,7.913]],["name/3325",[144,50.503]],["parent/3325",[1595,4.082]],["name/3326",[128,16.909]],["parent/3326",[1623,7.913]],["name/3327",[146,50.503]],["parent/3327",[1595,4.082]],["name/3328",[128,16.909]],["parent/3328",[1624,7.913]],["name/3329",[148,50.503]],["parent/3329",[1595,4.082]],["name/3330",[128,16.909]],["parent/3330",[1625,7.913]],["name/3331",[150,50.503]],["parent/3331",[1595,4.082]],["name/3332",[128,16.909]],["parent/3332",[1626,7.913]],["name/3333",[152,50.503]],["parent/3333",[1595,4.082]],["name/3334",[128,16.909]],["parent/3334",[1627,7.913]],["name/3335",[154,50.503]],["parent/3335",[1595,4.082]],["name/3336",[128,16.909]],["parent/3336",[1628,7.913]],["name/3337",[156,50.503]],["parent/3337",[1595,4.082]],["name/3338",[128,16.909]],["parent/3338",[1629,7.913]],["name/3339",[158,50.503]],["parent/3339",[1595,4.082]],["name/3340",[128,16.909]],["parent/3340",[1630,7.913]],["name/3341",[196,50.503]],["parent/3341",[1595,4.082]],["name/3342",[128,16.909]],["parent/3342",[1631,7.913]],["name/3343",[160,50.503]],["parent/3343",[1595,4.082]],["name/3344",[128,16.909]],["parent/3344",[1632,7.913]],["name/3345",[425,51.705]],["parent/3345",[1595,4.082]],["name/3346",[128,16.909]],["parent/3346",[1633,7.913]],["name/3347",[427,51.705]],["parent/3347",[1595,4.082]],["name/3348",[128,16.909]],["parent/3348",[1634,7.913]],["name/3349",[429,51.705]],["parent/3349",[1595,4.082]],["name/3350",[430,51.705]],["parent/3350",[1595,4.082]],["name/3351",[162,50.888]],["parent/3351",[1595,4.082]],["name/3352",[163,50.888]],["parent/3352",[1595,4.082]],["name/3353",[164,50.888]],["parent/3353",[1595,4.082]],["name/3354",[165,51.705]],["parent/3354",[1595,4.082]],["name/3355",[166,51.705]],["parent/3355",[1595,4.082]],["name/3356",[167,50.888]],["parent/3356",[1595,4.082]],["name/3357",[168,50.888]],["parent/3357",[1595,4.082]],["name/3358",[169,50.888]],["parent/3358",[1595,4.082]],["name/3359",[170,50.888]],["parent/3359",[1595,4.082]],["name/3360",[128,16.909]],["parent/3360",[1635,7.913]],["name/3361",[172,50.888]],["parent/3361",[1595,4.082]],["name/3362",[128,16.909]],["parent/3362",[1636,7.913]],["name/3363",[174,44.459]],["parent/3363",[1595,4.082]],["name/3364",[128,16.909]],["parent/3364",[1637,7.913]],["name/3365",[176,52.14]],["parent/3365",[1595,4.082]],["name/3366",[128,16.909]],["parent/3366",[1638,7.913]],["name/3367",[178,50.888]],["parent/3367",[1595,4.082]],["name/3368",[128,16.909]],["parent/3368",[1639,7.913]],["name/3369",[180,50.888]],["parent/3369",[1595,4.082]],["name/3370",[181,50.888]],["parent/3370",[1595,4.082]],["name/3371",[182,50.888]],["parent/3371",[1595,4.082]],["name/3372",[183,50.888]],["parent/3372",[1595,4.082]],["name/3373",[184,50.888]],["parent/3373",[1595,4.082]],["name/3374",[185,50.888]],["parent/3374",[1595,4.082]],["name/3375",[186,50.503]],["parent/3375",[1595,4.082]],["name/3376",[187,50.888]],["parent/3376",[1595,4.082]],["name/3377",[188,50.888]],["parent/3377",[1595,4.082]],["name/3378",[189,50.888]],["parent/3378",[1595,4.082]],["name/3379",[190,50.888]],["parent/3379",[1595,4.082]],["name/3380",[191,50.888]],["parent/3380",[1595,4.082]],["name/3381",[192,50.888]],["parent/3381",[1595,4.082]],["name/3382",[193,50.888]],["parent/3382",[1595,4.082]],["name/3383",[194,50.888]],["parent/3383",[1595,4.082]],["name/3384",[195,50.888]],["parent/3384",[1595,4.082]],["name/3385",[197,50.888]],["parent/3385",[1595,4.082]],["name/3386",[198,50.888]],["parent/3386",[1595,4.082]],["name/3387",[199,51.705]],["parent/3387",[1595,4.082]],["name/3388",[200,51.705]],["parent/3388",[1595,4.082]],["name/3389",[128,16.909]],["parent/3389",[1640,7.913]],["name/3390",[202,51.705]],["parent/3390",[1641,5.301]],["name/3391",[204,43.293]],["parent/3391",[1641,5.301]],["name/3392",[205,50.503]],["parent/3392",[1641,5.301]],["name/3393",[206,44.055]],["parent/3393",[1641,5.301]],["name/3394",[207,51.705]],["parent/3394",[1641,5.301]],["name/3395",[208,51.705]],["parent/3395",[1641,5.301]],["name/3396",[209,51.705]],["parent/3396",[1641,5.301]],["name/3397",[210,50.888]],["parent/3397",[1641,5.301]],["name/3398",[211,51.705]],["parent/3398",[1641,5.301]],["name/3399",[212,50.888]],["parent/3399",[1641,5.301]],["name/3400",[213,51.705]],["parent/3400",[1641,5.301]],["name/3401",[214,51.705]],["parent/3401",[1641,5.301]],["name/3402",[215,51.705]],["parent/3402",[1641,5.301]],["name/3403",[216,51.705]],["parent/3403",[1641,5.301]],["name/3404",[174,44.459]],["parent/3404",[1641,5.301]],["name/3405",[217,51.705]],["parent/3405",[1641,5.301]],["name/3406",[218,51.705]],["parent/3406",[1641,5.301]],["name/3407",[219,51.705]],["parent/3407",[1641,5.301]],["name/3408",[220,48.159]],["parent/3408",[1641,5.301]],["name/3409",[221,51.705]],["parent/3409",[1641,5.301]],["name/3410",[222,51.705]],["parent/3410",[1595,4.082]],["name/3411",[128,16.909]],["parent/3411",[1642,7.913]],["name/3412",[206,44.055]],["parent/3412",[1643,6.616]],["name/3413",[225,51.705]],["parent/3413",[1643,6.616]],["name/3414",[204,43.293]],["parent/3414",[1643,6.616]],["name/3415",[226,51.705]],["parent/3415",[1643,6.616]],["name/3416",[227,49.098]],["parent/3416",[1643,6.616]],["name/3417",[228,50.503]],["parent/3417",[1220,5.083]],["name/3418",[229,50.503]],["parent/3418",[1220,5.083]],["name/3419",[396,55.866]],["parent/3419",[]],["name/3420",[1644,74.112]],["parent/3420",[396,5.581]],["name/3421",[2,50.503]],["parent/3421",[1645,3.407]],["name/3422",[1646,79.22]],["parent/3422",[1645,3.407]],["name/3423",[1647,79.22]],["parent/3423",[1645,3.407]],["name/3424",[1648,79.22]],["parent/3424",[1645,3.407]],["name/3425",[1649,79.22]],["parent/3425",[1645,3.407]],["name/3426",[1650,79.22]],["parent/3426",[1645,3.407]],["name/3427",[1651,79.22]],["parent/3427",[1645,3.407]],["name/3428",[1652,79.22]],["parent/3428",[1645,3.407]],["name/3429",[1653,79.22]],["parent/3429",[1645,3.407]],["name/3430",[1654,79.22]],["parent/3430",[1645,3.407]],["name/3431",[1655,79.22]],["parent/3431",[1645,3.407]],["name/3432",[1656,79.22]],["parent/3432",[1645,3.407]],["name/3433",[1657,79.22]],["parent/3433",[1645,3.407]],["name/3434",[1658,79.22]],["parent/3434",[1645,3.407]],["name/3435",[1659,79.22]],["parent/3435",[1645,3.407]],["name/3436",[1660,79.22]],["parent/3436",[1645,3.407]],["name/3437",[1661,79.22]],["parent/3437",[1645,3.407]],["name/3438",[1662,79.22]],["parent/3438",[1645,3.407]],["name/3439",[1663,79.22]],["parent/3439",[1645,3.407]],["name/3440",[1664,79.22]],["parent/3440",[1645,3.407]],["name/3441",[1665,79.22]],["parent/3441",[1645,3.407]],["name/3442",[1666,79.22]],["parent/3442",[1645,3.407]],["name/3443",[1667,79.22]],["parent/3443",[1645,3.407]],["name/3444",[1668,79.22]],["parent/3444",[1645,3.407]],["name/3445",[1669,79.22]],["parent/3445",[1645,3.407]],["name/3446",[1670,79.22]],["parent/3446",[1645,3.407]],["name/3447",[1671,79.22]],["parent/3447",[1645,3.407]],["name/3448",[1672,79.22]],["parent/3448",[1645,3.407]],["name/3449",[1673,79.22]],["parent/3449",[1645,3.407]],["name/3450",[1674,79.22]],["parent/3450",[1645,3.407]],["name/3451",[1675,79.22]],["parent/3451",[1645,3.407]],["name/3452",[1676,79.22]],["parent/3452",[1645,3.407]],["name/3453",[1677,79.22]],["parent/3453",[1645,3.407]],["name/3454",[55,49.776]],["parent/3454",[1645,3.407]],["name/3455",[162,50.888]],["parent/3455",[1645,3.407]],["name/3456",[1678,79.22]],["parent/3456",[1645,3.407]],["name/3457",[1679,79.22]],["parent/3457",[1645,3.407]],["name/3458",[1680,79.22]],["parent/3458",[1645,3.407]],["name/3459",[1681,74.112]],["parent/3459",[1645,3.407]],["name/3460",[738,68.234]],["parent/3460",[1645,3.407]],["name/3461",[1682,79.22]],["parent/3461",[1645,3.407]],["name/3462",[1683,74.112]],["parent/3462",[1645,3.407]],["name/3463",[1684,79.22]],["parent/3463",[1645,3.407]],["name/3464",[1685,79.22]],["parent/3464",[1645,3.407]],["name/3465",[744,64.557]],["parent/3465",[1645,3.407]],["name/3466",[1686,74.112]],["parent/3466",[1645,3.407]],["name/3467",[1687,79.22]],["parent/3467",[1645,3.407]],["name/3468",[1688,79.22]],["parent/3468",[1645,3.407]],["name/3469",[1689,79.22]],["parent/3469",[1645,3.407]],["name/3470",[1690,79.22]],["parent/3470",[1645,3.407]],["name/3471",[750,64.557]],["parent/3471",[1645,3.407]],["name/3472",[1691,79.22]],["parent/3472",[1645,3.407]],["name/3473",[753,66.227]],["parent/3473",[1645,3.407]],["name/3474",[755,66.227]],["parent/3474",[1645,3.407]],["name/3475",[1692,74.112]],["parent/3475",[1645,3.407]],["name/3476",[1693,74.112]],["parent/3476",[1645,3.407]],["name/3477",[1694,79.22]],["parent/3477",[1645,3.407]],["name/3478",[1695,79.22]],["parent/3478",[1645,3.407]],["name/3479",[1696,74.112]],["parent/3479",[1645,3.407]],["name/3480",[1697,79.22]],["parent/3480",[1645,3.407]],["name/3481",[765,66.227]],["parent/3481",[1645,3.407]],["name/3482",[1644,74.112]],["parent/3482",[1645,3.407]],["name/3483",[1698,79.22]],["parent/3483",[1645,3.407]],["name/3484",[1699,74.112]],["parent/3484",[1645,3.407]],["name/3485",[1700,74.112]],["parent/3485",[1645,3.407]],["name/3486",[1701,79.22]],["parent/3486",[1645,3.407]],["name/3487",[1702,79.22]],["parent/3487",[1645,3.407]],["name/3488",[1703,74.112]],["parent/3488",[1645,3.407]],["name/3489",[396,55.866]],["parent/3489",[1645,3.407]],["name/3490",[1704,79.22]],["parent/3490",[1645,3.407]],["name/3491",[1705,79.22]],["parent/3491",[1645,3.407]],["name/3492",[778,64.557]],["parent/3492",[1645,3.407]],["name/3493",[1706,74.112]],["parent/3493",[1645,3.407]],["name/3494",[1707,79.22]],["parent/3494",[1645,3.407]],["name/3495",[1708,74.112]],["parent/3495",[1645,3.407]],["name/3496",[1709,79.22]],["parent/3496",[1645,3.407]],["name/3497",[1710,79.22]],["parent/3497",[1645,3.407]],["name/3498",[1711,79.22]],["parent/3498",[1645,3.407]],["name/3499",[101,50.503]],["parent/3499",[1645,3.407]],["name/3500",[1712,79.22]],["parent/3500",[1645,3.407]],["name/3501",[128,16.909]],["parent/3501",[1713,7.913]],["name/3502",[637,63.126]],["parent/3502",[1645,3.407]],["name/3503",[128,16.909]],["parent/3503",[1714,7.913]],["name/3504",[142,50.503]],["parent/3504",[1645,3.407]],["name/3505",[128,16.909]],["parent/3505",[1715,7.913]],["name/3506",[254,58.018]],["parent/3506",[1645,3.407]],["name/3507",[128,16.909]],["parent/3507",[1716,7.913]],["name/3508",[148,50.503]],["parent/3508",[1645,3.407]],["name/3509",[128,16.909]],["parent/3509",[1717,7.913]],["name/3510",[1718,79.22]],["parent/3510",[1645,3.407]],["name/3511",[128,16.909]],["parent/3511",[1719,7.913]],["name/3512",[646,61.874]],["parent/3512",[1645,3.407]],["name/3513",[128,16.909]],["parent/3513",[1720,7.913]],["name/3514",[160,50.503]],["parent/3514",[1645,3.407]],["name/3515",[128,16.909]],["parent/3515",[1721,7.913]],["name/3516",[409,51.705]],["parent/3516",[1645,3.407]],["name/3517",[410,51.705]],["parent/3517",[1645,3.407]],["name/3518",[128,16.909]],["parent/3518",[1722,7.913]],["name/3519",[140,50.503]],["parent/3519",[1645,3.407]],["name/3520",[128,16.909]],["parent/3520",[1723,7.913]],["name/3521",[413,51.705]],["parent/3521",[1645,3.407]],["name/3522",[128,16.909]],["parent/3522",[1724,7.913]],["name/3523",[144,50.503]],["parent/3523",[1645,3.407]],["name/3524",[128,16.909]],["parent/3524",[1725,7.913]],["name/3525",[146,50.503]],["parent/3525",[1645,3.407]],["name/3526",[128,16.909]],["parent/3526",[1726,7.913]],["name/3527",[150,50.503]],["parent/3527",[1645,3.407]],["name/3528",[128,16.909]],["parent/3528",[1727,7.913]],["name/3529",[152,50.503]],["parent/3529",[1645,3.407]],["name/3530",[128,16.909]],["parent/3530",[1728,7.913]],["name/3531",[154,50.503]],["parent/3531",[1645,3.407]],["name/3532",[128,16.909]],["parent/3532",[1729,7.913]],["name/3533",[156,50.503]],["parent/3533",[1645,3.407]],["name/3534",[128,16.909]],["parent/3534",[1730,7.913]],["name/3535",[158,50.503]],["parent/3535",[1645,3.407]],["name/3536",[128,16.909]],["parent/3536",[1731,7.913]],["name/3537",[196,50.503]],["parent/3537",[1645,3.407]],["name/3538",[128,16.909]],["parent/3538",[1732,7.913]],["name/3539",[425,51.705]],["parent/3539",[1645,3.407]],["name/3540",[128,16.909]],["parent/3540",[1733,7.913]],["name/3541",[427,51.705]],["parent/3541",[1645,3.407]],["name/3542",[128,16.909]],["parent/3542",[1734,7.913]],["name/3543",[429,51.705]],["parent/3543",[1645,3.407]],["name/3544",[430,51.705]],["parent/3544",[1645,3.407]],["name/3545",[163,50.888]],["parent/3545",[1645,3.407]],["name/3546",[164,50.888]],["parent/3546",[1645,3.407]],["name/3547",[165,51.705]],["parent/3547",[1645,3.407]],["name/3548",[166,51.705]],["parent/3548",[1645,3.407]],["name/3549",[167,50.888]],["parent/3549",[1645,3.407]],["name/3550",[168,50.888]],["parent/3550",[1645,3.407]],["name/3551",[169,50.888]],["parent/3551",[1645,3.407]],["name/3552",[170,50.888]],["parent/3552",[1645,3.407]],["name/3553",[128,16.909]],["parent/3553",[1735,7.913]],["name/3554",[172,50.888]],["parent/3554",[1645,3.407]],["name/3555",[128,16.909]],["parent/3555",[1736,7.913]],["name/3556",[174,44.459]],["parent/3556",[1645,3.407]],["name/3557",[128,16.909]],["parent/3557",[1737,7.913]],["name/3558",[176,52.14]],["parent/3558",[1645,3.407]],["name/3559",[128,16.909]],["parent/3559",[1738,7.913]],["name/3560",[178,50.888]],["parent/3560",[1645,3.407]],["name/3561",[128,16.909]],["parent/3561",[1739,7.913]],["name/3562",[180,50.888]],["parent/3562",[1645,3.407]],["name/3563",[181,50.888]],["parent/3563",[1645,3.407]],["name/3564",[182,50.888]],["parent/3564",[1645,3.407]],["name/3565",[183,50.888]],["parent/3565",[1645,3.407]],["name/3566",[184,50.888]],["parent/3566",[1645,3.407]],["name/3567",[185,50.888]],["parent/3567",[1645,3.407]],["name/3568",[186,50.503]],["parent/3568",[1645,3.407]],["name/3569",[187,50.888]],["parent/3569",[1645,3.407]],["name/3570",[188,50.888]],["parent/3570",[1645,3.407]],["name/3571",[189,50.888]],["parent/3571",[1645,3.407]],["name/3572",[190,50.888]],["parent/3572",[1645,3.407]],["name/3573",[191,50.888]],["parent/3573",[1645,3.407]],["name/3574",[192,50.888]],["parent/3574",[1645,3.407]],["name/3575",[193,50.888]],["parent/3575",[1645,3.407]],["name/3576",[194,50.888]],["parent/3576",[1645,3.407]],["name/3577",[195,50.888]],["parent/3577",[1645,3.407]],["name/3578",[197,50.888]],["parent/3578",[1645,3.407]],["name/3579",[198,50.888]],["parent/3579",[1645,3.407]],["name/3580",[199,51.705]],["parent/3580",[1645,3.407]],["name/3581",[200,51.705]],["parent/3581",[1645,3.407]],["name/3582",[128,16.909]],["parent/3582",[1740,7.913]],["name/3583",[202,51.705]],["parent/3583",[1741,5.301]],["name/3584",[204,43.293]],["parent/3584",[1741,5.301]],["name/3585",[205,50.503]],["parent/3585",[1741,5.301]],["name/3586",[206,44.055]],["parent/3586",[1741,5.301]],["name/3587",[207,51.705]],["parent/3587",[1741,5.301]],["name/3588",[208,51.705]],["parent/3588",[1741,5.301]],["name/3589",[209,51.705]],["parent/3589",[1741,5.301]],["name/3590",[210,50.888]],["parent/3590",[1741,5.301]],["name/3591",[211,51.705]],["parent/3591",[1741,5.301]],["name/3592",[212,50.888]],["parent/3592",[1741,5.301]],["name/3593",[213,51.705]],["parent/3593",[1741,5.301]],["name/3594",[214,51.705]],["parent/3594",[1741,5.301]],["name/3595",[215,51.705]],["parent/3595",[1741,5.301]],["name/3596",[216,51.705]],["parent/3596",[1741,5.301]],["name/3597",[174,44.459]],["parent/3597",[1741,5.301]],["name/3598",[217,51.705]],["parent/3598",[1741,5.301]],["name/3599",[218,51.705]],["parent/3599",[1741,5.301]],["name/3600",[219,51.705]],["parent/3600",[1741,5.301]],["name/3601",[220,48.159]],["parent/3601",[1741,5.301]],["name/3602",[221,51.705]],["parent/3602",[1741,5.301]],["name/3603",[222,51.705]],["parent/3603",[1645,3.407]],["name/3604",[128,16.909]],["parent/3604",[1742,7.913]],["name/3605",[206,44.055]],["parent/3605",[1743,6.616]],["name/3606",[225,51.705]],["parent/3606",[1743,6.616]],["name/3607",[204,43.293]],["parent/3607",[1743,6.616]],["name/3608",[226,51.705]],["parent/3608",[1743,6.616]],["name/3609",[227,49.098]],["parent/3609",[1743,6.616]],["name/3610",[228,50.503]],["parent/3610",[396,5.581]],["name/3611",[229,50.503]],["parent/3611",[396,5.581]],["name/3612",[1744,79.22]],["parent/3612",[396,5.581]],["name/3613",[2,50.503]],["parent/3613",[1745,3.557]],["name/3614",[1746,79.22]],["parent/3614",[1745,3.557]],["name/3615",[1747,74.112]],["parent/3615",[1745,3.557]],["name/3616",[1748,79.22]],["parent/3616",[1745,3.557]],["name/3617",[1749,79.22]],["parent/3617",[1745,3.557]],["name/3618",[1750,79.22]],["parent/3618",[1745,3.557]],["name/3619",[1751,79.22]],["parent/3619",[1745,3.557]],["name/3620",[1752,79.22]],["parent/3620",[1745,3.557]],["name/3621",[1753,79.22]],["parent/3621",[1745,3.557]],["name/3622",[1754,79.22]],["parent/3622",[1745,3.557]],["name/3623",[1755,79.22]],["parent/3623",[1745,3.557]],["name/3624",[1756,79.22]],["parent/3624",[1745,3.557]],["name/3625",[1757,79.22]],["parent/3625",[1745,3.557]],["name/3626",[1758,79.22]],["parent/3626",[1745,3.557]],["name/3627",[1759,79.22]],["parent/3627",[1745,3.557]],["name/3628",[1760,79.22]],["parent/3628",[1745,3.557]],["name/3629",[1761,79.22]],["parent/3629",[1745,3.557]],["name/3630",[1762,79.22]],["parent/3630",[1745,3.557]],["name/3631",[1763,79.22]],["parent/3631",[1745,3.557]],["name/3632",[1764,79.22]],["parent/3632",[1745,3.557]],["name/3633",[1765,79.22]],["parent/3633",[1745,3.557]],["name/3634",[1766,79.22]],["parent/3634",[1745,3.557]],["name/3635",[1767,79.22]],["parent/3635",[1745,3.557]],["name/3636",[1768,79.22]],["parent/3636",[1745,3.557]],["name/3637",[1769,79.22]],["parent/3637",[1745,3.557]],["name/3638",[1770,79.22]],["parent/3638",[1745,3.557]],["name/3639",[1771,79.22]],["parent/3639",[1745,3.557]],["name/3640",[1772,79.22]],["parent/3640",[1745,3.557]],["name/3641",[1773,79.22]],["parent/3641",[1745,3.557]],["name/3642",[1774,79.22]],["parent/3642",[1745,3.557]],["name/3643",[1775,79.22]],["parent/3643",[1745,3.557]],["name/3644",[1776,79.22]],["parent/3644",[1745,3.557]],["name/3645",[1777,79.22]],["parent/3645",[1745,3.557]],["name/3646",[1778,79.22]],["parent/3646",[1745,3.557]],["name/3647",[1779,79.22]],["parent/3647",[1745,3.557]],["name/3648",[1780,79.22]],["parent/3648",[1745,3.557]],["name/3649",[55,49.776]],["parent/3649",[1745,3.557]],["name/3650",[162,50.888]],["parent/3650",[1745,3.557]],["name/3651",[1781,79.22]],["parent/3651",[1745,3.557]],["name/3652",[1681,74.112]],["parent/3652",[1745,3.557]],["name/3653",[738,68.234]],["parent/3653",[1745,3.557]],["name/3654",[1782,79.22]],["parent/3654",[1745,3.557]],["name/3655",[744,64.557]],["parent/3655",[1745,3.557]],["name/3656",[1686,74.112]],["parent/3656",[1745,3.557]],["name/3657",[1783,79.22]],["parent/3657",[1745,3.557]],["name/3658",[750,64.557]],["parent/3658",[1745,3.557]],["name/3659",[753,66.227]],["parent/3659",[1745,3.557]],["name/3660",[755,66.227]],["parent/3660",[1745,3.557]],["name/3661",[1692,74.112]],["parent/3661",[1745,3.557]],["name/3662",[1693,74.112]],["parent/3662",[1745,3.557]],["name/3663",[1696,74.112]],["parent/3663",[1745,3.557]],["name/3664",[765,66.227]],["parent/3664",[1745,3.557]],["name/3665",[1699,74.112]],["parent/3665",[1745,3.557]],["name/3666",[1700,74.112]],["parent/3666",[1745,3.557]],["name/3667",[1146,70.747]],["parent/3667",[1745,3.557]],["name/3668",[1703,74.112]],["parent/3668",[1745,3.557]],["name/3669",[396,55.866]],["parent/3669",[1745,3.557]],["name/3670",[1784,79.22]],["parent/3670",[1745,3.557]],["name/3671",[778,64.557]],["parent/3671",[1745,3.557]],["name/3672",[1706,74.112]],["parent/3672",[1745,3.557]],["name/3673",[1785,79.22]],["parent/3673",[1745,3.557]],["name/3674",[101,50.503]],["parent/3674",[1745,3.557]],["name/3675",[646,61.874]],["parent/3675",[1745,3.557]],["name/3676",[128,16.909]],["parent/3676",[1786,7.913]],["name/3677",[254,58.018]],["parent/3677",[1745,3.557]],["name/3678",[128,16.909]],["parent/3678",[1787,7.913]],["name/3679",[1788,79.22]],["parent/3679",[1745,3.557]],["name/3680",[128,16.909]],["parent/3680",[1789,7.913]],["name/3681",[409,51.705]],["parent/3681",[1745,3.557]],["name/3682",[410,51.705]],["parent/3682",[1745,3.557]],["name/3683",[128,16.909]],["parent/3683",[1790,7.913]],["name/3684",[140,50.503]],["parent/3684",[1745,3.557]],["name/3685",[128,16.909]],["parent/3685",[1791,7.913]],["name/3686",[413,51.705]],["parent/3686",[1745,3.557]],["name/3687",[128,16.909]],["parent/3687",[1792,7.913]],["name/3688",[142,50.503]],["parent/3688",[1745,3.557]],["name/3689",[128,16.909]],["parent/3689",[1793,7.913]],["name/3690",[144,50.503]],["parent/3690",[1745,3.557]],["name/3691",[128,16.909]],["parent/3691",[1794,7.913]],["name/3692",[146,50.503]],["parent/3692",[1745,3.557]],["name/3693",[128,16.909]],["parent/3693",[1795,7.913]],["name/3694",[148,50.503]],["parent/3694",[1745,3.557]],["name/3695",[128,16.909]],["parent/3695",[1796,7.913]],["name/3696",[150,50.503]],["parent/3696",[1745,3.557]],["name/3697",[128,16.909]],["parent/3697",[1797,7.913]],["name/3698",[152,50.503]],["parent/3698",[1745,3.557]],["name/3699",[128,16.909]],["parent/3699",[1798,7.913]],["name/3700",[154,50.503]],["parent/3700",[1745,3.557]],["name/3701",[128,16.909]],["parent/3701",[1799,7.913]],["name/3702",[156,50.503]],["parent/3702",[1745,3.557]],["name/3703",[128,16.909]],["parent/3703",[1800,7.913]],["name/3704",[158,50.503]],["parent/3704",[1745,3.557]],["name/3705",[128,16.909]],["parent/3705",[1801,7.913]],["name/3706",[196,50.503]],["parent/3706",[1745,3.557]],["name/3707",[128,16.909]],["parent/3707",[1802,7.913]],["name/3708",[160,50.503]],["parent/3708",[1745,3.557]],["name/3709",[128,16.909]],["parent/3709",[1803,7.913]],["name/3710",[425,51.705]],["parent/3710",[1745,3.557]],["name/3711",[128,16.909]],["parent/3711",[1804,7.913]],["name/3712",[427,51.705]],["parent/3712",[1745,3.557]],["name/3713",[128,16.909]],["parent/3713",[1805,7.913]],["name/3714",[429,51.705]],["parent/3714",[1745,3.557]],["name/3715",[430,51.705]],["parent/3715",[1745,3.557]],["name/3716",[163,50.888]],["parent/3716",[1745,3.557]],["name/3717",[164,50.888]],["parent/3717",[1745,3.557]],["name/3718",[165,51.705]],["parent/3718",[1745,3.557]],["name/3719",[166,51.705]],["parent/3719",[1745,3.557]],["name/3720",[167,50.888]],["parent/3720",[1745,3.557]],["name/3721",[168,50.888]],["parent/3721",[1745,3.557]],["name/3722",[169,50.888]],["parent/3722",[1745,3.557]],["name/3723",[170,50.888]],["parent/3723",[1745,3.557]],["name/3724",[128,16.909]],["parent/3724",[1806,7.913]],["name/3725",[172,50.888]],["parent/3725",[1745,3.557]],["name/3726",[128,16.909]],["parent/3726",[1807,7.913]],["name/3727",[174,44.459]],["parent/3727",[1745,3.557]],["name/3728",[128,16.909]],["parent/3728",[1808,7.913]],["name/3729",[176,52.14]],["parent/3729",[1745,3.557]],["name/3730",[128,16.909]],["parent/3730",[1809,7.913]],["name/3731",[178,50.888]],["parent/3731",[1745,3.557]],["name/3732",[128,16.909]],["parent/3732",[1810,7.913]],["name/3733",[180,50.888]],["parent/3733",[1745,3.557]],["name/3734",[181,50.888]],["parent/3734",[1745,3.557]],["name/3735",[182,50.888]],["parent/3735",[1745,3.557]],["name/3736",[183,50.888]],["parent/3736",[1745,3.557]],["name/3737",[184,50.888]],["parent/3737",[1745,3.557]],["name/3738",[185,50.888]],["parent/3738",[1745,3.557]],["name/3739",[186,50.503]],["parent/3739",[1745,3.557]],["name/3740",[187,50.888]],["parent/3740",[1745,3.557]],["name/3741",[188,50.888]],["parent/3741",[1745,3.557]],["name/3742",[189,50.888]],["parent/3742",[1745,3.557]],["name/3743",[190,50.888]],["parent/3743",[1745,3.557]],["name/3744",[191,50.888]],["parent/3744",[1745,3.557]],["name/3745",[192,50.888]],["parent/3745",[1745,3.557]],["name/3746",[193,50.888]],["parent/3746",[1745,3.557]],["name/3747",[194,50.888]],["parent/3747",[1745,3.557]],["name/3748",[195,50.888]],["parent/3748",[1745,3.557]],["name/3749",[197,50.888]],["parent/3749",[1745,3.557]],["name/3750",[198,50.888]],["parent/3750",[1745,3.557]],["name/3751",[199,51.705]],["parent/3751",[1745,3.557]],["name/3752",[200,51.705]],["parent/3752",[1745,3.557]],["name/3753",[128,16.909]],["parent/3753",[1811,7.913]],["name/3754",[202,51.705]],["parent/3754",[1812,5.301]],["name/3755",[204,43.293]],["parent/3755",[1812,5.301]],["name/3756",[205,50.503]],["parent/3756",[1812,5.301]],["name/3757",[206,44.055]],["parent/3757",[1812,5.301]],["name/3758",[207,51.705]],["parent/3758",[1812,5.301]],["name/3759",[208,51.705]],["parent/3759",[1812,5.301]],["name/3760",[209,51.705]],["parent/3760",[1812,5.301]],["name/3761",[210,50.888]],["parent/3761",[1812,5.301]],["name/3762",[211,51.705]],["parent/3762",[1812,5.301]],["name/3763",[212,50.888]],["parent/3763",[1812,5.301]],["name/3764",[213,51.705]],["parent/3764",[1812,5.301]],["name/3765",[214,51.705]],["parent/3765",[1812,5.301]],["name/3766",[215,51.705]],["parent/3766",[1812,5.301]],["name/3767",[216,51.705]],["parent/3767",[1812,5.301]],["name/3768",[174,44.459]],["parent/3768",[1812,5.301]],["name/3769",[217,51.705]],["parent/3769",[1812,5.301]],["name/3770",[218,51.705]],["parent/3770",[1812,5.301]],["name/3771",[219,51.705]],["parent/3771",[1812,5.301]],["name/3772",[220,48.159]],["parent/3772",[1812,5.301]],["name/3773",[221,51.705]],["parent/3773",[1812,5.301]],["name/3774",[222,51.705]],["parent/3774",[1745,3.557]],["name/3775",[128,16.909]],["parent/3775",[1813,7.913]],["name/3776",[206,44.055]],["parent/3776",[1814,6.616]],["name/3777",[225,51.705]],["parent/3777",[1814,6.616]],["name/3778",[204,43.293]],["parent/3778",[1814,6.616]],["name/3779",[226,51.705]],["parent/3779",[1814,6.616]],["name/3780",[227,49.098]],["parent/3780",[1814,6.616]],["name/3781",[228,50.503]],["parent/3781",[396,5.581]],["name/3782",[229,50.503]],["parent/3782",[396,5.581]],["name/3783",[1815,79.22]],["parent/3783",[396,5.581]],["name/3784",[2,50.503]],["parent/3784",[1816,3.84]],["name/3785",[1817,79.22]],["parent/3785",[1816,3.84]],["name/3786",[1747,74.112]],["parent/3786",[1816,3.84]],["name/3787",[1818,79.22]],["parent/3787",[1816,3.84]],["name/3788",[1819,79.22]],["parent/3788",[1816,3.84]],["name/3789",[55,49.776]],["parent/3789",[1816,3.84]],["name/3790",[1130,74.112]],["parent/3790",[1816,3.84]],["name/3791",[1133,74.112]],["parent/3791",[1816,3.84]],["name/3792",[737,74.112]],["parent/3792",[1816,3.84]],["name/3793",[738,68.234]],["parent/3793",[1816,3.84]],["name/3794",[1683,74.112]],["parent/3794",[1816,3.84]],["name/3795",[1820,79.22]],["parent/3795",[1816,3.84]],["name/3796",[744,64.557]],["parent/3796",[1816,3.84]],["name/3797",[749,74.112]],["parent/3797",[1816,3.84]],["name/3798",[750,64.557]],["parent/3798",[1816,3.84]],["name/3799",[752,74.112]],["parent/3799",[1816,3.84]],["name/3800",[753,66.227]],["parent/3800",[1816,3.84]],["name/3801",[755,66.227]],["parent/3801",[1816,3.84]],["name/3802",[1821,79.22]],["parent/3802",[1816,3.84]],["name/3803",[758,74.112]],["parent/3803",[1816,3.84]],["name/3804",[762,74.112]],["parent/3804",[1816,3.84]],["name/3805",[765,66.227]],["parent/3805",[1816,3.84]],["name/3806",[768,74.112]],["parent/3806",[1816,3.84]],["name/3807",[396,55.866]],["parent/3807",[1816,3.84]],["name/3808",[777,68.234]],["parent/3808",[1816,3.84]],["name/3809",[778,64.557]],["parent/3809",[1816,3.84]],["name/3810",[779,70.747]],["parent/3810",[1816,3.84]],["name/3811",[1708,74.112]],["parent/3811",[1816,3.84]],["name/3812",[780,74.112]],["parent/3812",[1816,3.84]],["name/3813",[101,50.503]],["parent/3813",[1816,3.84]],["name/3814",[637,63.126]],["parent/3814",[1816,3.84]],["name/3815",[128,16.909]],["parent/3815",[1822,7.913]],["name/3816",[254,58.018]],["parent/3816",[1816,3.84]],["name/3817",[128,16.909]],["parent/3817",[1823,7.913]],["name/3818",[1824,79.22]],["parent/3818",[1816,3.84]],["name/3819",[128,16.909]],["parent/3819",[1825,7.913]],["name/3820",[646,61.874]],["parent/3820",[1816,3.84]],["name/3821",[128,16.909]],["parent/3821",[1826,7.913]],["name/3822",[1827,79.22]],["parent/3822",[1816,3.84]],["name/3823",[128,16.909]],["parent/3823",[1828,7.913]],["name/3824",[409,51.705]],["parent/3824",[1816,3.84]],["name/3825",[410,51.705]],["parent/3825",[1816,3.84]],["name/3826",[128,16.909]],["parent/3826",[1829,7.913]],["name/3827",[140,50.503]],["parent/3827",[1816,3.84]],["name/3828",[128,16.909]],["parent/3828",[1830,7.913]],["name/3829",[413,51.705]],["parent/3829",[1816,3.84]],["name/3830",[128,16.909]],["parent/3830",[1831,7.913]],["name/3831",[142,50.503]],["parent/3831",[1816,3.84]],["name/3832",[128,16.909]],["parent/3832",[1832,7.913]],["name/3833",[144,50.503]],["parent/3833",[1816,3.84]],["name/3834",[128,16.909]],["parent/3834",[1833,7.913]],["name/3835",[146,50.503]],["parent/3835",[1816,3.84]],["name/3836",[128,16.909]],["parent/3836",[1834,7.913]],["name/3837",[148,50.503]],["parent/3837",[1816,3.84]],["name/3838",[128,16.909]],["parent/3838",[1835,7.913]],["name/3839",[150,50.503]],["parent/3839",[1816,3.84]],["name/3840",[128,16.909]],["parent/3840",[1836,7.913]],["name/3841",[152,50.503]],["parent/3841",[1816,3.84]],["name/3842",[128,16.909]],["parent/3842",[1837,7.913]],["name/3843",[154,50.503]],["parent/3843",[1816,3.84]],["name/3844",[128,16.909]],["parent/3844",[1838,7.913]],["name/3845",[156,50.503]],["parent/3845",[1816,3.84]],["name/3846",[128,16.909]],["parent/3846",[1839,7.913]],["name/3847",[158,50.503]],["parent/3847",[1816,3.84]],["name/3848",[128,16.909]],["parent/3848",[1840,7.913]],["name/3849",[196,50.503]],["parent/3849",[1816,3.84]],["name/3850",[128,16.909]],["parent/3850",[1841,7.913]],["name/3851",[160,50.503]],["parent/3851",[1816,3.84]],["name/3852",[128,16.909]],["parent/3852",[1842,7.913]],["name/3853",[425,51.705]],["parent/3853",[1816,3.84]],["name/3854",[128,16.909]],["parent/3854",[1843,7.913]],["name/3855",[427,51.705]],["parent/3855",[1816,3.84]],["name/3856",[128,16.909]],["parent/3856",[1844,7.913]],["name/3857",[429,51.705]],["parent/3857",[1816,3.84]],["name/3858",[430,51.705]],["parent/3858",[1816,3.84]],["name/3859",[162,50.888]],["parent/3859",[1816,3.84]],["name/3860",[163,50.888]],["parent/3860",[1816,3.84]],["name/3861",[164,50.888]],["parent/3861",[1816,3.84]],["name/3862",[165,51.705]],["parent/3862",[1816,3.84]],["name/3863",[166,51.705]],["parent/3863",[1816,3.84]],["name/3864",[167,50.888]],["parent/3864",[1816,3.84]],["name/3865",[168,50.888]],["parent/3865",[1816,3.84]],["name/3866",[169,50.888]],["parent/3866",[1816,3.84]],["name/3867",[170,50.888]],["parent/3867",[1816,3.84]],["name/3868",[128,16.909]],["parent/3868",[1845,7.913]],["name/3869",[172,50.888]],["parent/3869",[1816,3.84]],["name/3870",[128,16.909]],["parent/3870",[1846,7.913]],["name/3871",[174,44.459]],["parent/3871",[1816,3.84]],["name/3872",[128,16.909]],["parent/3872",[1847,7.913]],["name/3873",[176,52.14]],["parent/3873",[1816,3.84]],["name/3874",[128,16.909]],["parent/3874",[1848,7.913]],["name/3875",[178,50.888]],["parent/3875",[1816,3.84]],["name/3876",[128,16.909]],["parent/3876",[1849,7.913]],["name/3877",[180,50.888]],["parent/3877",[1816,3.84]],["name/3878",[181,50.888]],["parent/3878",[1816,3.84]],["name/3879",[182,50.888]],["parent/3879",[1816,3.84]],["name/3880",[183,50.888]],["parent/3880",[1816,3.84]],["name/3881",[184,50.888]],["parent/3881",[1816,3.84]],["name/3882",[185,50.888]],["parent/3882",[1816,3.84]],["name/3883",[186,50.503]],["parent/3883",[1816,3.84]],["name/3884",[187,50.888]],["parent/3884",[1816,3.84]],["name/3885",[188,50.888]],["parent/3885",[1816,3.84]],["name/3886",[189,50.888]],["parent/3886",[1816,3.84]],["name/3887",[190,50.888]],["parent/3887",[1816,3.84]],["name/3888",[191,50.888]],["parent/3888",[1816,3.84]],["name/3889",[192,50.888]],["parent/3889",[1816,3.84]],["name/3890",[193,50.888]],["parent/3890",[1816,3.84]],["name/3891",[194,50.888]],["parent/3891",[1816,3.84]],["name/3892",[195,50.888]],["parent/3892",[1816,3.84]],["name/3893",[197,50.888]],["parent/3893",[1816,3.84]],["name/3894",[198,50.888]],["parent/3894",[1816,3.84]],["name/3895",[199,51.705]],["parent/3895",[1816,3.84]],["name/3896",[200,51.705]],["parent/3896",[1816,3.84]],["name/3897",[128,16.909]],["parent/3897",[1850,7.913]],["name/3898",[202,51.705]],["parent/3898",[1851,5.301]],["name/3899",[204,43.293]],["parent/3899",[1851,5.301]],["name/3900",[205,50.503]],["parent/3900",[1851,5.301]],["name/3901",[206,44.055]],["parent/3901",[1851,5.301]],["name/3902",[207,51.705]],["parent/3902",[1851,5.301]],["name/3903",[208,51.705]],["parent/3903",[1851,5.301]],["name/3904",[209,51.705]],["parent/3904",[1851,5.301]],["name/3905",[210,50.888]],["parent/3905",[1851,5.301]],["name/3906",[211,51.705]],["parent/3906",[1851,5.301]],["name/3907",[212,50.888]],["parent/3907",[1851,5.301]],["name/3908",[213,51.705]],["parent/3908",[1851,5.301]],["name/3909",[214,51.705]],["parent/3909",[1851,5.301]],["name/3910",[215,51.705]],["parent/3910",[1851,5.301]],["name/3911",[216,51.705]],["parent/3911",[1851,5.301]],["name/3912",[174,44.459]],["parent/3912",[1851,5.301]],["name/3913",[217,51.705]],["parent/3913",[1851,5.301]],["name/3914",[218,51.705]],["parent/3914",[1851,5.301]],["name/3915",[219,51.705]],["parent/3915",[1851,5.301]],["name/3916",[220,48.159]],["parent/3916",[1851,5.301]],["name/3917",[221,51.705]],["parent/3917",[1851,5.301]],["name/3918",[222,51.705]],["parent/3918",[1816,3.84]],["name/3919",[128,16.909]],["parent/3919",[1852,7.913]],["name/3920",[206,44.055]],["parent/3920",[1853,6.616]],["name/3921",[225,51.705]],["parent/3921",[1853,6.616]],["name/3922",[204,43.293]],["parent/3922",[1853,6.616]],["name/3923",[226,51.705]],["parent/3923",[1853,6.616]],["name/3924",[227,49.098]],["parent/3924",[1853,6.616]],["name/3925",[228,50.503]],["parent/3925",[396,5.581]],["name/3926",[229,50.503]],["parent/3926",[396,5.581]],["name/3927",[1854,68.234]],["parent/3927",[]],["name/3928",[1102,74.112]],["parent/3928",[1854,6.816]],["name/3929",[2,50.503]],["parent/3929",[1855,4.111]],["name/3930",[1104,74.112]],["parent/3930",[1855,4.111]],["name/3931",[1105,74.112]],["parent/3931",[1855,4.111]],["name/3932",[55,49.776]],["parent/3932",[1855,4.111]],["name/3933",[162,50.888]],["parent/3933",[1855,4.111]],["name/3934",[163,50.888]],["parent/3934",[1855,4.111]],["name/3935",[164,50.888]],["parent/3935",[1855,4.111]],["name/3936",[167,50.888]],["parent/3936",[1855,4.111]],["name/3937",[168,50.888]],["parent/3937",[1855,4.111]],["name/3938",[169,50.888]],["parent/3938",[1855,4.111]],["name/3939",[170,50.888]],["parent/3939",[1855,4.111]],["name/3940",[128,16.909]],["parent/3940",[1856,7.913]],["name/3941",[172,50.888]],["parent/3941",[1855,4.111]],["name/3942",[128,16.909]],["parent/3942",[1857,7.913]],["name/3943",[174,44.459]],["parent/3943",[1855,4.111]],["name/3944",[128,16.909]],["parent/3944",[1858,7.913]],["name/3945",[178,50.888]],["parent/3945",[1855,4.111]],["name/3946",[128,16.909]],["parent/3946",[1859,7.913]],["name/3947",[180,50.888]],["parent/3947",[1855,4.111]],["name/3948",[181,50.888]],["parent/3948",[1855,4.111]],["name/3949",[182,50.888]],["parent/3949",[1855,4.111]],["name/3950",[183,50.888]],["parent/3950",[1855,4.111]],["name/3951",[184,50.888]],["parent/3951",[1855,4.111]],["name/3952",[185,50.888]],["parent/3952",[1855,4.111]],["name/3953",[186,50.503]],["parent/3953",[1855,4.111]],["name/3954",[187,50.888]],["parent/3954",[1855,4.111]],["name/3955",[188,50.888]],["parent/3955",[1855,4.111]],["name/3956",[189,50.888]],["parent/3956",[1855,4.111]],["name/3957",[190,50.888]],["parent/3957",[1855,4.111]],["name/3958",[191,50.888]],["parent/3958",[1855,4.111]],["name/3959",[192,50.888]],["parent/3959",[1855,4.111]],["name/3960",[193,50.888]],["parent/3960",[1855,4.111]],["name/3961",[194,50.888]],["parent/3961",[1855,4.111]],["name/3962",[195,50.888]],["parent/3962",[1855,4.111]],["name/3963",[196,50.503]],["parent/3963",[1855,4.111]],["name/3964",[197,50.888]],["parent/3964",[1855,4.111]],["name/3965",[198,50.888]],["parent/3965",[1855,4.111]],["name/3966",[101,50.503]],["parent/3966",[1855,4.111]],["name/3967",[140,50.503]],["parent/3967",[1855,4.111]],["name/3968",[128,16.909]],["parent/3968",[1860,7.913]],["name/3969",[142,50.503]],["parent/3969",[1855,4.111]],["name/3970",[128,16.909]],["parent/3970",[1861,7.913]],["name/3971",[144,50.503]],["parent/3971",[1855,4.111]],["name/3972",[128,16.909]],["parent/3972",[1862,7.913]],["name/3973",[146,50.503]],["parent/3973",[1855,4.111]],["name/3974",[128,16.909]],["parent/3974",[1863,7.913]],["name/3975",[148,50.503]],["parent/3975",[1855,4.111]],["name/3976",[128,16.909]],["parent/3976",[1864,7.913]],["name/3977",[150,50.503]],["parent/3977",[1855,4.111]],["name/3978",[128,16.909]],["parent/3978",[1865,7.913]],["name/3979",[152,50.503]],["parent/3979",[1855,4.111]],["name/3980",[128,16.909]],["parent/3980",[1866,7.913]],["name/3981",[154,50.503]],["parent/3981",[1855,4.111]],["name/3982",[128,16.909]],["parent/3982",[1867,7.913]],["name/3983",[156,50.503]],["parent/3983",[1855,4.111]],["name/3984",[128,16.909]],["parent/3984",[1868,7.913]],["name/3985",[158,50.503]],["parent/3985",[1855,4.111]],["name/3986",[128,16.909]],["parent/3986",[1869,7.913]],["name/3987",[160,50.503]],["parent/3987",[1855,4.111]],["name/3988",[128,16.909]],["parent/3988",[1870,7.913]],["name/3989",[1131,74.112]],["parent/3989",[1855,4.111]],["name/3990",[1132,74.112]],["parent/3990",[1855,4.111]],["name/3991",[1134,74.112]],["parent/3991",[1855,4.111]],["name/3992",[1135,74.112]],["parent/3992",[1855,4.111]],["name/3993",[1136,74.112]],["parent/3993",[1855,4.111]],["name/3994",[744,64.557]],["parent/3994",[1855,4.111]],["name/3995",[1137,74.112]],["parent/3995",[1855,4.111]],["name/3996",[1138,74.112]],["parent/3996",[1855,4.111]],["name/3997",[750,64.557]],["parent/3997",[1855,4.111]],["name/3998",[1139,74.112]],["parent/3998",[1855,4.111]],["name/3999",[1140,74.112]],["parent/3999",[1855,4.111]],["name/4000",[1141,74.112]],["parent/4000",[1855,4.111]],["name/4001",[1142,74.112]],["parent/4001",[1855,4.111]],["name/4002",[1143,74.112]],["parent/4002",[1855,4.111]],["name/4003",[1144,74.112]],["parent/4003",[1855,4.111]],["name/4004",[1145,74.112]],["parent/4004",[1855,4.111]],["name/4005",[1146,70.747]],["parent/4005",[1855,4.111]],["name/4006",[777,68.234]],["parent/4006",[1855,4.111]],["name/4007",[778,64.557]],["parent/4007",[1855,4.111]],["name/4008",[1092,70.747]],["parent/4008",[1855,4.111]],["name/4009",[1147,74.112]],["parent/4009",[1855,4.111]],["name/4010",[254,58.018]],["parent/4010",[1855,4.111]],["name/4011",[128,16.909]],["parent/4011",[1871,7.913]],["name/4012",[228,50.503]],["parent/4012",[1854,6.816]],["name/4013",[229,50.503]],["parent/4013",[1854,6.816]],["name/4014",[1872,68.234]],["parent/4014",[]],["name/4015",[1873,79.22]],["parent/4015",[1872,6.816]],["name/4016",[2,50.503]],["parent/4016",[1874,4.172]],["name/4017",[1875,79.22]],["parent/4017",[1874,4.172]],["name/4018",[1876,79.22]],["parent/4018",[1874,4.172]],["name/4019",[55,49.776]],["parent/4019",[1874,4.172]],["name/4020",[470,66.227]],["parent/4020",[1874,4.172]],["name/4021",[128,16.909]],["parent/4021",[1877,7.913]],["name/4022",[162,50.888]],["parent/4022",[1874,4.172]],["name/4023",[163,50.888]],["parent/4023",[1874,4.172]],["name/4024",[164,50.888]],["parent/4024",[1874,4.172]],["name/4025",[165,51.705]],["parent/4025",[1874,4.172]],["name/4026",[166,51.705]],["parent/4026",[1874,4.172]],["name/4027",[167,50.888]],["parent/4027",[1874,4.172]],["name/4028",[168,50.888]],["parent/4028",[1874,4.172]],["name/4029",[169,50.888]],["parent/4029",[1874,4.172]],["name/4030",[170,50.888]],["parent/4030",[1874,4.172]],["name/4031",[128,16.909]],["parent/4031",[1878,7.913]],["name/4032",[172,50.888]],["parent/4032",[1874,4.172]],["name/4033",[128,16.909]],["parent/4033",[1879,7.913]],["name/4034",[174,44.459]],["parent/4034",[1874,4.172]],["name/4035",[128,16.909]],["parent/4035",[1880,7.913]],["name/4036",[176,52.14]],["parent/4036",[1874,4.172]],["name/4037",[128,16.909]],["parent/4037",[1881,7.913]],["name/4038",[178,50.888]],["parent/4038",[1874,4.172]],["name/4039",[128,16.909]],["parent/4039",[1882,7.913]],["name/4040",[180,50.888]],["parent/4040",[1874,4.172]],["name/4041",[181,50.888]],["parent/4041",[1874,4.172]],["name/4042",[182,50.888]],["parent/4042",[1874,4.172]],["name/4043",[183,50.888]],["parent/4043",[1874,4.172]],["name/4044",[184,50.888]],["parent/4044",[1874,4.172]],["name/4045",[185,50.888]],["parent/4045",[1874,4.172]],["name/4046",[186,50.503]],["parent/4046",[1874,4.172]],["name/4047",[187,50.888]],["parent/4047",[1874,4.172]],["name/4048",[188,50.888]],["parent/4048",[1874,4.172]],["name/4049",[189,50.888]],["parent/4049",[1874,4.172]],["name/4050",[190,50.888]],["parent/4050",[1874,4.172]],["name/4051",[191,50.888]],["parent/4051",[1874,4.172]],["name/4052",[192,50.888]],["parent/4052",[1874,4.172]],["name/4053",[193,50.888]],["parent/4053",[1874,4.172]],["name/4054",[194,50.888]],["parent/4054",[1874,4.172]],["name/4055",[195,50.888]],["parent/4055",[1874,4.172]],["name/4056",[196,50.503]],["parent/4056",[1874,4.172]],["name/4057",[197,50.888]],["parent/4057",[1874,4.172]],["name/4058",[198,50.888]],["parent/4058",[1874,4.172]],["name/4059",[199,51.705]],["parent/4059",[1874,4.172]],["name/4060",[200,51.705]],["parent/4060",[1874,4.172]],["name/4061",[128,16.909]],["parent/4061",[1883,7.913]],["name/4062",[202,51.705]],["parent/4062",[1884,5.301]],["name/4063",[204,43.293]],["parent/4063",[1884,5.301]],["name/4064",[205,50.503]],["parent/4064",[1884,5.301]],["name/4065",[206,44.055]],["parent/4065",[1884,5.301]],["name/4066",[207,51.705]],["parent/4066",[1884,5.301]],["name/4067",[208,51.705]],["parent/4067",[1884,5.301]],["name/4068",[209,51.705]],["parent/4068",[1884,5.301]],["name/4069",[210,50.888]],["parent/4069",[1884,5.301]],["name/4070",[211,51.705]],["parent/4070",[1884,5.301]],["name/4071",[212,50.888]],["parent/4071",[1884,5.301]],["name/4072",[213,51.705]],["parent/4072",[1884,5.301]],["name/4073",[214,51.705]],["parent/4073",[1884,5.301]],["name/4074",[215,51.705]],["parent/4074",[1884,5.301]],["name/4075",[216,51.705]],["parent/4075",[1884,5.301]],["name/4076",[174,44.459]],["parent/4076",[1884,5.301]],["name/4077",[217,51.705]],["parent/4077",[1884,5.301]],["name/4078",[218,51.705]],["parent/4078",[1884,5.301]],["name/4079",[219,51.705]],["parent/4079",[1884,5.301]],["name/4080",[220,48.159]],["parent/4080",[1884,5.301]],["name/4081",[221,51.705]],["parent/4081",[1884,5.301]],["name/4082",[222,51.705]],["parent/4082",[1874,4.172]],["name/4083",[128,16.909]],["parent/4083",[1885,7.913]],["name/4084",[206,44.055]],["parent/4084",[1886,6.616]],["name/4085",[225,51.705]],["parent/4085",[1886,6.616]],["name/4086",[204,43.293]],["parent/4086",[1886,6.616]],["name/4087",[226,51.705]],["parent/4087",[1886,6.616]],["name/4088",[227,49.098]],["parent/4088",[1886,6.616]],["name/4089",[101,50.503]],["parent/4089",[1874,4.172]],["name/4090",[409,51.705]],["parent/4090",[1874,4.172]],["name/4091",[410,51.705]],["parent/4091",[1874,4.172]],["name/4092",[128,16.909]],["parent/4092",[1887,7.913]],["name/4093",[140,50.503]],["parent/4093",[1874,4.172]],["name/4094",[128,16.909]],["parent/4094",[1888,7.913]],["name/4095",[413,51.705]],["parent/4095",[1874,4.172]],["name/4096",[128,16.909]],["parent/4096",[1889,7.913]],["name/4097",[142,50.503]],["parent/4097",[1874,4.172]],["name/4098",[128,16.909]],["parent/4098",[1890,7.913]],["name/4099",[144,50.503]],["parent/4099",[1874,4.172]],["name/4100",[128,16.909]],["parent/4100",[1891,7.913]],["name/4101",[146,50.503]],["parent/4101",[1874,4.172]],["name/4102",[128,16.909]],["parent/4102",[1892,7.913]],["name/4103",[148,50.503]],["parent/4103",[1874,4.172]],["name/4104",[128,16.909]],["parent/4104",[1893,7.913]],["name/4105",[150,50.503]],["parent/4105",[1874,4.172]],["name/4106",[128,16.909]],["parent/4106",[1894,7.913]],["name/4107",[152,50.503]],["parent/4107",[1874,4.172]],["name/4108",[128,16.909]],["parent/4108",[1895,7.913]],["name/4109",[154,50.503]],["parent/4109",[1874,4.172]],["name/4110",[128,16.909]],["parent/4110",[1896,7.913]],["name/4111",[156,50.503]],["parent/4111",[1874,4.172]],["name/4112",[128,16.909]],["parent/4112",[1897,7.913]],["name/4113",[158,50.503]],["parent/4113",[1874,4.172]],["name/4114",[128,16.909]],["parent/4114",[1898,7.913]],["name/4115",[160,50.503]],["parent/4115",[1874,4.172]],["name/4116",[128,16.909]],["parent/4116",[1899,7.913]],["name/4117",[425,51.705]],["parent/4117",[1874,4.172]],["name/4118",[128,16.909]],["parent/4118",[1900,7.913]],["name/4119",[427,51.705]],["parent/4119",[1874,4.172]],["name/4120",[128,16.909]],["parent/4120",[1901,7.913]],["name/4121",[429,51.705]],["parent/4121",[1874,4.172]],["name/4122",[430,51.705]],["parent/4122",[1874,4.172]],["name/4123",[1902,79.22]],["parent/4123",[1874,4.172]],["name/4124",[1903,79.22]],["parent/4124",[1874,4.172]],["name/4125",[254,58.018]],["parent/4125",[1874,4.172]],["name/4126",[128,16.909]],["parent/4126",[1904,7.913]],["name/4127",[646,61.874]],["parent/4127",[1874,4.172]],["name/4128",[128,16.909]],["parent/4128",[1905,7.913]],["name/4129",[228,50.503]],["parent/4129",[1872,6.816]],["name/4130",[229,50.503]],["parent/4130",[1872,6.816]],["name/4131",[1906,68.234]],["parent/4131",[]],["name/4132",[55,49.776]],["parent/4132",[1906,6.816]],["name/4133",[1907,79.22]],["parent/4133",[1906,6.816]],["name/4134",[1908,79.22]],["parent/4134",[1906,6.816]]],"invertedIndex":[["__type",{"_index":128,"name":{"127":{},"129":{},"131":{},"133":{},"135":{},"137":{},"139":{},"141":{},"143":{},"145":{},"147":{},"149":{},"151":{},"153":{},"155":{},"157":{},"159":{},"169":{},"171":{},"173":{},"175":{},"177":{},"199":{},"221":{},"248":{},"250":{},"252":{},"254":{},"256":{},"258":{},"260":{},"262":{},"264":{},"266":{},"268":{},"270":{},"272":{},"274":{},"276":{},"278":{},"282":{},"285":{},"299":{},"305":{},"309":{},"315":{},"318":{},"325":{},"333":{},"338":{},"342":{},"347":{},"354":{},"357":{},"362":{},"366":{},"377":{},"384":{},"389":{},"407":{},"409":{},"411":{},"413":{},"415":{},"437":{},"459":{},"467":{},"469":{},"471":{},"473":{},"475":{},"477":{},"479":{},"481":{},"483":{},"485":{},"487":{},"489":{},"491":{},"493":{},"495":{},"542":{},"552":{},"554":{},"556":{},"558":{},"560":{},"582":{},"604":{},"615":{},"631":{},"639":{},"649":{},"657":{},"661":{},"669":{},"674":{},"681":{},"686":{},"698":{},"703":{},"708":{},"719":{},"721":{},"723":{},"725":{},"727":{},"729":{},"731":{},"733":{},"735":{},"737":{},"739":{},"741":{},"743":{},"745":{},"747":{},"765":{},"775":{},"777":{},"779":{},"781":{},"783":{},"805":{},"827":{},"838":{},"854":{},"862":{},"872":{},"880":{},"884":{},"892":{},"897":{},"904":{},"909":{},"921":{},"926":{},"931":{},"942":{},"944":{},"946":{},"948":{},"950":{},"952":{},"954":{},"956":{},"958":{},"960":{},"962":{},"964":{},"966":{},"968":{},"970":{},"1003":{},"1005":{},"1007":{},"1009":{},"1011":{},"1013":{},"1016":{},"1018":{},"1020":{},"1022":{},"1024":{},"1026":{},"1028":{},"1030":{},"1032":{},"1034":{},"1036":{},"1038":{},"1040":{},"1042":{},"1044":{},"1046":{},"1058":{},"1060":{},"1062":{},"1064":{},"1066":{},"1087":{},"1109":{},"1128":{},"1130":{},"1132":{},"1134":{},"1136":{},"1138":{},"1140":{},"1142":{},"1144":{},"1146":{},"1148":{},"1150":{},"1152":{},"1154":{},"1156":{},"1158":{},"1170":{},"1172":{},"1174":{},"1176":{},"1178":{},"1199":{},"1221":{},"1322":{},"1338":{},"1340":{},"1342":{},"1344":{},"1346":{},"1348":{},"1350":{},"1352":{},"1354":{},"1356":{},"1358":{},"1360":{},"1362":{},"1364":{},"1366":{},"1368":{},"1372":{},"1374":{},"1376":{},"1378":{},"1380":{},"1382":{},"1392":{},"1394":{},"1396":{},"1398":{},"1400":{},"1421":{},"1443":{},"1485":{},"1489":{},"1491":{},"1493":{},"1495":{},"1497":{},"1499":{},"1501":{},"1503":{},"1505":{},"1507":{},"1509":{},"1511":{},"1513":{},"1515":{},"1517":{},"1519":{},"1531":{},"1533":{},"1535":{},"1537":{},"1558":{},"1580":{},"1593":{},"1603":{},"1605":{},"1607":{},"1609":{},"1611":{},"1633":{},"1655":{},"1663":{},"1665":{},"1667":{},"1671":{},"1673":{},"1675":{},"1677":{},"1679":{},"1681":{},"1683":{},"1685":{},"1687":{},"1689":{},"1691":{},"1693":{},"1695":{},"1697":{},"1699":{},"1734":{},"1736":{},"1738":{},"1740":{},"1742":{},"1744":{},"1746":{},"1748":{},"1750":{},"1752":{},"1754":{},"1756":{},"1758":{},"1760":{},"1762":{},"1764":{},"1777":{},"1779":{},"1781":{},"1783":{},"1785":{},"1787":{},"1789":{},"1791":{},"1793":{},"1795":{},"1797":{},"1805":{},"1807":{},"1809":{},"1811":{},"1835":{},"1837":{},"1839":{},"1841":{},"1843":{},"1846":{},"1849":{},"1854":{},"1856":{},"1858":{},"1860":{},"1862":{},"1868":{},"1870":{},"1872":{},"1874":{},"1876":{},"1878":{},"1880":{},"1887":{},"1889":{},"1896":{},"1902":{},"1910":{},"1921":{},"1926":{},"1932":{},"1938":{},"1940":{},"1946":{},"1955":{},"1960":{},"1963":{},"1970":{},"1977":{},"1980":{},"2000":{},"2002":{},"2004":{},"2006":{},"2008":{},"2030":{},"2052":{},"2061":{},"2063":{},"2065":{},"2067":{},"2069":{},"2071":{},"2073":{},"2075":{},"2077":{},"2079":{},"2081":{},"2083":{},"2085":{},"2087":{},"2089":{},"2120":{},"2122":{},"2138":{},"2140":{},"2142":{},"2144":{},"2146":{},"2148":{},"2150":{},"2152":{},"2154":{},"2156":{},"2158":{},"2160":{},"2162":{},"2164":{},"2166":{},"2168":{},"2180":{},"2182":{},"2184":{},"2186":{},"2188":{},"2209":{},"2231":{},"2238":{},"2240":{},"2242":{},"2244":{},"2246":{},"2253":{},"2289":{},"2294":{},"2307":{},"2311":{},"2326":{},"2332":{},"2336":{},"2346":{},"2348":{},"2350":{},"2352":{},"2354":{},"2356":{},"2358":{},"2360":{},"2362":{},"2364":{},"2366":{},"2368":{},"2370":{},"2372":{},"2374":{},"2376":{},"2388":{},"2390":{},"2392":{},"2394":{},"2396":{},"2417":{},"2439":{},"2460":{},"2462":{},"2464":{},"2466":{},"2468":{},"2470":{},"2472":{},"2474":{},"2476":{},"2478":{},"2480":{},"2482":{},"2484":{},"2486":{},"2488":{},"2490":{},"2502":{},"2504":{},"2506":{},"2508":{},"2510":{},"2531":{},"2553":{},"2560":{},"2562":{},"2564":{},"2581":{},"2587":{},"2592":{},"2600":{},"2604":{},"2610":{},"2615":{},"2629":{},"2632":{},"2636":{},"2640":{},"2642":{},"2644":{},"2646":{},"2648":{},"2650":{},"2652":{},"2654":{},"2656":{},"2658":{},"2660":{},"2662":{},"2664":{},"2666":{},"2668":{},"2670":{},"2682":{},"2684":{},"2686":{},"2688":{},"2690":{},"2711":{},"2733":{},"2750":{},"2756":{},"2762":{},"2770":{},"2772":{},"2774":{},"2776":{},"2778":{},"2780":{},"2782":{},"2784":{},"2786":{},"2788":{},"2790":{},"2792":{},"2794":{},"2796":{},"2798":{},"2800":{},"2811":{},"2813":{},"2815":{},"2817":{},"2819":{},"2840":{},"2862":{},"2869":{},"2871":{},"2873":{},"2875":{},"2877":{},"2879":{},"2881":{},"2883":{},"2896":{},"2901":{},"2914":{},"2918":{},"2933":{},"2938":{},"2942":{},"2950":{},"2952":{},"2956":{},"2958":{},"2960":{},"2962":{},"2964":{},"2966":{},"2968":{},"2970":{},"2972":{},"2974":{},"2976":{},"2978":{},"2980":{},"2982":{},"2984":{},"2986":{},"2998":{},"3000":{},"3002":{},"3004":{},"3006":{},"3027":{},"3049":{},"3063":{},"3066":{},"3070":{},"3072":{},"3074":{},"3076":{},"3078":{},"3080":{},"3082":{},"3084":{},"3086":{},"3088":{},"3090":{},"3092":{},"3094":{},"3096":{},"3098":{},"3100":{},"3112":{},"3114":{},"3116":{},"3118":{},"3120":{},"3141":{},"3163":{},"3178":{},"3184":{},"3186":{},"3190":{},"3192":{},"3194":{},"3196":{},"3198":{},"3200":{},"3202":{},"3204":{},"3206":{},"3208":{},"3210":{},"3212":{},"3214":{},"3216":{},"3218":{},"3220":{},"3231":{},"3233":{},"3235":{},"3237":{},"3239":{},"3260":{},"3282":{},"3301":{},"3305":{},"3308":{},"3310":{},"3312":{},"3314":{},"3318":{},"3320":{},"3322":{},"3324":{},"3326":{},"3328":{},"3330":{},"3332":{},"3334":{},"3336":{},"3338":{},"3340":{},"3342":{},"3344":{},"3346":{},"3348":{},"3360":{},"3362":{},"3364":{},"3366":{},"3368":{},"3389":{},"3411":{},"3501":{},"3503":{},"3505":{},"3507":{},"3509":{},"3511":{},"3513":{},"3515":{},"3518":{},"3520":{},"3522":{},"3524":{},"3526":{},"3528":{},"3530":{},"3532":{},"3534":{},"3536":{},"3538":{},"3540":{},"3542":{},"3553":{},"3555":{},"3557":{},"3559":{},"3561":{},"3582":{},"3604":{},"3676":{},"3678":{},"3680":{},"3683":{},"3685":{},"3687":{},"3689":{},"3691":{},"3693":{},"3695":{},"3697":{},"3699":{},"3701":{},"3703":{},"3705":{},"3707":{},"3709":{},"3711":{},"3713":{},"3724":{},"3726":{},"3728":{},"3730":{},"3732":{},"3753":{},"3775":{},"3815":{},"3817":{},"3819":{},"3821":{},"3823":{},"3826":{},"3828":{},"3830":{},"3832":{},"3834":{},"3836":{},"3838":{},"3840":{},"3842":{},"3844":{},"3846":{},"3848":{},"3850":{},"3852":{},"3854":{},"3856":{},"3868":{},"3870":{},"3872":{},"3874":{},"3876":{},"3897":{},"3919":{},"3940":{},"3942":{},"3944":{},"3946":{},"3968":{},"3970":{},"3972":{},"3974":{},"3976":{},"3978":{},"3980":{},"3982":{},"3984":{},"3986":{},"3988":{},"4011":{},"4021":{},"4031":{},"4033":{},"4035":{},"4037":{},"4039":{},"4061":{},"4083":{},"4092":{},"4094":{},"4096":{},"4098":{},"4100":{},"4102":{},"4104":{},"4106":{},"4108":{},"4110":{},"4112":{},"4114":{},"4116":{},"4118":{},"4120":{},"4126":{},"4128":{}},"parent":{}}],["abtestdescription",{"_index":1267,"name":{"2337":{},"2943":{}},"parent":{}}],["abtestid",{"_index":1247,"name":{"2312":{},"2338":{},"2919":{},"2944":{}},"parent":{}}],["abtestsegment",{"_index":345,"name":{"341":{}},"parent":{}}],["abtestsegmentid",{"_index":1249,"name":{"2313":{},"2920":{}},"parent":{}}],["accounttransaction",{"_index":1430,"name":{"2755":{}},"parent":{}}],["active",{"_index":1250,"name":{"2314":{},"2921":{}},"parent":{}}],["activeabtestassignments",{"_index":1251,"name":{"2315":{},"2922":{}},"parent":{}}],["activecampaignassignments",{"_index":1252,"name":{"2316":{},"2923":{}},"parent":{}}],["addcertificateforzone",{"_index":18,"name":{"17":{}},"parent":{}}],["addcoupontobasket",{"_index":441,"name":{"510":{}},"parent":{}}],["addgiftcertificateitemtobasket",{"_index":444,"name":{"513":{}},"parent":{}}],["additemtobasket",{"_index":447,"name":{"516":{}},"parent":{}}],["addpaymentinstrumenttobasket",{"_index":452,"name":{"521":{}},"parent":{}}],["addpriceadjustmenttobasket",{"_index":456,"name":{"525":{}},"parent":{}}],["addpricebookstobasket",{"_index":460,"name":{"529":{}},"parent":{}}],["addproductstoexclusionlist",{"_index":1662,"name":{"3438":{}},"parent":{}}],["address",{"_index":308,"name":{"307":{}},"parent":{}}],["addtaxesforbasket",{"_index":469,"name":{"538":{}},"parent":{}}],["addtaxesforbasketitem",{"_index":451,"name":{"520":{}},"parent":{}}],["alreadyexists",{"_index":644,"name":{"1010":{}},"parent":{}}],["amount",{"_index":301,"name":{"300":{},"2757":{}},"parent":{}}],["apiname",{"_index":1202,"name":{"2257":{}},"parent":{}}],["apiversion",{"_index":1203,"name":{"2258":{}},"parent":{}}],["aspectattributeinvalid",{"_index":1190,"name":{"2243":{}},"parent":{}}],["aspecttypenotfound",{"_index":1186,"name":{"2239":{}},"parent":{}}],["assignments",{"_index":1221,"name":{"2284":{}},"parent":{}}],["assignmentssearch",{"_index":1223,"name":{"2286":{}},"parent":{}}],["assignproducttocategory",{"_index":1658,"name":{"3434":{}},"parent":{}}],["assignvariationformasterproduct",{"_index":1760,"name":{"3628":{}},"parent":{}}],["assignvariationgrouptomasterproduct",{"_index":1755,"name":{"3623":{}},"parent":{}}],["asynccreated",{"_index":152,"name":{"150":{},"482":{},"734":{},"957":{},"1031":{},"1143":{},"1353":{},"1504":{},"1686":{},"1749":{},"1788":{},"2076":{},"2153":{},"2361":{},"2475":{},"2655":{},"2785":{},"2971":{},"3085":{},"3205":{},"3333":{},"3529":{},"3698":{},"3841":{},"3979":{},"4107":{}},"parent":{}}],["attributedefinition",{"_index":200,"name":{"198":{},"436":{},"581":{},"804":{},"1086":{},"1198":{},"1420":{},"1557":{},"1632":{},"2029":{},"2208":{},"2416":{},"2530":{},"2710":{},"2839":{},"3026":{},"3140":{},"3259":{},"3388":{},"3581":{},"3752":{},"3896":{},"4060":{}},"parent":{}}],["attributegrouping",{"_index":1078,"name":{"1962":{}},"parent":{}}],["attributeid",{"_index":1050,"name":{"1923":{},"1929":{},"1934":{},"1943":{},"1948":{},"1956":{},"1964":{}},"parent":{}}],["attributesorting",{"_index":1071,"name":{"1954":{}},"parent":{}}],["attributesquery",{"_index":1019,"name":{"1888":{}},"parent":{}}],["authenticatecustomer",{"_index":818,"name":{"1453":{},"2261":{}},"parent":{}}],["authenticationfailure",{"_index":996,"name":{"1859":{}},"parent":{}}],["authorizationfailure",{"_index":1006,"name":{"1871":{}},"parent":{}}],["authorize",{"_index":1211,"name":{"2273":{}},"parent":{}}],["authorizecustomer",{"_index":821,"name":{"1456":{},"2262":{}},"parent":{}}],["authorizepasswordlesscustomer",{"_index":819,"name":{"1454":{}},"parent":{}}],["authrequest",{"_index":761,"name":{"1304":{}},"parent":{}}],["badrequest",{"_index":254,"name":{"255":{},"1006":{},"1375":{},"1662":{},"1873":{},"2121":{},"3185":{},"3506":{},"3677":{},"3816":{},"4010":{},"4125":{}},"parent":{}}],["badrequest1",{"_index":1824,"name":{"3818":{}},"parent":{}}],["badrequest2",{"_index":1827,"name":{"3822":{}},"parent":{}}],["baseerror",{"_index":998,"name":{"1861":{}},"parent":{}}],["basket",{"_index":515,"name":{"672":{},"895":{},"1307":{}},"parent":{}}],["basketpaymentinstrumentrequest",{"_index":499,"name":{"647":{},"870":{}},"parent":{}}],["basketreopen",{"_index":272,"name":{"273":{}},"parent":{}}],["basketsresult",{"_index":740,"name":{"1268":{}},"parent":{}}],["bonusdiscountlineitem",{"_index":324,"name":{"321":{},"652":{},"875":{},"1289":{}},"parent":{}}],["boolfilter",{"_index":181,"name":{"179":{},"417":{},"562":{},"785":{},"1068":{},"1180":{},"1402":{},"1539":{},"1613":{},"1813":{},"2010":{},"2190":{},"2398":{},"2512":{},"2692":{},"2821":{},"3008":{},"3122":{},"3241":{},"3370":{},"3563":{},"3734":{},"3878":{},"3948":{},"4041":{}},"parent":{}}],["boolquery",{"_index":191,"name":{"189":{},"427":{},"572":{},"795":{},"1078":{},"1190":{},"1412":{},"1549":{},"1623":{},"1823":{},"2020":{},"2200":{},"2408":{},"2522":{},"2702":{},"2831":{},"3018":{},"3132":{},"3251":{},"3380":{},"3573":{},"3744":{},"3888":{},"3958":{},"4051":{}},"parent":{}}],["brandsuggestions",{"_index":1139,"name":{"2105":{},"3998":{}},"parent":{}}],["bundledproduct",{"_index":780,"name":{"1331":{},"3812":{}},"parent":{}}],["businessobjectidinvalid",{"_index":1184,"name":{"2237":{}},"parent":{}}],["cachepurge",{"_index":15,"name":{"14":{}},"parent":{}}],["cachepurgerequest",{"_index":57,"name":{"56":{}},"parent":{}}],["cachepurgeresponse",{"_index":122,"name":{"121":{}},"parent":{}}],["cachepurgeresponseenvelope",{"_index":58,"name":{"57":{}},"parent":{}}],["callcustomendpoint",{"_index":1204,"name":{"2259":{},"2282":{}},"parent":{}}],["calloutmsg",{"_index":493,"name":{"640":{},"863":{}},"parent":{}}],["campaign",{"_index":1229,"name":{"2292":{},"2295":{},"2456":{},"2899":{},"2902":{}},"parent":{}}],["campaignduplicate",{"_index":1328,"name":{"2559":{}},"parent":{}}],["campaignid",{"_index":1233,"name":{"2296":{},"2317":{},"2903":{},"2924":{}},"parent":{}}],["campaignnotfound",{"_index":1330,"name":{"2561":{}},"parent":{}}],["campaigns",{"_index":1295,"name":{"2447":{}},"parent":{}}],["campaignsearchresult",{"_index":1302,"name":{"2455":{}},"parent":{}}],["campaignssearch",{"_index":1297,"name":{"2449":{}},"parent":{}}],["cancelorderconflict",{"_index":252,"name":{"253":{}},"parent":{}}],["cardtype",{"_index":286,"name":{"286":{},"616":{},"687":{},"839":{},"910":{}},"parent":{}}],["catalog",{"_index":1710,"name":{"3497":{}},"parent":{}}],["catalogcategoryid",{"_index":1686,"name":{"3466":{},"3656":{}},"parent":{}}],["catalogs",{"_index":1644,"name":{"3420":{},"3482":{}},"parent":{}}],["catalogsearchresult",{"_index":1701,"name":{"3486":{}},"parent":{}}],["categories",{"_index":1687,"name":{"3467":{}},"parent":{}}],["categorizationattributedefiniton",{"_index":1784,"name":{"3670":{}},"parent":{}}],["categorizationattributedefinitonsresult",{"_index":1783,"name":{"3657":{}},"parent":{}}],["category",{"_index":1683,"name":{"3462":{},"3794":{}},"parent":{}}],["categorylink",{"_index":1698,"name":{"3483":{}},"parent":{}}],["categorylinks",{"_index":1694,"name":{"3477":{}},"parent":{}}],["categoryproductassignment",{"_index":1705,"name":{"3491":{}},"parent":{}}],["categoryproductassignmentsearchresult",{"_index":1680,"name":{"3458":{}},"parent":{}}],["categoryresult",{"_index":1820,"name":{"3795":{}},"parent":{}}],["categorysearchresult",{"_index":1682,"name":{"3461":{}},"parent":{}}],["categorysuggestions",{"_index":1134,"name":{"2096":{},"3991":{}},"parent":{}}],["cdn",{"_index":0,"name":{"0":{}},"parent":{"1":{},"227":{},"228":{}}}],["cdn.cdnzones",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"128":{},"130":{},"132":{},"134":{},"136":{},"138":{},"140":{},"142":{},"144":{},"146":{},"148":{},"150":{},"152":{},"154":{},"156":{},"158":{},"160":{},"161":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"170":{},"172":{},"174":{},"176":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"220":{}}}],["cdn.cdnzones.asynccreated",{"_index":153,"name":{},"parent":{"151":{}}}],["cdn.cdnzones.attributedefinition",{"_index":201,"name":{},"parent":{"199":{}}}],["cdn.cdnzones.attributedefinition.__type",{"_index":203,"name":{},"parent":{"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{}}}],["cdn.cdnzones.dateconditionalrequest",{"_index":147,"name":{},"parent":{"145":{}}}],["cdn.cdnzones.etagconditionalrequest",{"_index":151,"name":{},"parent":{"149":{}}}],["cdn.cdnzones.etagresponse",{"_index":141,"name":{},"parent":{"139":{}}}],["cdn.cdnzones.hasbadrequestresponse",{"_index":131,"name":{},"parent":{"129":{}}}],["cdn.cdnzones.hasconflictresponse",{"_index":133,"name":{},"parent":{"131":{}}}],["cdn.cdnzones.hasforbiddenaccessresponse",{"_index":135,"name":{},"parent":{"133":{}}}],["cdn.cdnzones.hasinternalservererrorresponse",{"_index":137,"name":{},"parent":{"135":{}}}],["cdn.cdnzones.hasresourcenotfoundresponse",{"_index":139,"name":{},"parent":{"137":{}}}],["cdn.cdnzones.hasunauthorizedresponse",{"_index":129,"name":{},"parent":{"127":{}}}],["cdn.cdnzones.nopropertiesallowed",{"_index":179,"name":{},"parent":{"177":{}}}],["cdn.cdnzones.offsetpaginated",{"_index":159,"name":{},"parent":{"157":{}}}],["cdn.cdnzones.propertyvaluedefinition",{"_index":223,"name":{},"parent":{"221":{}}}],["cdn.cdnzones.propertyvaluedefinition.__type",{"_index":224,"name":{},"parent":{"222":{},"223":{},"224":{},"225":{},"226":{}}}],["cdn.cdnzones.queryparamslimit",{"_index":171,"name":{},"parent":{"169":{}}}],["cdn.cdnzones.queryparamsoffset",{"_index":173,"name":{},"parent":{"171":{}}}],["cdn.cdnzones.ratelimited",{"_index":155,"name":{},"parent":{"153":{}}}],["cdn.cdnzones.ratelimited2",{"_index":157,"name":{},"parent":{"155":{}}}],["cdn.cdnzones.ratelimited3",{"_index":143,"name":{},"parent":{"141":{}}}],["cdn.cdnzones.ratelimited4",{"_index":161,"name":{},"parent":{"159":{}}}],["cdn.cdnzones.ratelimited5",{"_index":149,"name":{},"parent":{"147":{}}}],["cdn.cdnzones.selectable",{"_index":177,"name":{},"parent":{"175":{}}}],["cdn.cdnzones.sitespecific",{"_index":175,"name":{},"parent":{"173":{}}}],["cdn.cdnzones.synccreated",{"_index":145,"name":{},"parent":{"143":{}}}],["cdnzones",{"_index":1,"name":{"1":{}},"parent":{}}],["certificate",{"_index":119,"name":{"118":{}},"parent":{}}],["certificateenvelope",{"_index":113,"name":{"112":{}},"parent":{}}],["certificaterequest",{"_index":93,"name":{"92":{}},"parent":{}}],["certificatesenvelope",{"_index":76,"name":{"75":{}},"parent":{}}],["changecontrolled",{"_index":409,"name":{"465":{},"717":{},"940":{},"1014":{},"1126":{},"1336":{},"1487":{},"1669":{},"1732":{},"2059":{},"2136":{},"2344":{},"2458":{},"2638":{},"2768":{},"2954":{},"3068":{},"3188":{},"3316":{},"3516":{},"3681":{},"3824":{},"4090":{}},"parent":{}}],["changecontrolleddatatype",{"_index":429,"name":{"496":{},"748":{},"971":{},"1047":{},"1159":{},"1369":{},"1520":{},"1700":{},"1765":{},"2090":{},"2169":{},"2377":{},"2491":{},"2671":{},"2801":{},"2987":{},"3101":{},"3221":{},"3349":{},"3543":{},"3714":{},"3857":{},"4121":{}},"parent":{}}],["checkout",{"_index":230,"name":{"229":{}},"parent":{"230":{},"498":{},"499":{},"500":{},"750":{},"751":{},"752":{},"973":{},"974":{}}}],["checkout.orders",{"_index":232,"name":{},"parent":{"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"249":{},"251":{},"253":{},"255":{},"257":{},"259":{},"261":{},"263":{},"265":{},"267":{},"269":{},"271":{},"273":{},"275":{},"277":{},"279":{},"280":{},"281":{},"284":{},"297":{},"298":{},"304":{},"307":{},"308":{},"314":{},"317":{},"320":{},"321":{},"322":{},"323":{},"324":{},"331":{},"332":{},"335":{},"336":{},"337":{},"340":{},"341":{},"345":{},"346":{},"352":{},"353":{},"356":{},"359":{},"360":{},"361":{},"365":{},"372":{},"373":{},"374":{},"375":{},"376":{},"382":{},"383":{},"388":{},"398":{},"399":{},"400":{},"401":{},"402":{},"403":{},"404":{},"405":{},"406":{},"408":{},"410":{},"412":{},"414":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"458":{},"465":{},"466":{},"468":{},"470":{},"472":{},"474":{},"476":{},"478":{},"480":{},"482":{},"484":{},"486":{},"488":{},"490":{},"492":{},"494":{},"496":{},"497":{}}}],["checkout.orders.abtestsegment",{"_index":346,"name":{},"parent":{"342":{}}}],["checkout.orders.abtestsegment.__type",{"_index":348,"name":{},"parent":{"343":{},"344":{}}}],["checkout.orders.asynccreated",{"_index":420,"name":{},"parent":{"483":{}}}],["checkout.orders.attributedefinition",{"_index":405,"name":{},"parent":{"437":{}}}],["checkout.orders.attributedefinition.__type",{"_index":406,"name":{},"parent":{"438":{},"439":{},"440":{},"441":{},"442":{},"443":{},"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{}}}],["checkout.orders.badrequest",{"_index":255,"name":{},"parent":{"256":{}}}],["checkout.orders.basketreopen",{"_index":273,"name":{},"parent":{"274":{}}}],["checkout.orders.cancelorderconflict",{"_index":253,"name":{},"parent":{"254":{}}}],["checkout.orders.couponitem",{"_index":310,"name":{},"parent":{"309":{}}}],["checkout.orders.couponitem.__type",{"_index":312,"name":{},"parent":{"310":{},"311":{},"312":{},"313":{}}}],["checkout.orders.createordershipment",{"_index":373,"name":{},"parent":{"366":{}}}],["checkout.orders.createordershipment.__type",{"_index":375,"name":{},"parent":{"367":{},"368":{},"369":{},"370":{},"371":{}}}],["checkout.orders.customerinfo",{"_index":328,"name":{},"parent":{"325":{}}}],["checkout.orders.customerinfo.__type",{"_index":330,"name":{},"parent":{"326":{},"327":{},"328":{},"329":{},"330":{}}}],["checkout.orders.dateconditionalrequest",{"_index":417,"name":{},"parent":{"477":{}}}],["checkout.orders.daterangefilter",{"_index":411,"name":{},"parent":{"467":{}}}],["checkout.orders.datetimerangefilter",{"_index":428,"name":{},"parent":{"495":{}}}],["checkout.orders.discount",{"_index":300,"name":{},"parent":{"299":{}}}],["checkout.orders.discount.__type",{"_index":302,"name":{},"parent":{"300":{},"301":{},"302":{},"303":{}}}],["checkout.orders.etagconditionalrequest",{"_index":419,"name":{},"parent":{"481":{}}}],["checkout.orders.etagresponse",{"_index":412,"name":{},"parent":{"469":{}}}],["checkout.orders.integerrangefilter",{"_index":414,"name":{},"parent":{"471":{}}}],["checkout.orders.invalidcurrency",{"_index":271,"name":{},"parent":{"272":{}}}],["checkout.orders.invalidordertotal",{"_index":267,"name":{},"parent":{"268":{}}}],["checkout.orders.invalidtaxtotal",{"_index":261,"name":{},"parent":{"262":{}}}],["checkout.orders.nocontent",{"_index":275,"name":{},"parent":{"276":{}}}],["checkout.orders.nopropertiesallowed",{"_index":404,"name":{},"parent":{"415":{}}}],["checkout.orders.numericrangefilter",{"_index":426,"name":{},"parent":{"493":{}}}],["checkout.orders.offsetpaginated",{"_index":423,"name":{},"parent":{"489":{}}}],["checkout.orders.orderconfirmationstatusupdaterequest",{"_index":306,"name":{},"parent":{"305":{}}}],["checkout.orders.orderconfirmationstatusupdaterequest.__type",{"_index":307,"name":{},"parent":{"306":{}}}],["checkout.orders.ordercreated",{"_index":257,"name":{},"parent":{"258":{}}}],["checkout.orders.orderexportstatusupdaterequest",{"_index":360,"name":{},"parent":{"354":{}}}],["checkout.orders.orderexportstatusupdaterequest.__type",{"_index":361,"name":{},"parent":{"355":{}}}],["checkout.orders.orderexternalstatusupdaterequest",{"_index":337,"name":{},"parent":{"333":{}}}],["checkout.orders.orderexternalstatusupdaterequest.__type",{"_index":338,"name":{},"parent":{"334":{}}}],["checkout.orders.ordernote",{"_index":352,"name":{},"parent":{"347":{}}}],["checkout.orders.ordernote.__type",{"_index":354,"name":{},"parent":{"348":{},"349":{},"350":{},"351":{}}}],["checkout.orders.ordernotfound",{"_index":249,"name":{},"parent":{"250":{}}}],["checkout.orders.orderpaymentstatusupdaterequest",{"_index":281,"name":{},"parent":{"282":{}}}],["checkout.orders.orderpaymentstatusupdaterequest.__type",{"_index":283,"name":{},"parent":{"283":{}}}],["checkout.orders.ordershippingstatusupdaterequest",{"_index":342,"name":{},"parent":{"338":{}}}],["checkout.orders.ordershippingstatusupdaterequest.__type",{"_index":343,"name":{},"parent":{"339":{}}}],["checkout.orders.ordersresponse",{"_index":317,"name":{},"parent":{"315":{}}}],["checkout.orders.ordersresponse.__type",{"_index":319,"name":{},"parent":{"316":{}}}],["checkout.orders.orderstatusupdaterequest",{"_index":363,"name":{},"parent":{"357":{}}}],["checkout.orders.orderstatusupdaterequest.__type",{"_index":364,"name":{},"parent":{"358":{}}}],["checkout.orders.paymentcard",{"_index":285,"name":{},"parent":{"285":{}}}],["checkout.orders.paymentcard.__type",{"_index":287,"name":{},"parent":{"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{}}}],["checkout.orders.paymentinstrumentnotfound",{"_index":263,"name":{},"parent":{"264":{}}}],["checkout.orders.placeorderconflict",{"_index":269,"name":{},"parent":{"270":{}}}],["checkout.orders.productlistitemreference",{"_index":393,"name":{},"parent":{"389":{}}}],["checkout.orders.productlistitemreference.__type",{"_index":394,"name":{},"parent":{"390":{},"391":{},"392":{},"393":{},"394":{},"395":{},"396":{},"397":{}}}],["checkout.orders.productlistreference",{"_index":385,"name":{},"parent":{"377":{}}}],["checkout.orders.productlistreference.__type",{"_index":386,"name":{},"parent":{"378":{},"379":{},"380":{},"381":{}}}],["checkout.orders.productreference",{"_index":368,"name":{},"parent":{"362":{}}}],["checkout.orders.productreference.__type",{"_index":370,"name":{},"parent":{"363":{},"364":{}}}],["checkout.orders.propertyvaluedefinition",{"_index":407,"name":{},"parent":{"459":{}}}],["checkout.orders.propertyvaluedefinition.__type",{"_index":408,"name":{},"parent":{"460":{},"461":{},"462":{},"463":{},"464":{}}}],["checkout.orders.queryparamslimit",{"_index":400,"name":{},"parent":{"407":{}}}],["checkout.orders.queryparamsoffset",{"_index":401,"name":{},"parent":{"409":{}}}],["checkout.orders.ratelimited",{"_index":421,"name":{},"parent":{"485":{}}}],["checkout.orders.ratelimited2",{"_index":422,"name":{},"parent":{"487":{}}}],["checkout.orders.ratelimited3",{"_index":415,"name":{},"parent":{"473":{}}}],["checkout.orders.ratelimited4",{"_index":424,"name":{},"parent":{"491":{}}}],["checkout.orders.ratelimited5",{"_index":418,"name":{},"parent":{"479":{}}}],["checkout.orders.selectable",{"_index":403,"name":{},"parent":{"413":{}}}],["checkout.orders.shipmentnotfound",{"_index":259,"name":{},"parent":{"260":{}}}],["checkout.orders.shippingmethodreference",{"_index":321,"name":{},"parent":{"318":{}}}],["checkout.orders.shippingmethodreference.__type",{"_index":322,"name":{},"parent":{"319":{}}}],["checkout.orders.sitenotfound",{"_index":247,"name":{},"parent":{"248":{}}}],["checkout.orders.sitespecific",{"_index":402,"name":{},"parent":{"411":{}}}],["checkout.orders.status",{"_index":389,"name":{},"parent":{"384":{}}}],["checkout.orders.status.__type",{"_index":390,"name":{},"parent":{"385":{},"386":{},"387":{}}}],["checkout.orders.statustransitionconflict",{"_index":251,"name":{},"parent":{"252":{}}}],["checkout.orders.synccreated",{"_index":416,"name":{},"parent":{"475":{}}}],["checkout.orders.undocancelorderconflict",{"_index":265,"name":{},"parent":{"266":{}}}],["checkout.orders.undofailorderconflict",{"_index":277,"name":{},"parent":{"278":{}}}],["checkout.shopperbaskets",{"_index":432,"name":{},"parent":{"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"553":{},"555":{},"557":{},"559":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"603":{},"610":{},"611":{},"612":{},"613":{},"614":{},"627":{},"628":{},"629":{},"630":{},"637":{},"638":{},"644":{},"645":{},"646":{},"647":{},"648":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"658":{},"659":{},"660":{},"666":{},"667":{},"668":{},"672":{},"673":{},"677":{},"678":{},"679":{},"680":{},"684":{},"685":{},"696":{},"697":{},"702":{},"707":{},"717":{},"718":{},"720":{},"722":{},"724":{},"726":{},"728":{},"730":{},"732":{},"734":{},"736":{},"738":{},"740":{},"742":{},"744":{},"746":{},"748":{},"749":{}}}],["checkout.shopperbaskets.asynccreated",{"_index":547,"name":{},"parent":{"735":{}}}],["checkout.shopperbaskets.attributedefinition",{"_index":477,"name":{},"parent":{"582":{}}}],["checkout.shopperbaskets.attributedefinition.__type",{"_index":478,"name":{},"parent":{"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{},"600":{},"601":{},"602":{}}}],["checkout.shopperbaskets.dateconditionalrequest",{"_index":544,"name":{},"parent":{"729":{}}}],["checkout.shopperbaskets.daterangefilter",{"_index":539,"name":{},"parent":{"719":{}}}],["checkout.shopperbaskets.datetimerangefilter",{"_index":553,"name":{},"parent":{"747":{}}}],["checkout.shopperbaskets.discountrequest",{"_index":513,"name":{},"parent":{"669":{}}}],["checkout.shopperbaskets.discountrequest.__type",{"_index":514,"name":{},"parent":{"670":{},"671":{}}}],["checkout.shopperbaskets.etagconditionalrequest",{"_index":546,"name":{},"parent":{"733":{}}}],["checkout.shopperbaskets.etagresponse",{"_index":540,"name":{},"parent":{"721":{}}}],["checkout.shopperbaskets.groupedtaxitem",{"_index":523,"name":{},"parent":{"681":{}}}],["checkout.shopperbaskets.groupedtaxitem.__type",{"_index":525,"name":{},"parent":{"682":{},"683":{}}}],["checkout.shopperbaskets.integerrangefilter",{"_index":541,"name":{},"parent":{"723":{}}}],["checkout.shopperbaskets.localespecific",{"_index":471,"name":{},"parent":{"542":{}}}],["checkout.shopperbaskets.nopropertiesallowed",{"_index":476,"name":{},"parent":{"560":{}}}],["checkout.shopperbaskets.note",{"_index":489,"name":{},"parent":{"631":{}}}],["checkout.shopperbaskets.note.__type",{"_index":490,"name":{},"parent":{"632":{},"633":{},"634":{},"635":{},"636":{}}}],["checkout.shopperbaskets.numericrangefilter",{"_index":552,"name":{},"parent":{"745":{}}}],["checkout.shopperbaskets.offsetpaginated",{"_index":550,"name":{},"parent":{"741":{}}}],["checkout.shopperbaskets.orderlookuprequest",{"_index":517,"name":{},"parent":{"674":{}}}],["checkout.shopperbaskets.orderlookuprequest.__type",{"_index":518,"name":{},"parent":{"675":{},"676":{}}}],["checkout.shopperbaskets.orderpaymentcardrequest",{"_index":528,"name":{},"parent":{"686":{}}}],["checkout.shopperbaskets.orderpaymentcardrequest.__type",{"_index":529,"name":{},"parent":{"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{}}}],["checkout.shopperbaskets.paymentcard",{"_index":485,"name":{},"parent":{"615":{}}}],["checkout.shopperbaskets.paymentcard.__type",{"_index":486,"name":{},"parent":{"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{}}}],["checkout.shopperbaskets.productdetailslink",{"_index":509,"name":{},"parent":{"661":{}}}],["checkout.shopperbaskets.productdetailslink.__type",{"_index":511,"name":{},"parent":{"662":{},"663":{},"664":{},"665":{}}}],["checkout.shopperbaskets.productlistitemreference",{"_index":537,"name":{},"parent":{"708":{}}}],["checkout.shopperbaskets.productlistitemreference.__type",{"_index":538,"name":{},"parent":{"709":{},"710":{},"711":{},"712":{},"713":{},"714":{},"715":{},"716":{}}}],["checkout.shopperbaskets.promotionlink",{"_index":492,"name":{},"parent":{"639":{}}}],["checkout.shopperbaskets.promotionlink.__type",{"_index":494,"name":{},"parent":{"640":{},"641":{},"642":{},"643":{}}}],["checkout.shopperbaskets.propertyvaluedefinition",{"_index":479,"name":{},"parent":{"604":{}}}],["checkout.shopperbaskets.propertyvaluedefinition.__type",{"_index":480,"name":{},"parent":{"605":{},"606":{},"607":{},"608":{},"609":{}}}],["checkout.shopperbaskets.queryparamslimit",{"_index":472,"name":{},"parent":{"552":{}}}],["checkout.shopperbaskets.queryparamsoffset",{"_index":473,"name":{},"parent":{"554":{}}}],["checkout.shopperbaskets.ratelimited",{"_index":548,"name":{},"parent":{"737":{}}}],["checkout.shopperbaskets.ratelimited2",{"_index":549,"name":{},"parent":{"739":{}}}],["checkout.shopperbaskets.ratelimited3",{"_index":542,"name":{},"parent":{"725":{}}}],["checkout.shopperbaskets.ratelimited4",{"_index":551,"name":{},"parent":{"743":{}}}],["checkout.shopperbaskets.ratelimited5",{"_index":545,"name":{},"parent":{"731":{}}}],["checkout.shopperbaskets.selectable",{"_index":475,"name":{},"parent":{"558":{}}}],["checkout.shopperbaskets.simplelink",{"_index":506,"name":{},"parent":{"657":{}}}],["checkout.shopperbaskets.sitespecific",{"_index":474,"name":{},"parent":{"556":{}}}],["checkout.shopperbaskets.status",{"_index":535,"name":{},"parent":{"703":{}}}],["checkout.shopperbaskets.status.__type",{"_index":536,"name":{},"parent":{"704":{},"705":{},"706":{}}}],["checkout.shopperbaskets.synccreated",{"_index":543,"name":{},"parent":{"727":{}}}],["checkout.shopperbaskets.taxes",{"_index":501,"name":{},"parent":{"649":{}}}],["checkout.shopperbaskets.taxes.__type",{"_index":502,"name":{},"parent":{"650":{}}}],["checkout.shopperbaskets.taxitem",{"_index":532,"name":{},"parent":{"698":{}}}],["checkout.shopperbaskets.taxitem.__type",{"_index":533,"name":{},"parent":{"699":{},"700":{},"701":{}}}],["checkout.shopperorders",{"_index":555,"name":{},"parent":{"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{},"763":{},"764":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"776":{},"778":{},"780":{},"782":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"826":{},"833":{},"834":{},"835":{},"836":{},"837":{},"850":{},"851":{},"852":{},"853":{},"860":{},"861":{},"867":{},"868":{},"869":{},"870":{},"871":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"881":{},"882":{},"883":{},"889":{},"890":{},"891":{},"895":{},"896":{},"900":{},"901":{},"902":{},"903":{},"907":{},"908":{},"919":{},"920":{},"925":{},"930":{},"940":{},"941":{},"943":{},"945":{},"947":{},"949":{},"951":{},"953":{},"955":{},"957":{},"959":{},"961":{},"963":{},"965":{},"967":{},"969":{},"971":{},"972":{}}}],["checkout.shopperorders.asynccreated",{"_index":606,"name":{},"parent":{"958":{}}}],["checkout.shopperorders.attributedefinition",{"_index":569,"name":{},"parent":{"805":{}}}],["checkout.shopperorders.attributedefinition.__type",{"_index":570,"name":{},"parent":{"806":{},"807":{},"808":{},"809":{},"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{},"818":{},"819":{},"820":{},"821":{},"822":{},"823":{},"824":{},"825":{}}}],["checkout.shopperorders.dateconditionalrequest",{"_index":603,"name":{},"parent":{"952":{}}}],["checkout.shopperorders.daterangefilter",{"_index":598,"name":{},"parent":{"942":{}}}],["checkout.shopperorders.datetimerangefilter",{"_index":612,"name":{},"parent":{"970":{}}}],["checkout.shopperorders.discountrequest",{"_index":584,"name":{},"parent":{"892":{}}}],["checkout.shopperorders.discountrequest.__type",{"_index":585,"name":{},"parent":{"893":{},"894":{}}}],["checkout.shopperorders.etagconditionalrequest",{"_index":605,"name":{},"parent":{"956":{}}}],["checkout.shopperorders.etagresponse",{"_index":599,"name":{},"parent":{"944":{}}}],["checkout.shopperorders.groupedtaxitem",{"_index":588,"name":{},"parent":{"904":{}}}],["checkout.shopperorders.groupedtaxitem.__type",{"_index":589,"name":{},"parent":{"905":{},"906":{}}}],["checkout.shopperorders.integerrangefilter",{"_index":600,"name":{},"parent":{"946":{}}}],["checkout.shopperorders.localespecific",{"_index":563,"name":{},"parent":{"765":{}}}],["checkout.shopperorders.nopropertiesallowed",{"_index":568,"name":{},"parent":{"783":{}}}],["checkout.shopperorders.note",{"_index":575,"name":{},"parent":{"854":{}}}],["checkout.shopperorders.note.__type",{"_index":576,"name":{},"parent":{"855":{},"856":{},"857":{},"858":{},"859":{}}}],["checkout.shopperorders.numericrangefilter",{"_index":611,"name":{},"parent":{"968":{}}}],["checkout.shopperorders.offsetpaginated",{"_index":609,"name":{},"parent":{"964":{}}}],["checkout.shopperorders.orderlookuprequest",{"_index":586,"name":{},"parent":{"897":{}}}],["checkout.shopperorders.orderlookuprequest.__type",{"_index":587,"name":{},"parent":{"898":{},"899":{}}}],["checkout.shopperorders.orderpaymentcardrequest",{"_index":590,"name":{},"parent":{"909":{}}}],["checkout.shopperorders.orderpaymentcardrequest.__type",{"_index":591,"name":{},"parent":{"910":{},"911":{},"912":{},"913":{},"914":{},"915":{},"916":{},"917":{},"918":{}}}],["checkout.shopperorders.paymentcard",{"_index":573,"name":{},"parent":{"838":{}}}],["checkout.shopperorders.paymentcard.__type",{"_index":574,"name":{},"parent":{"839":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{},"848":{},"849":{}}}],["checkout.shopperorders.productdetailslink",{"_index":582,"name":{},"parent":{"884":{}}}],["checkout.shopperorders.productdetailslink.__type",{"_index":583,"name":{},"parent":{"885":{},"886":{},"887":{},"888":{}}}],["checkout.shopperorders.productlistitemreference",{"_index":596,"name":{},"parent":{"931":{}}}],["checkout.shopperorders.productlistitemreference.__type",{"_index":597,"name":{},"parent":{"932":{},"933":{},"934":{},"935":{},"936":{},"937":{},"938":{},"939":{}}}],["checkout.shopperorders.promotionlink",{"_index":577,"name":{},"parent":{"862":{}}}],["checkout.shopperorders.promotionlink.__type",{"_index":578,"name":{},"parent":{"863":{},"864":{},"865":{},"866":{}}}],["checkout.shopperorders.propertyvaluedefinition",{"_index":571,"name":{},"parent":{"827":{}}}],["checkout.shopperorders.propertyvaluedefinition.__type",{"_index":572,"name":{},"parent":{"828":{},"829":{},"830":{},"831":{},"832":{}}}],["checkout.shopperorders.queryparamslimit",{"_index":564,"name":{},"parent":{"775":{}}}],["checkout.shopperorders.queryparamsoffset",{"_index":565,"name":{},"parent":{"777":{}}}],["checkout.shopperorders.ratelimited",{"_index":607,"name":{},"parent":{"960":{}}}],["checkout.shopperorders.ratelimited2",{"_index":608,"name":{},"parent":{"962":{}}}],["checkout.shopperorders.ratelimited3",{"_index":601,"name":{},"parent":{"948":{}}}],["checkout.shopperorders.ratelimited4",{"_index":610,"name":{},"parent":{"966":{}}}],["checkout.shopperorders.ratelimited5",{"_index":604,"name":{},"parent":{"954":{}}}],["checkout.shopperorders.selectable",{"_index":567,"name":{},"parent":{"781":{}}}],["checkout.shopperorders.simplelink",{"_index":581,"name":{},"parent":{"880":{}}}],["checkout.shopperorders.sitespecific",{"_index":566,"name":{},"parent":{"779":{}}}],["checkout.shopperorders.status",{"_index":594,"name":{},"parent":{"926":{}}}],["checkout.shopperorders.status.__type",{"_index":595,"name":{},"parent":{"927":{},"928":{},"929":{}}}],["checkout.shopperorders.synccreated",{"_index":602,"name":{},"parent":{"950":{}}}],["checkout.shopperorders.taxes",{"_index":579,"name":{},"parent":{"872":{}}}],["checkout.shopperorders.taxes.__type",{"_index":580,"name":{},"parent":{"873":{}}}],["checkout.shopperorders.taxitem",{"_index":592,"name":{},"parent":{"921":{}}}],["checkout.shopperorders.taxitem.__type",{"_index":593,"name":{},"parent":{"922":{},"923":{},"924":{}}}],["client",{"_index":930,"name":{"1730":{}},"parent":{}}],["clientconfig",{"_index":55,"name":{"54":{},"245":{},"539":{},"762":{},"990":{},"1123":{},"1260":{},"1470":{},"1591":{},"1720":{},"1774":{},"1990":{},"2130":{},"2265":{},"2287":{},"2454":{},"2578":{},"2748":{},"2893":{},"3060":{},"3175":{},"3297":{},"3454":{},"3649":{},"3789":{},"3932":{},"4019":{},"4132":{}},"parent":{}}],["clientlistresponse",{"_index":928,"name":{"1728":{}},"parent":{}}],["clientrequest",{"_index":927,"name":{"1727":{}},"parent":{}}],["closedobject",{"_index":168,"name":{"166":{},"404":{},"549":{},"772":{},"1055":{},"1167":{},"1389":{},"1528":{},"1600":{},"1802":{},"1997":{},"2177":{},"2385":{},"2499":{},"2679":{},"2808":{},"2995":{},"3109":{},"3228":{},"3357":{},"3550":{},"3721":{},"3865":{},"3937":{},"4028":{}},"parent":{}}],["code",{"_index":311,"name":{"310":{},"385":{},"704":{},"927":{},"2593":{},"2605":{},"2611":{}},"parent":{}}],["codeprefix",{"_index":1388,"name":{"2633":{}},"parent":{}}],["codes",{"_index":1384,"name":{"2630":{}},"parent":{}}],["collectionresponseenvelope",{"_index":59,"name":{"58":{}},"parent":{}}],["commonerrors",{"_index":974,"name":{"1838":{}},"parent":{}}],["commonparameters",{"_index":1907,"name":{"4133":{}},"parent":{}}],["component",{"_index":1158,"name":{"2134":{}},"parent":{}}],["condition",{"_index":1684,"name":{"3463":{}},"parent":{}}],["conditionsresult",{"_index":1689,"name":{"3469":{}},"parent":{}}],["constructor",{"_index":2,"name":{"2":{},"231":{},"501":{},"753":{},"977":{},"1118":{},"1230":{},"1452":{},"1589":{},"1705":{},"1771":{},"1987":{},"2127":{},"2285":{},"2448":{},"2568":{},"2742":{},"2887":{},"3058":{},"3172":{},"3291":{},"3421":{},"3613":{},"3784":{},"3929":{},"4016":{}},"parent":{}}],["contenttypeheaderexists",{"_index":1195,"name":{"2251":{}},"parent":{}}],["correctableattributes",{"_index":1023,"name":{"1892":{},"1899":{},"1918":{}},"parent":{}}],["coupon",{"_index":1374,"name":{"2614":{}},"parent":{}}],["couponcode",{"_index":1365,"name":{"2603":{}},"parent":{}}],["couponcoderedemptionrequest",{"_index":1371,"name":{"2609":{}},"parent":{}}],["couponcodes",{"_index":1345,"name":{"2580":{}},"parent":{}}],["couponid",{"_index":1357,"name":{"2594":{},"2616":{}},"parent":{}}],["couponitem",{"_index":309,"name":{"308":{},"637":{},"860":{},"1275":{}},"parent":{}}],["couponitemid",{"_index":313,"name":{"311":{}},"parent":{}}],["couponmulticodesrequest",{"_index":1382,"name":{"2628":{}},"parent":{}}],["couponnotfound",{"_index":1391,"name":{"2635":{}},"parent":{}}],["couponredemption",{"_index":1354,"name":{"2591":{}},"parent":{}}],["couponredemptionsearchresult",{"_index":1344,"name":{"2579":{}},"parent":{}}],["couponredemptionssearch",{"_index":1336,"name":{"2570":{}},"parent":{}}],["coupons",{"_index":1234,"name":{"2297":{},"2567":{},"2904":{}},"parent":{}}],["couponsearchresult",{"_index":1370,"name":{"2608":{}},"parent":{}}],["couponssearch",{"_index":1335,"name":{"2569":{}},"parent":{}}],["couponsystemcodeconfig",{"_index":1386,"name":{"2631":{}},"parent":{}}],["createaddressforcustomerincustomerlist",{"_index":623,"name":{"985":{}},"parent":{}}],["createbasket",{"_index":433,"name":{"502":{}},"parent":{}}],["createcampaign",{"_index":1301,"name":{"2453":{}},"parent":{}}],["createcategoryincatalog",{"_index":1653,"name":{"3429":{}},"parent":{}}],["createcategoryrules",{"_index":1666,"name":{"3442":{}},"parent":{}}],["createcodeverifier",{"_index":1209,"name":{"2271":{}},"parent":{}}],["createcoupon",{"_index":1341,"name":{"2575":{}},"parent":{}}],["createcustomeraddress",{"_index":713,"name":{"1238":{}},"parent":{}}],["createcustomerincustomerlist",{"_index":621,"name":{"983":{}},"parent":{}}],["createcustomerlist",{"_index":617,"name":{"979":{}},"parent":{}}],["createcustomerpaymentinstrument",{"_index":720,"name":{"1245":{}},"parent":{}}],["createcustomerproductlist",{"_index":724,"name":{"1249":{}},"parent":{}}],["createcustomerproductlistitem",{"_index":728,"name":{"1253":{}},"parent":{}}],["createcustomrule",{"_index":36,"name":{"35":{}},"parent":{}}],["createdby",{"_index":353,"name":{"348":{},"632":{},"855":{}},"parent":{}}],["creategiftcertificate",{"_index":1420,"name":{"2743":{}},"parent":{}}],["createlogpushjob",{"_index":29,"name":{"28":{}},"parent":{}}],["createlogpushownership",{"_index":28,"name":{"27":{}},"parent":{}}],["createmrtrules",{"_index":22,"name":{"21":{}},"parent":{}}],["createorder",{"_index":556,"name":{"754":{}},"parent":{}}],["createorderoptionitem",{"_index":388,"name":{"382":{}},"parent":{}}],["createorderpaymentinstrument",{"_index":340,"name":{"336":{}},"parent":{}}],["createorderpaymenttransaction",{"_index":365,"name":{"359":{}},"parent":{}}],["createorderpriceadjustment",{"_index":350,"name":{"345":{}},"parent":{}}],["createorderproductitems",{"_index":366,"name":{"360":{}},"parent":{}}],["createorderrequest",{"_index":383,"name":{"375":{}},"parent":{}}],["createorders",{"_index":234,"name":{"233":{}},"parent":{}}],["createordershipment",{"_index":372,"name":{"365":{}},"parent":{}}],["createorupdatecategoryrulecondition",{"_index":1673,"name":{"3449":{}},"parent":{}}],["createpaymentinstrumentfororder",{"_index":558,"name":{"757":{}},"parent":{}}],["createproduct",{"_index":1749,"name":{"3617":{}},"parent":{}}],["createproductoption",{"_index":1765,"name":{"3633":{}},"parent":{}}],["createproductoptionvalue",{"_index":1769,"name":{"3637":{}},"parent":{}}],["createpromotion",{"_index":1484,"name":{"2892":{}},"parent":{}}],["createratelimitingrule",{"_index":42,"name":{"41":{}},"parent":{}}],["createshipmentforbasket",{"_index":461,"name":{"530":{}},"parent":{}}],["createshoppercontext",{"_index":676,"name":{"1120":{}},"parent":{}}],["createsourcecodegroup",{"_index":1599,"name":{"3295":{}},"parent":{}}],["createstorefrontzone",{"_index":4,"name":{"3":{}},"parent":{}}],["createupdaterule",{"_index":1668,"name":{"3444":{}},"parent":{}}],["createvariationattribute",{"_index":1778,"name":{"3646":{}},"parent":{}}],["createvariationattributevalue",{"_index":1773,"name":{"3641":{}},"parent":{}}],["creationdate",{"_index":355,"name":{"349":{},"633":{},"856":{},"2595":{},"2617":{}},"parent":{}}],["credentials",{"_index":635,"name":{"999":{}},"parent":{}}],["creditcardexpired",{"_index":288,"name":{"287":{},"617":{},"840":{}},"parent":{}}],["creditcardtoken",{"_index":289,"name":{"288":{},"618":{},"688":{},"841":{},"911":{}},"parent":{}}],["currencymnemonic",{"_index":1426,"name":{"2751":{}},"parent":{}}],["custom_api_default_base_uri",{"_index":1194,"name":{"2250":{}},"parent":{}}],["customapiparameters",{"_index":1196,"name":{"2252":{}},"parent":{}}],["customer",{"_index":613,"name":{"975":{},"997":{},"1311":{}},"parent":{"976":{},"1115":{},"1116":{},"1117":{},"1227":{},"1228":{},"1229":{},"1449":{},"1450":{},"1451":{},"1586":{},"1587":{},"1588":{},"1702":{},"1703":{},"1704":{},"1767":{},"1768":{}}}],["customer.customers",{"_index":615,"name":{},"parent":{"977":{},"978":{},"979":{},"980":{},"981":{},"982":{},"983":{},"984":{},"985":{},"986":{},"987":{},"988":{},"989":{},"990":{},"991":{},"992":{},"993":{},"994":{},"995":{},"996":{},"997":{},"998":{},"999":{},"1000":{},"1001":{},"1002":{},"1004":{},"1006":{},"1008":{},"1010":{},"1012":{},"1014":{},"1015":{},"1017":{},"1019":{},"1021":{},"1023":{},"1025":{},"1027":{},"1029":{},"1031":{},"1033":{},"1035":{},"1037":{},"1039":{},"1041":{},"1043":{},"1045":{},"1047":{},"1048":{},"1049":{},"1050":{},"1051":{},"1052":{},"1053":{},"1054":{},"1055":{},"1056":{},"1057":{},"1059":{},"1061":{},"1063":{},"1065":{},"1067":{},"1068":{},"1069":{},"1070":{},"1071":{},"1072":{},"1073":{},"1074":{},"1075":{},"1076":{},"1077":{},"1078":{},"1079":{},"1080":{},"1081":{},"1082":{},"1083":{},"1084":{},"1085":{},"1086":{},"1108":{}}}],["customer.customers.alreadyexists",{"_index":645,"name":{},"parent":{"1011":{}}}],["customer.customers.asynccreated",{"_index":656,"name":{},"parent":{"1032":{}}}],["customer.customers.attributedefinition",{"_index":669,"name":{},"parent":{"1087":{}}}],["customer.customers.attributedefinition.__type",{"_index":670,"name":{},"parent":{"1088":{},"1089":{},"1090":{},"1091":{},"1092":{},"1093":{},"1094":{},"1095":{},"1096":{},"1097":{},"1098":{},"1099":{},"1100":{},"1101":{},"1102":{},"1103":{},"1104":{},"1105":{},"1106":{},"1107":{}}}],["customer.customers.badrequest",{"_index":641,"name":{},"parent":{"1007":{}}}],["customer.customers.customergroupsearchbadrequest",{"_index":643,"name":{},"parent":{"1009":{}}}],["customer.customers.dateconditionalrequest",{"_index":653,"name":{},"parent":{"1026":{}}}],["customer.customers.daterangefilter",{"_index":648,"name":{},"parent":{"1016":{}}}],["customer.customers.datetimerangefilter",{"_index":663,"name":{},"parent":{"1046":{}}}],["customer.customers.etagconditionalrequest",{"_index":655,"name":{},"parent":{"1030":{}}}],["customer.customers.etagresponse",{"_index":649,"name":{},"parent":{"1018":{}}}],["customer.customers.forbidden",{"_index":640,"name":{},"parent":{"1005":{}}}],["customer.customers.integerrangefilter",{"_index":650,"name":{},"parent":{"1020":{}}}],["customer.customers.nopropertiesallowed",{"_index":668,"name":{},"parent":{"1066":{}}}],["customer.customers.notfound",{"_index":638,"name":{},"parent":{"1003":{}}}],["customer.customers.numericrangefilter",{"_index":662,"name":{},"parent":{"1044":{}}}],["customer.customers.offsetpaginated",{"_index":659,"name":{},"parent":{"1038":{}}}],["customer.customers.propertyvaluedefinition",{"_index":671,"name":{},"parent":{"1109":{}}}],["customer.customers.propertyvaluedefinition.__type",{"_index":672,"name":{},"parent":{"1110":{},"1111":{},"1112":{},"1113":{},"1114":{}}}],["customer.customers.queryparamslimit",{"_index":664,"name":{},"parent":{"1058":{}}}],["customer.customers.queryparamsoffset",{"_index":665,"name":{},"parent":{"1060":{}}}],["customer.customers.rangefilter",{"_index":660,"name":{},"parent":{"1040":{}}}],["customer.customers.ratelimited",{"_index":657,"name":{},"parent":{"1034":{}}}],["customer.customers.ratelimited2",{"_index":658,"name":{},"parent":{"1036":{}}}],["customer.customers.ratelimited3",{"_index":651,"name":{},"parent":{"1022":{}}}],["customer.customers.ratelimited4",{"_index":661,"name":{},"parent":{"1042":{}}}],["customer.customers.ratelimited5",{"_index":654,"name":{},"parent":{"1028":{}}}],["customer.customers.selectable",{"_index":667,"name":{},"parent":{"1064":{}}}],["customer.customers.sitespecific",{"_index":666,"name":{},"parent":{"1062":{}}}],["customer.customers.synccreated",{"_index":652,"name":{},"parent":{"1024":{}}}],["customer.customers.unauthorized",{"_index":647,"name":{},"parent":{"1013":{}}}],["customer.shoppercontext",{"_index":674,"name":{},"parent":{"1118":{},"1119":{},"1120":{},"1121":{},"1122":{},"1123":{},"1124":{},"1125":{},"1126":{},"1127":{},"1129":{},"1131":{},"1133":{},"1135":{},"1137":{},"1139":{},"1141":{},"1143":{},"1145":{},"1147":{},"1149":{},"1151":{},"1153":{},"1155":{},"1157":{},"1159":{},"1160":{},"1161":{},"1162":{},"1163":{},"1164":{},"1165":{},"1166":{},"1167":{},"1168":{},"1169":{},"1171":{},"1173":{},"1175":{},"1177":{},"1179":{},"1180":{},"1181":{},"1182":{},"1183":{},"1184":{},"1185":{},"1186":{},"1187":{},"1188":{},"1189":{},"1190":{},"1191":{},"1192":{},"1193":{},"1194":{},"1195":{},"1196":{},"1197":{},"1198":{},"1220":{}}}],["customer.shoppercontext.asynccreated",{"_index":687,"name":{},"parent":{"1144":{}}}],["customer.shoppercontext.attributedefinition",{"_index":700,"name":{},"parent":{"1199":{}}}],["customer.shoppercontext.attributedefinition.__type",{"_index":701,"name":{},"parent":{"1200":{},"1201":{},"1202":{},"1203":{},"1204":{},"1205":{},"1206":{},"1207":{},"1208":{},"1209":{},"1210":{},"1211":{},"1212":{},"1213":{},"1214":{},"1215":{},"1216":{},"1217":{},"1218":{},"1219":{}}}],["customer.shoppercontext.dateconditionalrequest",{"_index":684,"name":{},"parent":{"1138":{}}}],["customer.shoppercontext.daterangefilter",{"_index":679,"name":{},"parent":{"1128":{}}}],["customer.shoppercontext.datetimerangefilter",{"_index":694,"name":{},"parent":{"1158":{}}}],["customer.shoppercontext.etagconditionalrequest",{"_index":686,"name":{},"parent":{"1142":{}}}],["customer.shoppercontext.etagresponse",{"_index":680,"name":{},"parent":{"1130":{}}}],["customer.shoppercontext.integerrangefilter",{"_index":681,"name":{},"parent":{"1132":{}}}],["customer.shoppercontext.nopropertiesallowed",{"_index":699,"name":{},"parent":{"1178":{}}}],["customer.shoppercontext.numericrangefilter",{"_index":693,"name":{},"parent":{"1156":{}}}],["customer.shoppercontext.offsetpaginated",{"_index":690,"name":{},"parent":{"1150":{}}}],["customer.shoppercontext.propertyvaluedefinition",{"_index":702,"name":{},"parent":{"1221":{}}}],["customer.shoppercontext.propertyvaluedefinition.__type",{"_index":703,"name":{},"parent":{"1222":{},"1223":{},"1224":{},"1225":{},"1226":{}}}],["customer.shoppercontext.queryparamslimit",{"_index":695,"name":{},"parent":{"1170":{}}}],["customer.shoppercontext.queryparamsoffset",{"_index":696,"name":{},"parent":{"1172":{}}}],["customer.shoppercontext.rangefilter",{"_index":691,"name":{},"parent":{"1152":{}}}],["customer.shoppercontext.ratelimited",{"_index":688,"name":{},"parent":{"1146":{}}}],["customer.shoppercontext.ratelimited2",{"_index":689,"name":{},"parent":{"1148":{}}}],["customer.shoppercontext.ratelimited3",{"_index":682,"name":{},"parent":{"1134":{}}}],["customer.shoppercontext.ratelimited4",{"_index":692,"name":{},"parent":{"1154":{}}}],["customer.shoppercontext.ratelimited5",{"_index":685,"name":{},"parent":{"1140":{}}}],["customer.shoppercontext.selectable",{"_index":698,"name":{},"parent":{"1176":{}}}],["customer.shoppercontext.sitespecific",{"_index":697,"name":{},"parent":{"1174":{}}}],["customer.shoppercontext.synccreated",{"_index":683,"name":{},"parent":{"1136":{}}}],["customer.shoppercustomers",{"_index":705,"name":{},"parent":{"1230":{},"1231":{},"1232":{},"1233":{},"1234":{},"1235":{},"1236":{},"1237":{},"1238":{},"1239":{},"1240":{},"1241":{},"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1253":{},"1254":{},"1255":{},"1256":{},"1257":{},"1258":{},"1259":{},"1260":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1270":{},"1271":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1279":{},"1280":{},"1281":{},"1282":{},"1283":{},"1284":{},"1285":{},"1286":{},"1287":{},"1288":{},"1289":{},"1290":{},"1291":{},"1292":{},"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1300":{},"1301":{},"1302":{},"1303":{},"1304":{},"1305":{},"1306":{},"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{},"1316":{},"1317":{},"1318":{},"1319":{},"1320":{},"1321":{},"1325":{},"1326":{},"1327":{},"1328":{},"1329":{},"1330":{},"1331":{},"1332":{},"1333":{},"1334":{},"1335":{},"1336":{},"1337":{},"1339":{},"1341":{},"1343":{},"1345":{},"1347":{},"1349":{},"1351":{},"1353":{},"1355":{},"1357":{},"1359":{},"1361":{},"1363":{},"1365":{},"1367":{},"1369":{},"1370":{},"1371":{},"1373":{},"1375":{},"1377":{},"1379":{},"1381":{},"1383":{},"1384":{},"1385":{},"1386":{},"1387":{},"1388":{},"1389":{},"1390":{},"1391":{},"1393":{},"1395":{},"1397":{},"1399":{},"1401":{},"1402":{},"1403":{},"1404":{},"1405":{},"1406":{},"1407":{},"1408":{},"1409":{},"1410":{},"1411":{},"1412":{},"1413":{},"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{},"1420":{},"1442":{}}}],["customer.shoppercustomers.asynccreated",{"_index":790,"name":{},"parent":{"1354":{}}}],["customer.shoppercustomers.attributedefinition",{"_index":812,"name":{},"parent":{"1421":{}}}],["customer.shoppercustomers.attributedefinition.__type",{"_index":813,"name":{},"parent":{"1422":{},"1423":{},"1424":{},"1425":{},"1426":{},"1427":{},"1428":{},"1429":{},"1430":{},"1431":{},"1432":{},"1433":{},"1434":{},"1435":{},"1436":{},"1437":{},"1438":{},"1439":{},"1440":{},"1441":{}}}],["customer.shoppercustomers.badrequest",{"_index":801,"name":{},"parent":{"1376":{}}}],["customer.shoppercustomers.customerauthenticationfailed",{"_index":799,"name":{},"parent":{"1372":{}}}],["customer.shoppercustomers.customerextprofilebadrequest",{"_index":806,"name":{},"parent":{"1382":{}}}],["customer.shoppercustomers.customerextprofilenotfound",{"_index":803,"name":{},"parent":{"1378":{}}}],["customer.shoppercustomers.dateconditionalrequest",{"_index":787,"name":{},"parent":{"1348":{}}}],["customer.shoppercustomers.daterangefilter",{"_index":782,"name":{},"parent":{"1338":{}}}],["customer.shoppercustomers.datetimerangefilter",{"_index":797,"name":{},"parent":{"1368":{}}}],["customer.shoppercustomers.etagconditionalrequest",{"_index":789,"name":{},"parent":{"1352":{}}}],["customer.shoppercustomers.etagresponse",{"_index":783,"name":{},"parent":{"1340":{}}}],["customer.shoppercustomers.groupedtaxitem",{"_index":774,"name":{},"parent":{"1322":{}}}],["customer.shoppercustomers.groupedtaxitem.__type",{"_index":775,"name":{},"parent":{"1323":{},"1324":{}}}],["customer.shoppercustomers.integerrangefilter",{"_index":784,"name":{},"parent":{"1342":{}}}],["customer.shoppercustomers.nopropertiesallowed",{"_index":811,"name":{},"parent":{"1400":{}}}],["customer.shoppercustomers.notfound",{"_index":800,"name":{},"parent":{"1374":{}}}],["customer.shoppercustomers.numericrangefilter",{"_index":796,"name":{},"parent":{"1366":{}}}],["customer.shoppercustomers.offsetpaginated",{"_index":793,"name":{},"parent":{"1360":{}}}],["customer.shoppercustomers.propertyvaluedefinition",{"_index":814,"name":{},"parent":{"1443":{}}}],["customer.shoppercustomers.propertyvaluedefinition.__type",{"_index":815,"name":{},"parent":{"1444":{},"1445":{},"1446":{},"1447":{},"1448":{}}}],["customer.shoppercustomers.queryparamslimit",{"_index":807,"name":{},"parent":{"1392":{}}}],["customer.shoppercustomers.queryparamsoffset",{"_index":808,"name":{},"parent":{"1394":{}}}],["customer.shoppercustomers.rangefilter",{"_index":794,"name":{},"parent":{"1362":{}}}],["customer.shoppercustomers.ratelimited",{"_index":791,"name":{},"parent":{"1356":{}}}],["customer.shoppercustomers.ratelimited2",{"_index":792,"name":{},"parent":{"1358":{}}}],["customer.shoppercustomers.ratelimited3",{"_index":785,"name":{},"parent":{"1344":{}}}],["customer.shoppercustomers.ratelimited4",{"_index":795,"name":{},"parent":{"1364":{}}}],["customer.shoppercustomers.ratelimited5",{"_index":788,"name":{},"parent":{"1350":{}}}],["customer.shoppercustomers.selectable",{"_index":810,"name":{},"parent":{"1398":{}}}],["customer.shoppercustomers.sitespecific",{"_index":809,"name":{},"parent":{"1396":{}}}],["customer.shoppercustomers.synccreated",{"_index":786,"name":{},"parent":{"1346":{}}}],["customer.shoppercustomers.unauthorized",{"_index":804,"name":{},"parent":{"1380":{}}}],["customer.shopperlogin",{"_index":817,"name":{},"parent":{"1452":{},"1453":{},"1454":{},"1455":{},"1456":{},"1457":{},"1458":{},"1459":{},"1460":{},"1461":{},"1462":{},"1463":{},"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1470":{},"1471":{},"1472":{},"1473":{},"1474":{},"1475":{},"1476":{},"1477":{},"1478":{},"1479":{},"1480":{},"1481":{},"1482":{},"1483":{},"1484":{},"1486":{},"1487":{},"1488":{},"1490":{},"1492":{},"1494":{},"1496":{},"1498":{},"1500":{},"1502":{},"1504":{},"1506":{},"1508":{},"1510":{},"1512":{},"1514":{},"1516":{},"1518":{},"1520":{},"1521":{},"1522":{},"1523":{},"1524":{},"1525":{},"1526":{},"1527":{},"1528":{},"1529":{},"1530":{},"1532":{},"1534":{},"1536":{},"1538":{},"1539":{},"1540":{},"1541":{},"1542":{},"1543":{},"1544":{},"1545":{},"1546":{},"1547":{},"1548":{},"1549":{},"1550":{},"1551":{},"1552":{},"1553":{},"1554":{},"1555":{},"1556":{},"1557":{},"1579":{}}}],["customer.shopperlogin.asynccreated",{"_index":857,"name":{},"parent":{"1505":{}}}],["customer.shopperlogin.attributedefinition",{"_index":869,"name":{},"parent":{"1558":{}}}],["customer.shopperlogin.attributedefinition.__type",{"_index":870,"name":{},"parent":{"1559":{},"1560":{},"1561":{},"1562":{},"1563":{},"1564":{},"1565":{},"1566":{},"1567":{},"1568":{},"1569":{},"1570":{},"1571":{},"1572":{},"1573":{},"1574":{},"1575":{},"1576":{},"1577":{},"1578":{}}}],["customer.shopperlogin.dateconditionalrequest",{"_index":854,"name":{},"parent":{"1499":{}}}],["customer.shopperlogin.daterangefilter",{"_index":849,"name":{},"parent":{"1489":{}}}],["customer.shopperlogin.datetimerangefilter",{"_index":864,"name":{},"parent":{"1519":{}}}],["customer.shopperlogin.etagconditionalrequest",{"_index":856,"name":{},"parent":{"1503":{}}}],["customer.shopperlogin.etagresponse",{"_index":850,"name":{},"parent":{"1491":{}}}],["customer.shopperlogin.integerrangefilter",{"_index":851,"name":{},"parent":{"1493":{}}}],["customer.shopperlogin.nopropertiesallowed",{"_index":868,"name":{},"parent":{"1537":{}}}],["customer.shopperlogin.numericrangefilter",{"_index":863,"name":{},"parent":{"1517":{}}}],["customer.shopperlogin.offsetpaginated",{"_index":860,"name":{},"parent":{"1511":{}}}],["customer.shopperlogin.propertyvaluedefinition",{"_index":871,"name":{},"parent":{"1580":{}}}],["customer.shopperlogin.propertyvaluedefinition.__type",{"_index":872,"name":{},"parent":{"1581":{},"1582":{},"1583":{},"1584":{},"1585":{}}}],["customer.shopperlogin.queryparamslimit",{"_index":865,"name":{},"parent":{"1531":{}}}],["customer.shopperlogin.queryparamsoffset",{"_index":866,"name":{},"parent":{"1533":{}}}],["customer.shopperlogin.rangefilter",{"_index":861,"name":{},"parent":{"1513":{}}}],["customer.shopperlogin.ratelimited",{"_index":858,"name":{},"parent":{"1507":{}}}],["customer.shopperlogin.ratelimited2",{"_index":859,"name":{},"parent":{"1509":{}}}],["customer.shopperlogin.ratelimited3",{"_index":852,"name":{},"parent":{"1495":{}}}],["customer.shopperlogin.ratelimited4",{"_index":862,"name":{},"parent":{"1515":{}}}],["customer.shopperlogin.ratelimited5",{"_index":855,"name":{},"parent":{"1501":{}}}],["customer.shopperlogin.sitespecific",{"_index":867,"name":{},"parent":{"1535":{}}}],["customer.shopperlogin.slasratelimit",{"_index":848,"name":{},"parent":{"1485":{}}}],["customer.shopperlogin.synccreated",{"_index":853,"name":{},"parent":{"1497":{}}}],["customer.shopperseo",{"_index":874,"name":{},"parent":{"1589":{},"1590":{},"1591":{},"1592":{},"1594":{},"1595":{},"1596":{},"1597":{},"1598":{},"1599":{},"1600":{},"1601":{},"1602":{},"1604":{},"1606":{},"1608":{},"1610":{},"1612":{},"1613":{},"1614":{},"1615":{},"1616":{},"1617":{},"1618":{},"1619":{},"1620":{},"1621":{},"1622":{},"1623":{},"1624":{},"1625":{},"1626":{},"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1654":{},"1661":{},"1662":{},"1664":{},"1666":{},"1668":{},"1669":{},"1670":{},"1672":{},"1674":{},"1676":{},"1678":{},"1680":{},"1682":{},"1684":{},"1686":{},"1688":{},"1690":{},"1692":{},"1694":{},"1696":{},"1698":{},"1700":{},"1701":{}}}],["customer.shopperseo.asynccreated",{"_index":898,"name":{},"parent":{"1687":{}}}],["customer.shopperseo.attributedefinition",{"_index":882,"name":{},"parent":{"1633":{}}}],["customer.shopperseo.attributedefinition.__type",{"_index":883,"name":{},"parent":{"1634":{},"1635":{},"1636":{},"1637":{},"1638":{},"1639":{},"1640":{},"1641":{},"1642":{},"1643":{},"1644":{},"1645":{},"1646":{},"1647":{},"1648":{},"1649":{},"1650":{},"1651":{},"1652":{},"1653":{}}}],["customer.shopperseo.badrequest",{"_index":887,"name":{},"parent":{"1663":{}}}],["customer.shopperseo.dateconditionalrequest",{"_index":895,"name":{},"parent":{"1681":{}}}],["customer.shopperseo.daterangefilter",{"_index":890,"name":{},"parent":{"1671":{}}}],["customer.shopperseo.datetimerangefilter",{"_index":904,"name":{},"parent":{"1699":{}}}],["customer.shopperseo.etagconditionalrequest",{"_index":897,"name":{},"parent":{"1685":{}}}],["customer.shopperseo.etagresponse",{"_index":891,"name":{},"parent":{"1673":{}}}],["customer.shopperseo.integerrangefilter",{"_index":892,"name":{},"parent":{"1675":{}}}],["customer.shopperseo.localespecific",{"_index":876,"name":{},"parent":{"1593":{}}}],["customer.shopperseo.nopropertiesallowed",{"_index":881,"name":{},"parent":{"1611":{}}}],["customer.shopperseo.notfound",{"_index":889,"name":{},"parent":{"1667":{}}}],["customer.shopperseo.numericrangefilter",{"_index":903,"name":{},"parent":{"1697":{}}}],["customer.shopperseo.offsetpaginated",{"_index":901,"name":{},"parent":{"1693":{}}}],["customer.shopperseo.propertyvaluedefinition",{"_index":884,"name":{},"parent":{"1655":{}}}],["customer.shopperseo.propertyvaluedefinition.__type",{"_index":885,"name":{},"parent":{"1656":{},"1657":{},"1658":{},"1659":{},"1660":{}}}],["customer.shopperseo.queryparamslimit",{"_index":877,"name":{},"parent":{"1603":{}}}],["customer.shopperseo.queryparamsoffset",{"_index":878,"name":{},"parent":{"1605":{}}}],["customer.shopperseo.ratelimited",{"_index":899,"name":{},"parent":{"1689":{}}}],["customer.shopperseo.ratelimited2",{"_index":900,"name":{},"parent":{"1691":{}}}],["customer.shopperseo.ratelimited3",{"_index":893,"name":{},"parent":{"1677":{}}}],["customer.shopperseo.ratelimited4",{"_index":902,"name":{},"parent":{"1695":{}}}],["customer.shopperseo.ratelimited5",{"_index":896,"name":{},"parent":{"1683":{}}}],["customer.shopperseo.selectable",{"_index":880,"name":{},"parent":{"1609":{}}}],["customer.shopperseo.sitespecific",{"_index":879,"name":{},"parent":{"1607":{}}}],["customer.shopperseo.synccreated",{"_index":894,"name":{},"parent":{"1679":{}}}],["customer.shopperseo.unauthorized",{"_index":888,"name":{},"parent":{"1665":{}}}],["customer.slasadmin",{"_index":906,"name":{},"parent":{"1705":{},"1706":{},"1707":{},"1708":{},"1709":{},"1710":{},"1711":{},"1712":{},"1713":{},"1714":{},"1715":{},"1716":{},"1717":{},"1718":{},"1719":{},"1720":{},"1721":{},"1722":{},"1723":{},"1724":{},"1725":{},"1726":{},"1727":{},"1728":{},"1729":{},"1730":{},"1731":{},"1732":{},"1733":{},"1735":{},"1737":{},"1739":{},"1741":{},"1743":{},"1745":{},"1747":{},"1749":{},"1751":{},"1753":{},"1755":{},"1757":{},"1759":{},"1761":{},"1763":{},"1765":{},"1766":{}}}],["customer.slasadmin.asynccreated",{"_index":939,"name":{},"parent":{"1750":{}}}],["customer.slasadmin.dateconditionalrequest",{"_index":936,"name":{},"parent":{"1744":{}}}],["customer.slasadmin.daterangefilter",{"_index":931,"name":{},"parent":{"1734":{}}}],["customer.slasadmin.datetimerangefilter",{"_index":946,"name":{},"parent":{"1764":{}}}],["customer.slasadmin.etagconditionalrequest",{"_index":938,"name":{},"parent":{"1748":{}}}],["customer.slasadmin.etagresponse",{"_index":932,"name":{},"parent":{"1736":{}}}],["customer.slasadmin.integerrangefilter",{"_index":933,"name":{},"parent":{"1738":{}}}],["customer.slasadmin.numericrangefilter",{"_index":945,"name":{},"parent":{"1762":{}}}],["customer.slasadmin.offsetpaginated",{"_index":942,"name":{},"parent":{"1756":{}}}],["customer.slasadmin.rangefilter",{"_index":943,"name":{},"parent":{"1758":{}}}],["customer.slasadmin.ratelimited",{"_index":940,"name":{},"parent":{"1752":{}}}],["customer.slasadmin.ratelimited2",{"_index":941,"name":{},"parent":{"1754":{}}}],["customer.slasadmin.ratelimited3",{"_index":934,"name":{},"parent":{"1740":{}}}],["customer.slasadmin.ratelimited4",{"_index":944,"name":{},"parent":{"1760":{}}}],["customer.slasadmin.ratelimited5",{"_index":937,"name":{},"parent":{"1746":{}}}],["customer.slasadmin.synccreated",{"_index":935,"name":{},"parent":{"1742":{}}}],["customeraddress",{"_index":628,"name":{"991":{},"1261":{}},"parent":{}}],["customeraddressinfo",{"_index":772,"name":{"1318":{}},"parent":{}}],["customeraddressresult",{"_index":633,"name":{"996":{}},"parent":{}}],["customerauthenticationfailed",{"_index":798,"name":{"1371":{}},"parent":{}}],["customeremail",{"_index":1358,"name":{"2596":{},"2612":{}},"parent":{}}],["customerexternalprofile",{"_index":771,"name":{"1317":{}},"parent":{}}],["customerextprofilebadrequest",{"_index":805,"name":{"1381":{}},"parent":{}}],["customerextprofilenotfound",{"_index":802,"name":{"1377":{}},"parent":{}}],["customerextprofilerequest",{"_index":770,"name":{"1315":{}},"parent":{}}],["customergroup",{"_index":632,"name":{"995":{}},"parent":{}}],["customergrouprule",{"_index":634,"name":{"998":{}},"parent":{}}],["customergroups",{"_index":1235,"name":{"2298":{},"2905":{}},"parent":{}}],["customergroupsearchbadrequest",{"_index":642,"name":{"1008":{}},"parent":{}}],["customergroupsearchresult",{"_index":629,"name":{"992":{}},"parent":{}}],["customerid",{"_index":329,"name":{"326":{}},"parent":{}}],["customerinfo",{"_index":327,"name":{"324":{},"655":{},"878":{},"1292":{}},"parent":{}}],["customerlist",{"_index":630,"name":{"993":{}},"parent":{}}],["customerlistlink",{"_index":1707,"name":{"3494":{}},"parent":{}}],["customername",{"_index":331,"name":{"327":{}},"parent":{}}],["customerno",{"_index":332,"name":{"328":{}},"parent":{}}],["customerorderresult",{"_index":769,"name":{"1314":{}},"parent":{}}],["customerpaymentcardrequest",{"_index":748,"name":{"1282":{}},"parent":{}}],["customerpaymentinstrument",{"_index":754,"name":{"1290":{}},"parent":{}}],["customerpaymentinstrumentrequest",{"_index":764,"name":{"1308":{}},"parent":{}}],["customerproductlist",{"_index":763,"name":{"1306":{}},"parent":{}}],["customerproductlistitem",{"_index":781,"name":{"1333":{}},"parent":{}}],["customerproductlistitempurchase",{"_index":736,"name":{"1263":{}},"parent":{}}],["customerproductlistregistrant",{"_index":746,"name":{"1280":{}},"parent":{}}],["customerproductlistresult",{"_index":735,"name":{"1262":{}},"parent":{}}],["customerregistration",{"_index":766,"name":{"1310":{}},"parent":{}}],["customers",{"_index":614,"name":{"976":{}},"parent":{}}],["customersearchhit",{"_index":631,"name":{"994":{}},"parent":{}}],["customersearchresult",{"_index":636,"name":{"1000":{}},"parent":{}}],["customhostnamevalidationenvelope",{"_index":114,"name":{"113":{}},"parent":{}}],["customhostnamevalidationresponse",{"_index":95,"name":{"94":{}},"parent":{}}],["customrule",{"_index":108,"name":{"107":{}},"parent":{}}],["customruleenvelope",{"_index":103,"name":{"102":{}},"parent":{}}],["customrulesenvelope",{"_index":90,"name":{"89":{}},"parent":{}}],["customrulespatchorderrequest",{"_index":120,"name":{"119":{}},"parent":{}}],["customrulespatchrequest",{"_index":116,"name":{"115":{}},"parent":{}}],["customrulespostrequest",{"_index":82,"name":{"81":{}},"parent":{}}],["customsuggestions",{"_index":1144,"name":{"2111":{},"4003":{}},"parent":{}}],["data",{"_index":318,"name":{"316":{},"2583":{},"2764":{},"3180":{}},"parent":{}}],["dateconditionalrequest",{"_index":146,"name":{"144":{},"476":{},"728":{},"951":{},"1025":{},"1137":{},"1347":{},"1498":{},"1680":{},"1743":{},"1782":{},"2070":{},"2147":{},"2355":{},"2469":{},"2649":{},"2779":{},"2965":{},"3079":{},"3199":{},"3327":{},"3525":{},"3692":{},"3835":{},"3973":{},"4101":{}},"parent":{}}],["daterangefilter",{"_index":410,"name":{"466":{},"718":{},"941":{},"1015":{},"1127":{},"1337":{},"1488":{},"1670":{},"1733":{},"2060":{},"2137":{},"2345":{},"2459":{},"2639":{},"2769":{},"2955":{},"3069":{},"3189":{},"3317":{},"3517":{},"3682":{},"3825":{},"4091":{}},"parent":{}}],["datetimerangefilter",{"_index":427,"name":{"494":{},"746":{},"969":{},"1045":{},"1157":{},"1367":{},"1518":{},"1698":{},"1763":{},"2088":{},"2167":{},"2375":{},"2489":{},"2669":{},"2799":{},"2985":{},"3099":{},"3219":{},"3347":{},"3541":{},"3712":{},"3855":{},"4119":{}},"parent":{}}],["dayofweek",{"_index":1263,"name":{"2333":{},"2939":{}},"parent":{}}],["defaultvalue",{"_index":202,"name":{"200":{},"438":{},"583":{},"806":{},"1088":{},"1200":{},"1422":{},"1559":{},"1634":{},"2031":{},"2210":{},"2418":{},"2532":{},"2712":{},"2841":{},"3028":{},"3142":{},"3261":{},"3390":{},"3583":{},"3754":{},"3898":{},"4062":{}},"parent":{}}],["deletebasket",{"_index":436,"name":{"505":{}},"parent":{}}],["deletecampaign",{"_index":1298,"name":{"2450":{}},"parent":{}}],["deletecategoryfromcatalog",{"_index":1650,"name":{"3426":{}},"parent":{}}],["deletecategoryrulecondition",{"_index":1674,"name":{"3450":{}},"parent":{}}],["deletecategoryruleconditions",{"_index":1671,"name":{"3447":{}},"parent":{}}],["deletecategoryrules",{"_index":1665,"name":{"3441":{}},"parent":{}}],["deletecertificate",{"_index":19,"name":{"18":{}},"parent":{}}],["deleteclient",{"_index":912,"name":{"1711":{}},"parent":{}}],["deletecoupon",{"_index":1338,"name":{"2572":{}},"parent":{}}],["deletecustomerfromcustomerlist",{"_index":618,"name":{"980":{}},"parent":{}}],["deletecustomerpaymentinstrument",{"_index":721,"name":{"1246":{}},"parent":{}}],["deletecustomerproductlist",{"_index":725,"name":{"1250":{}},"parent":{}}],["deletecustomerproductlistitem",{"_index":729,"name":{"1254":{}},"parent":{}}],["deletecustomrule",{"_index":41,"name":{"40":{}},"parent":{}}],["deletegiftcertificate",{"_index":1422,"name":{"2745":{}},"parent":{}}],["deleteidentityprovider",{"_index":919,"name":{"1718":{}},"parent":{}}],["deletelogpushjob",{"_index":33,"name":{"32":{}},"parent":{}}],["deletemrtrule",{"_index":26,"name":{"25":{}},"parent":{}}],["deletemrtruleset",{"_index":25,"name":{"24":{}},"parent":{}}],["deleteoriginheadermodification",{"_index":54,"name":{"53":{}},"parent":{}}],["deleteproduct",{"_index":1746,"name":{"3614":{}},"parent":{}}],["deleteproductoption",{"_index":1762,"name":{"3630":{}},"parent":{}}],["deleteproductoptionvalue",{"_index":1766,"name":{"3634":{}},"parent":{}}],["deletepromotion",{"_index":1481,"name":{"2889":{}},"parent":{}}],["deletepwdlesstemplate",{"_index":915,"name":{"1714":{}},"parent":{}}],["deleteratelimitingrule",{"_index":46,"name":{"45":{}},"parent":{}}],["deleterule",{"_index":1669,"name":{"3445":{}},"parent":{}}],["deleteshopper",{"_index":920,"name":{"1719":{}},"parent":{}}],["deleteshoppercontext",{"_index":677,"name":{"1121":{}},"parent":{}}],["deletesourcecodegroup",{"_index":1596,"name":{"3292":{}},"parent":{}}],["deletevariationattribute",{"_index":1776,"name":{"3644":{}},"parent":{}}],["deletevariationattributevalue",{"_index":1771,"name":{"3639":{}},"parent":{}}],["description",{"_index":206,"name":{"203":{},"222":{},"378":{},"441":{},"460":{},"586":{},"605":{},"809":{},"828":{},"1091":{},"1110":{},"1203":{},"1222":{},"1425":{},"1444":{},"1562":{},"1581":{},"1637":{},"1656":{},"2034":{},"2053":{},"2213":{},"2232":{},"2299":{},"2421":{},"2440":{},"2535":{},"2554":{},"2618":{},"2715":{},"2734":{},"2844":{},"2863":{},"2906":{},"3031":{},"3050":{},"3145":{},"3164":{},"3264":{},"3283":{},"3393":{},"3412":{},"3586":{},"3605":{},"3757":{},"3776":{},"3901":{},"3920":{},"4065":{},"4084":{}},"parent":{}}],["detail",{"_index":1001,"name":{"1865":{},"1884":{}},"parent":{}}],["direction",{"_index":1074,"name":{"1957":{}},"parent":{}}],["discount",{"_index":299,"name":{"298":{},"629":{},"852":{},"1273":{}},"parent":{}}],["discountrequest",{"_index":512,"name":{"668":{},"891":{}},"parent":{}}],["discovery",{"_index":947,"name":{"1769":{}},"parent":{"1770":{},"1984":{},"1985":{},"1986":{},"2123":{},"2124":{}}}],["discovery.shopperdiscoverysearch",{"_index":949,"name":{},"parent":{"1771":{},"1772":{},"1773":{},"1774":{},"1775":{},"1776":{},"1778":{},"1780":{},"1782":{},"1784":{},"1786":{},"1788":{},"1790":{},"1792":{},"1794":{},"1796":{},"1798":{},"1799":{},"1800":{},"1801":{},"1802":{},"1803":{},"1804":{},"1806":{},"1808":{},"1810":{},"1812":{},"1813":{},"1814":{},"1815":{},"1816":{},"1817":{},"1818":{},"1819":{},"1820":{},"1821":{},"1822":{},"1823":{},"1824":{},"1825":{},"1826":{},"1827":{},"1828":{},"1829":{},"1830":{},"1831":{},"1832":{},"1833":{},"1834":{},"1836":{},"1838":{},"1840":{},"1842":{},"1845":{},"1848":{},"1853":{},"1855":{},"1857":{},"1859":{},"1861":{},"1867":{},"1869":{},"1871":{},"1873":{},"1875":{},"1877":{},"1879":{},"1886":{},"1888":{},"1894":{},"1895":{},"1901":{},"1909":{},"1918":{},"1919":{},"1920":{},"1925":{},"1931":{},"1936":{},"1937":{},"1939":{},"1945":{},"1950":{},"1951":{},"1952":{},"1953":{},"1954":{},"1959":{},"1961":{},"1962":{},"1967":{},"1968":{},"1969":{},"1976":{},"1979":{}}}],["discovery.shopperdiscoverysearch.asynccreated",{"_index":958,"name":{},"parent":{"1789":{}}}],["discovery.shopperdiscoverysearch.attributegrouping",{"_index":1079,"name":{},"parent":{"1963":{}}}],["discovery.shopperdiscoverysearch.attributegrouping.__type",{"_index":1080,"name":{},"parent":{"1964":{},"1965":{},"1966":{}}}],["discovery.shopperdiscoverysearch.attributesorting",{"_index":1072,"name":{},"parent":{"1955":{}}}],["discovery.shopperdiscoverysearch.attributesorting.__type",{"_index":1073,"name":{},"parent":{"1956":{},"1957":{},"1958":{}}}],["discovery.shopperdiscoverysearch.attributesquery",{"_index":1020,"name":{},"parent":{"1889":{}}}],["discovery.shopperdiscoverysearch.attributesquery.__type",{"_index":1021,"name":{},"parent":{"1890":{},"1891":{},"1892":{},"1893":{}}}],["discovery.shopperdiscoverysearch.authenticationfailure",{"_index":997,"name":{},"parent":{"1860":{}}}],["discovery.shopperdiscoverysearch.authorizationfailure",{"_index":1007,"name":{},"parent":{"1872":{}}}],["discovery.shopperdiscoverysearch.badrequest",{"_index":1008,"name":{},"parent":{"1874":{}}}],["discovery.shopperdiscoverysearch.baseerror",{"_index":999,"name":{},"parent":{"1862":{}}}],["discovery.shopperdiscoverysearch.baseerror.__type",{"_index":1000,"name":{},"parent":{"1863":{},"1864":{},"1865":{},"1866":{}}}],["discovery.shopperdiscoverysearch.commonerrors",{"_index":975,"name":{},"parent":{"1839":{}}}],["discovery.shopperdiscoverysearch.dateconditionalrequest",{"_index":955,"name":{},"parent":{"1783":{}}}],["discovery.shopperdiscoverysearch.etagconditionalrequest",{"_index":957,"name":{},"parent":{"1787":{}}}],["discovery.shopperdiscoverysearch.etagresponse",{"_index":952,"name":{},"parent":{"1777":{}}}],["discovery.shopperdiscoverysearch.filterable",{"_index":973,"name":{},"parent":{"1837":{}}}],["discovery.shopperdiscoverysearch.internalservererror",{"_index":1012,"name":{},"parent":{"1878":{}}}],["discovery.shopperdiscoverysearch.invalidrequest",{"_index":1005,"name":{},"parent":{"1870":{}}}],["discovery.shopperdiscoverysearch.nonreadablehttpmessage",{"_index":1018,"name":{},"parent":{"1887":{}}}],["discovery.shopperdiscoverysearch.nopropertiesallowed",{"_index":966,"name":{},"parent":{"1811":{}}}],["discovery.shopperdiscoverysearch.notfound",{"_index":1003,"name":{},"parent":{"1868":{}}}],["discovery.shopperdiscoverysearch.offsetpaginated",{"_index":961,"name":{},"parent":{"1795":{}}}],["discovery.shopperdiscoverysearch.pagination",{"_index":986,"name":{},"parent":{"1849":{}}}],["discovery.shopperdiscoverysearch.pagination.__type",{"_index":988,"name":{},"parent":{"1850":{},"1851":{},"1852":{}}}],["discovery.shopperdiscoverysearch.phrasequery",{"_index":1026,"name":{},"parent":{"1896":{}}}],["discovery.shopperdiscoverysearch.phrasequery.__type",{"_index":1027,"name":{},"parent":{"1897":{},"1898":{},"1899":{},"1900":{}}}],["discovery.shopperdiscoverysearch.queryinput",{"_index":1038,"name":{},"parent":{"1910":{}}}],["discovery.shopperdiscoverysearch.queryinput.__type",{"_index":1039,"name":{},"parent":{"1911":{},"1912":{},"1913":{},"1914":{},"1915":{},"1916":{},"1917":{}}}],["discovery.shopperdiscoverysearch.queryoutput",{"_index":1029,"name":{},"parent":{"1902":{}}}],["discovery.shopperdiscoverysearch.queryoutput.__type",{"_index":1031,"name":{},"parent":{"1903":{},"1904":{},"1905":{},"1906":{},"1907":{},"1908":{}}}],["discovery.shopperdiscoverysearch.queryparamslimit",{"_index":963,"name":{},"parent":{"1805":{}}}],["discovery.shopperdiscoverysearch.queryparamsoffset",{"_index":964,"name":{},"parent":{"1807":{}}}],["discovery.shopperdiscoverysearch.rangefacetinput",{"_index":1061,"name":{},"parent":{"1938":{}}}],["discovery.shopperdiscoverysearch.rangefacetoutput",{"_index":1063,"name":{},"parent":{"1940":{}}}],["discovery.shopperdiscoverysearch.rangefacetoutput.__type",{"_index":1064,"name":{},"parent":{"1941":{},"1942":{},"1943":{},"1944":{}}}],["discovery.shopperdiscoverysearch.rangerefinement",{"_index":1053,"name":{},"parent":{"1926":{}}}],["discovery.shopperdiscoverysearch.rangerefinement.__type",{"_index":1054,"name":{},"parent":{"1927":{},"1928":{},"1929":{},"1930":{}}}],["discovery.shopperdiscoverysearch.ratelimited",{"_index":959,"name":{},"parent":{"1791":{}}}],["discovery.shopperdiscoverysearch.ratelimited2",{"_index":960,"name":{},"parent":{"1793":{}}}],["discovery.shopperdiscoverysearch.ratelimited3",{"_index":953,"name":{},"parent":{"1779":{}}}],["discovery.shopperdiscoverysearch.ratelimited4",{"_index":962,"name":{},"parent":{"1797":{}}}],["discovery.shopperdiscoverysearch.ratelimited5",{"_index":956,"name":{},"parent":{"1785":{}}}],["discovery.shopperdiscoverysearch.ratelimitexceeded",{"_index":1014,"name":{},"parent":{"1880":{}}}],["discovery.shopperdiscoverysearch.ratelimitexceeded.__type",{"_index":1016,"name":{},"parent":{"1881":{},"1882":{},"1883":{},"1884":{},"1885":{}}}],["discovery.shopperdiscoverysearch.relevancesorting",{"_index":1077,"name":{},"parent":{"1960":{}}}],["discovery.shopperdiscoverysearch.resourcebadrequest",{"_index":991,"name":{},"parent":{"1854":{}}}],["discovery.shopperdiscoverysearch.resourcecommonerrors",{"_index":977,"name":{},"parent":{"1841":{}}}],["discovery.shopperdiscoverysearch.resourceinvalidrequest",{"_index":995,"name":{},"parent":{"1858":{}}}],["discovery.shopperdiscoverysearch.resourcenonreadablehttpmessage",{"_index":993,"name":{},"parent":{"1856":{}}}],["discovery.shopperdiscoverysearch.result",{"_index":1085,"name":{},"parent":{"1970":{}}}],["discovery.shopperdiscoverysearch.result.__type",{"_index":1087,"name":{},"parent":{"1971":{},"1972":{},"1973":{},"1974":{},"1975":{}}}],["discovery.shopperdiscoverysearch.self",{"_index":979,"name":{},"parent":{"1843":{}}}],["discovery.shopperdiscoverysearch.self.__type",{"_index":981,"name":{},"parent":{"1844":{}}}],["discovery.shopperdiscoverysearch.selfresourcelink",{"_index":983,"name":{},"parent":{"1846":{}}}],["discovery.shopperdiscoverysearch.selfresourcelink.__type",{"_index":984,"name":{},"parent":{"1847":{}}}],["discovery.shopperdiscoverysearch.serviceunavailable",{"_index":1010,"name":{},"parent":{"1876":{}}}],["discovery.shopperdiscoverysearch.sitespecific",{"_index":965,"name":{},"parent":{"1809":{}}}],["discovery.shopperdiscoverysearch.suggestion",{"_index":1093,"name":{},"parent":{"1977":{}}}],["discovery.shopperdiscoverysearch.suggestion.__type",{"_index":1095,"name":{},"parent":{"1978":{}}}],["discovery.shopperdiscoverysearch.suggestions",{"_index":1097,"name":{},"parent":{"1980":{}}}],["discovery.shopperdiscoverysearch.suggestions.__type",{"_index":1099,"name":{},"parent":{"1981":{},"1982":{},"1983":{}}}],["discovery.shopperdiscoverysearch.synccreated",{"_index":954,"name":{},"parent":{"1781":{}}}],["discovery.shopperdiscoverysearch.traceable",{"_index":971,"name":{},"parent":{"1835":{}}}],["discovery.shopperdiscoverysearch.valuefacetinput",{"_index":1066,"name":{},"parent":{"1946":{}}}],["discovery.shopperdiscoverysearch.valuefacetinput.__type",{"_index":1068,"name":{},"parent":{"1947":{},"1948":{},"1949":{}}}],["discovery.shopperdiscoverysearch.valuefacetoutput",{"_index":1056,"name":{},"parent":{"1932":{}}}],["discovery.shopperdiscoverysearch.valuefacetoutput.__type",{"_index":1057,"name":{},"parent":{"1933":{},"1934":{},"1935":{}}}],["discovery.shopperdiscoverysearch.valuerefinement",{"_index":1047,"name":{},"parent":{"1921":{}}}],["discovery.shopperdiscoverysearch.valuerefinement.__type",{"_index":1049,"name":{},"parent":{"1922":{},"1923":{},"1924":{}}}],["discovery.shoppersearch",{"_index":1103,"name":{},"parent":{"1987":{},"1988":{},"1989":{},"1990":{},"1991":{},"1992":{},"1993":{},"1994":{},"1995":{},"1996":{},"1997":{},"1998":{},"1999":{},"2001":{},"2003":{},"2005":{},"2007":{},"2009":{},"2010":{},"2011":{},"2012":{},"2013":{},"2014":{},"2015":{},"2016":{},"2017":{},"2018":{},"2019":{},"2020":{},"2021":{},"2022":{},"2023":{},"2024":{},"2025":{},"2026":{},"2027":{},"2028":{},"2029":{},"2051":{},"2058":{},"2059":{},"2060":{},"2062":{},"2064":{},"2066":{},"2068":{},"2070":{},"2072":{},"2074":{},"2076":{},"2078":{},"2080":{},"2082":{},"2084":{},"2086":{},"2088":{},"2090":{},"2091":{},"2092":{},"2093":{},"2094":{},"2095":{},"2096":{},"2097":{},"2098":{},"2099":{},"2100":{},"2101":{},"2102":{},"2103":{},"2104":{},"2105":{},"2106":{},"2107":{},"2108":{},"2109":{},"2110":{},"2111":{},"2112":{},"2113":{},"2114":{},"2115":{},"2116":{},"2117":{},"2118":{},"2119":{},"2121":{}}}],["discovery.shoppersearch.asynccreated",{"_index":1123,"name":{},"parent":{"2077":{}}}],["discovery.shoppersearch.attributedefinition",{"_index":1111,"name":{},"parent":{"2030":{}}}],["discovery.shoppersearch.attributedefinition.__type",{"_index":1112,"name":{},"parent":{"2031":{},"2032":{},"2033":{},"2034":{},"2035":{},"2036":{},"2037":{},"2038":{},"2039":{},"2040":{},"2041":{},"2042":{},"2043":{},"2044":{},"2045":{},"2046":{},"2047":{},"2048":{},"2049":{},"2050":{}}}],["discovery.shoppersearch.badrequest",{"_index":1149,"name":{},"parent":{"2122":{}}}],["discovery.shoppersearch.dateconditionalrequest",{"_index":1120,"name":{},"parent":{"2071":{}}}],["discovery.shoppersearch.daterangefilter",{"_index":1115,"name":{},"parent":{"2061":{}}}],["discovery.shoppersearch.datetimerangefilter",{"_index":1129,"name":{},"parent":{"2089":{}}}],["discovery.shoppersearch.etagconditionalrequest",{"_index":1122,"name":{},"parent":{"2075":{}}}],["discovery.shoppersearch.etagresponse",{"_index":1116,"name":{},"parent":{"2063":{}}}],["discovery.shoppersearch.integerrangefilter",{"_index":1117,"name":{},"parent":{"2065":{}}}],["discovery.shoppersearch.nopropertiesallowed",{"_index":1110,"name":{},"parent":{"2008":{}}}],["discovery.shoppersearch.numericrangefilter",{"_index":1128,"name":{},"parent":{"2087":{}}}],["discovery.shoppersearch.offsetpaginated",{"_index":1126,"name":{},"parent":{"2083":{}}}],["discovery.shoppersearch.propertyvaluedefinition",{"_index":1113,"name":{},"parent":{"2052":{}}}],["discovery.shoppersearch.propertyvaluedefinition.__type",{"_index":1114,"name":{},"parent":{"2053":{},"2054":{},"2055":{},"2056":{},"2057":{}}}],["discovery.shoppersearch.queryparamslimit",{"_index":1106,"name":{},"parent":{"2000":{}}}],["discovery.shoppersearch.queryparamsoffset",{"_index":1107,"name":{},"parent":{"2002":{}}}],["discovery.shoppersearch.ratelimited",{"_index":1124,"name":{},"parent":{"2079":{}}}],["discovery.shoppersearch.ratelimited2",{"_index":1125,"name":{},"parent":{"2081":{}}}],["discovery.shoppersearch.ratelimited3",{"_index":1118,"name":{},"parent":{"2067":{}}}],["discovery.shoppersearch.ratelimited4",{"_index":1127,"name":{},"parent":{"2085":{}}}],["discovery.shoppersearch.ratelimited5",{"_index":1121,"name":{},"parent":{"2073":{}}}],["discovery.shoppersearch.selectable",{"_index":1109,"name":{},"parent":{"2006":{}}}],["discovery.shoppersearch.sitespecific",{"_index":1108,"name":{},"parent":{"2004":{}}}],["discovery.shoppersearch.synccreated",{"_index":1119,"name":{},"parent":{"2069":{}}}],["discovery.shoppersearch.unauthorized",{"_index":1148,"name":{},"parent":{"2120":{}}}],["displayvalue",{"_index":225,"name":{"223":{},"461":{},"606":{},"829":{},"1111":{},"1223":{},"1445":{},"1582":{},"1657":{},"2054":{},"2233":{},"2441":{},"2555":{},"2735":{},"2864":{},"3051":{},"3165":{},"3284":{},"3413":{},"3606":{},"3777":{},"3921":{},"4085":{}},"parent":{}}],["email",{"_index":333,"name":{"329":{},"675":{},"898":{}},"parent":{}}],["enabled",{"_index":1236,"name":{"2300":{},"2318":{},"2339":{},"2619":{},"2907":{},"2925":{},"2945":{}},"parent":{}}],["enddate",{"_index":1253,"name":{"2319":{},"2327":{},"2926":{},"2934":{}},"parent":{}}],["endpointname",{"_index":1201,"name":{"2256":{}},"parent":{}}],["error",{"_index":430,"name":{"497":{},"749":{},"972":{},"1048":{},"1160":{},"1370":{},"1521":{},"1701":{},"1766":{},"2091":{},"2170":{},"2378":{},"2492":{},"2672":{},"2802":{},"2988":{},"3102":{},"3182":{},"3350":{},"3544":{},"3715":{},"3858":{},"4122":{}},"parent":{}}],["errorresponse",{"_index":101,"name":{"100":{},"246":{},"540":{},"763":{},"1001":{},"1125":{},"1335":{},"1486":{},"1668":{},"1731":{},"1775":{},"2058":{},"2135":{},"2343":{},"2457":{},"2637":{},"2767":{},"2953":{},"3067":{},"3187":{},"3315":{},"3499":{},"3674":{},"3813":{},"3966":{},"4089":{}},"parent":{}}],["etagconditionalrequest",{"_index":150,"name":{"148":{},"480":{},"732":{},"955":{},"1029":{},"1141":{},"1351":{},"1502":{},"1684":{},"1747":{},"1786":{},"2074":{},"2151":{},"2359":{},"2473":{},"2653":{},"2783":{},"2969":{},"3083":{},"3203":{},"3331":{},"3527":{},"3696":{},"3839":{},"3977":{},"4105":{}},"parent":{}}],["etagresponse",{"_index":140,"name":{"138":{},"468":{},"720":{},"943":{},"1017":{},"1129":{},"1339":{},"1490":{},"1672":{},"1735":{},"1776":{},"2062":{},"2139":{},"2347":{},"2461":{},"2641":{},"2771":{},"2957":{},"3071":{},"3191":{},"3319":{},"3519":{},"3684":{},"3827":{},"3967":{},"4093":{}},"parent":{}}],["excludedproduct",{"_index":1697,"name":{"3480":{}},"parent":{}}],["excludedproductrequest",{"_index":1709,"name":{"3496":{}},"parent":{}}],["excludedproductsresult",{"_index":1704,"name":{"3490":{}},"parent":{}}],["executionjobstatusresult",{"_index":1679,"name":{"3457":{}},"parent":{}}],["executionrequest",{"_index":1695,"name":{"3478":{}},"parent":{}}],["expansionattribute",{"_index":967,"name":{"1831":{}},"parent":{}}],["experience",{"_index":1150,"name":{"2125":{}},"parent":{"2126":{},"2247":{},"2248":{}}}],["experience.shopperexperience",{"_index":1152,"name":{},"parent":{"2127":{},"2128":{},"2129":{},"2130":{},"2131":{},"2132":{},"2133":{},"2134":{},"2135":{},"2136":{},"2137":{},"2139":{},"2141":{},"2143":{},"2145":{},"2147":{},"2149":{},"2151":{},"2153":{},"2155":{},"2157":{},"2159":{},"2161":{},"2163":{},"2165":{},"2167":{},"2169":{},"2170":{},"2171":{},"2172":{},"2173":{},"2174":{},"2175":{},"2176":{},"2177":{},"2178":{},"2179":{},"2181":{},"2183":{},"2185":{},"2187":{},"2189":{},"2190":{},"2191":{},"2192":{},"2193":{},"2194":{},"2195":{},"2196":{},"2197":{},"2198":{},"2199":{},"2200":{},"2201":{},"2202":{},"2203":{},"2204":{},"2205":{},"2206":{},"2207":{},"2208":{},"2230":{},"2237":{},"2239":{},"2241":{},"2243":{},"2245":{}}}],["experience.shopperexperience.aspectattributeinvalid",{"_index":1191,"name":{},"parent":{"2244":{}}}],["experience.shopperexperience.aspecttypenotfound",{"_index":1187,"name":{},"parent":{"2240":{}}}],["experience.shopperexperience.asynccreated",{"_index":1167,"name":{},"parent":{"2154":{}}}],["experience.shopperexperience.attributedefinition",{"_index":1180,"name":{},"parent":{"2209":{}}}],["experience.shopperexperience.attributedefinition.__type",{"_index":1181,"name":{},"parent":{"2210":{},"2211":{},"2212":{},"2213":{},"2214":{},"2215":{},"2216":{},"2217":{},"2218":{},"2219":{},"2220":{},"2221":{},"2222":{},"2223":{},"2224":{},"2225":{},"2226":{},"2227":{},"2228":{},"2229":{}}}],["experience.shopperexperience.businessobjectidinvalid",{"_index":1185,"name":{},"parent":{"2238":{}}}],["experience.shopperexperience.dateconditionalrequest",{"_index":1164,"name":{},"parent":{"2148":{}}}],["experience.shopperexperience.daterangefilter",{"_index":1159,"name":{},"parent":{"2138":{}}}],["experience.shopperexperience.datetimerangefilter",{"_index":1174,"name":{},"parent":{"2168":{}}}],["experience.shopperexperience.etagconditionalrequest",{"_index":1166,"name":{},"parent":{"2152":{}}}],["experience.shopperexperience.etagresponse",{"_index":1160,"name":{},"parent":{"2140":{}}}],["experience.shopperexperience.integerrangefilter",{"_index":1161,"name":{},"parent":{"2142":{}}}],["experience.shopperexperience.localespecific",{"_index":1192,"name":{},"parent":{"2246":{}}}],["experience.shopperexperience.nopropertiesallowed",{"_index":1179,"name":{},"parent":{"2188":{}}}],["experience.shopperexperience.numericrangefilter",{"_index":1173,"name":{},"parent":{"2166":{}}}],["experience.shopperexperience.offsetpaginated",{"_index":1170,"name":{},"parent":{"2160":{}}}],["experience.shopperexperience.pagenotfound",{"_index":1189,"name":{},"parent":{"2242":{}}}],["experience.shopperexperience.propertyvaluedefinition",{"_index":1182,"name":{},"parent":{"2231":{}}}],["experience.shopperexperience.propertyvaluedefinition.__type",{"_index":1183,"name":{},"parent":{"2232":{},"2233":{},"2234":{},"2235":{},"2236":{}}}],["experience.shopperexperience.queryparamslimit",{"_index":1175,"name":{},"parent":{"2180":{}}}],["experience.shopperexperience.queryparamsoffset",{"_index":1176,"name":{},"parent":{"2182":{}}}],["experience.shopperexperience.rangefilter",{"_index":1171,"name":{},"parent":{"2162":{}}}],["experience.shopperexperience.ratelimited",{"_index":1168,"name":{},"parent":{"2156":{}}}],["experience.shopperexperience.ratelimited2",{"_index":1169,"name":{},"parent":{"2158":{}}}],["experience.shopperexperience.ratelimited3",{"_index":1162,"name":{},"parent":{"2144":{}}}],["experience.shopperexperience.ratelimited4",{"_index":1172,"name":{},"parent":{"2164":{}}}],["experience.shopperexperience.ratelimited5",{"_index":1165,"name":{},"parent":{"2150":{}}}],["experience.shopperexperience.selectable",{"_index":1178,"name":{},"parent":{"2186":{}}}],["experience.shopperexperience.sitespecific",{"_index":1177,"name":{},"parent":{"2184":{}}}],["experience.shopperexperience.synccreated",{"_index":1163,"name":{},"parent":{"2146":{}}}],["expirationmonth",{"_index":290,"name":{"289":{},"619":{},"689":{},"842":{},"912":{}},"parent":{}}],["expirationyear",{"_index":291,"name":{"290":{},"620":{},"690":{},"843":{},"913":{}},"parent":{}}],["exportedcodecount",{"_index":1377,"name":{"2620":{}},"parent":{}}],["expression",{"_index":1610,"name":{"3306":{}},"parent":{}}],["facetinput",{"_index":1059,"name":{"1936":{}},"parent":{}}],["facetoutput",{"_index":1070,"name":{"1952":{}},"parent":{}}],["facetrequest",{"_index":1043,"name":{"1916":{},"1950":{}},"parent":{}}],["facets",{"_index":1032,"name":{"1904":{},"1915":{}},"parent":{}}],["facettype",{"_index":1058,"name":{"1935":{},"1944":{},"1949":{}},"parent":{}}],["filter",{"_index":194,"name":{"192":{},"430":{},"575":{},"798":{},"1081":{},"1193":{},"1415":{},"1552":{},"1626":{},"1826":{},"2023":{},"2203":{},"2411":{},"2525":{},"2705":{},"2834":{},"3021":{},"3135":{},"3254":{},"3383":{},"3576":{},"3747":{},"3891":{},"3961":{},"4054":{}},"parent":{}}],["filterable",{"_index":972,"name":{"1836":{}},"parent":{}}],["filteredquery",{"_index":184,"name":{"182":{},"420":{},"565":{},"788":{},"1071":{},"1183":{},"1405":{},"1542":{},"1616":{},"1816":{},"2013":{},"2193":{},"2401":{},"2515":{},"2695":{},"2824":{},"3011":{},"3125":{},"3244":{},"3373":{},"3566":{},"3737":{},"3881":{},"3951":{},"4044":{}},"parent":{}}],["firewallrule",{"_index":56,"name":{"55":{}},"parent":{}}],["forbidden",{"_index":639,"name":{"1004":{}},"parent":{}}],["generatecodechallenge",{"_index":1210,"name":{"2272":{}},"parent":{}}],["getaccesstoken",{"_index":822,"name":{"1457":{},"2263":{}},"parent":{}}],["getaddressesforcustomerfromcustomerlist",{"_index":622,"name":{"984":{}},"parent":{}}],["getaddressforcustomerfromcustomerlist",{"_index":624,"name":{"986":{}},"parent":{}}],["getassignedproductfromcategory",{"_index":1655,"name":{"3431":{}},"parent":{}}],["getbasket",{"_index":437,"name":{"506":{}},"parent":{}}],["getcampaign",{"_index":1299,"name":{"2451":{}},"parent":{}}],["getcatalog",{"_index":1647,"name":{"3423":{}},"parent":{}}],["getcatalogs",{"_index":1646,"name":{"3422":{}},"parent":{}}],["getcategories",{"_index":1818,"name":{"3787":{}},"parent":{}}],["getcategoriesfromcatalog",{"_index":1649,"name":{"3425":{}},"parent":{}}],["getcategorizationattributedefinitions",{"_index":1779,"name":{"3647":{}},"parent":{}}],["getcategorizationstatus",{"_index":1660,"name":{"3436":{}},"parent":{}}],["getcategory",{"_index":1819,"name":{"3788":{}},"parent":{}}],["getcategoryfromcatalog",{"_index":1651,"name":{"3427":{}},"parent":{}}],["getcategoryrulecondition",{"_index":1672,"name":{"3448":{}},"parent":{}}],["getcategoryruleconditions",{"_index":1670,"name":{"3446":{}},"parent":{}}],["getcategoryrules",{"_index":1664,"name":{"3440":{}},"parent":{}}],["getcertificates",{"_index":17,"name":{"16":{}},"parent":{}}],["getcodeandusidfromurl",{"_index":1208,"name":{"2270":{}},"parent":{}}],["getcoupon",{"_index":1339,"name":{"2573":{}},"parent":{}}],["getcouponcodes",{"_index":1342,"name":{"2576":{}},"parent":{}}],["getcustomer",{"_index":711,"name":{"1236":{}},"parent":{}}],["getcustomeraddress",{"_index":714,"name":{"1239":{}},"parent":{}}],["getcustomerbaskets",{"_index":717,"name":{"1242":{}},"parent":{}}],["getcustomerfromcustomerlist",{"_index":619,"name":{"981":{}},"parent":{}}],["getcustomerorders",{"_index":718,"name":{"1243":{}},"parent":{}}],["getcustomerpaymentinstrument",{"_index":722,"name":{"1247":{}},"parent":{}}],["getcustomerproductlist",{"_index":726,"name":{"1251":{}},"parent":{}}],["getcustomerproductlistitem",{"_index":730,"name":{"1255":{}},"parent":{}}],["getcustomerproductlists",{"_index":723,"name":{"1248":{}},"parent":{}}],["getcustomrule",{"_index":39,"name":{"38":{}},"parent":{}}],["getcustomrules",{"_index":37,"name":{"36":{}},"parent":{}}],["getexclusionlist",{"_index":1661,"name":{"3437":{}},"parent":{}}],["getexternalprofile",{"_index":710,"name":{"1235":{}},"parent":{}}],["getgiftcertificate",{"_index":1423,"name":{"2746":{},"3059":{}},"parent":{}}],["getjwksuri",{"_index":833,"name":{"1469":{}},"parent":{}}],["getlogpushjob",{"_index":31,"name":{"30":{}},"parent":{}}],["getmrtrules",{"_index":24,"name":{"23":{}},"parent":{}}],["getorder",{"_index":235,"name":{"234":{},"755":{}},"parent":{}}],["getorders",{"_index":233,"name":{"232":{}},"parent":{}}],["getoriginheadermodification",{"_index":53,"name":{"52":{}},"parent":{}}],["getowaspwafpackage",{"_index":34,"name":{"33":{}},"parent":{}}],["getpage",{"_index":1154,"name":{"2129":{}},"parent":{}}],["getpages",{"_index":1153,"name":{"2128":{}},"parent":{}}],["getpasswordlessaccesstoken",{"_index":828,"name":{"1464":{}},"parent":{}}],["getpasswordresettoken",{"_index":827,"name":{"1462":{}},"parent":{}}],["getpaymentmethodsforbasket",{"_index":455,"name":{"524":{}},"parent":{}}],["getpaymentmethodsfororder",{"_index":561,"name":{"760":{}},"parent":{}}],["getpricebooksforbasket",{"_index":459,"name":{"528":{}},"parent":{}}],["getproduct",{"_index":1747,"name":{"3615":{},"3786":{}},"parent":{}}],["getproductlistitem",{"_index":734,"name":{"1259":{}},"parent":{}}],["getproductoption",{"_index":1763,"name":{"3631":{}},"parent":{}}],["getproductoptions",{"_index":1761,"name":{"3629":{}},"parent":{}}],["getproductoptionvalue",{"_index":1767,"name":{"3635":{}},"parent":{}}],["getproducts",{"_index":1817,"name":{"3785":{}},"parent":{}}],["getpromotion",{"_index":1482,"name":{"2890":{}},"parent":{}}],["getpromotions",{"_index":1563,"name":{"3173":{}},"parent":{}}],["getpromotionsforcampaign",{"_index":1564,"name":{"3174":{}},"parent":{}}],["getpublicproductlist",{"_index":733,"name":{"1258":{}},"parent":{}}],["getpublicproductlistsbysearchterm",{"_index":732,"name":{"1257":{}},"parent":{}}],["getratelimitingrule",{"_index":44,"name":{"43":{}},"parent":{}}],["getratelimitingrules",{"_index":43,"name":{"42":{}},"parent":{}}],["getresetpasswordtoken",{"_index":708,"name":{"1233":{}},"parent":{}}],["getrulebyid",{"_index":1667,"name":{"3443":{}},"parent":{}}],["getsearchsuggestions",{"_index":1105,"name":{"1989":{},"3931":{}},"parent":{}}],["getsecuritysettings",{"_index":13,"name":{"12":{}},"parent":{}}],["getsessionbridgeaccesstoken",{"_index":823,"name":{"1458":{}},"parent":{}}],["getshippingmethodsforshipment",{"_index":466,"name":{"535":{}},"parent":{}}],["getshoppercontext",{"_index":675,"name":{"1119":{}},"parent":{}}],["getsourcecodegroup",{"_index":1597,"name":{"3293":{}},"parent":{}}],["getspeedsettings",{"_index":11,"name":{"10":{}},"parent":{}}],["getstores",{"_index":1876,"name":{"4018":{}},"parent":{}}],["getsuggestions",{"_index":951,"name":{"1773":{}},"parent":{}}],["gettaxesfrombasket",{"_index":468,"name":{"537":{}},"parent":{}}],["gettaxesfromorder",{"_index":562,"name":{"761":{}},"parent":{}}],["gettrustedagentaccesstoken",{"_index":826,"name":{"1461":{}},"parent":{}}],["gettrustedagentauthorizationtoken",{"_index":825,"name":{"1460":{}},"parent":{}}],["gettrustedsystemaccesstoken",{"_index":824,"name":{"1459":{}},"parent":{}}],["geturlmapping",{"_index":875,"name":{"1590":{}},"parent":{}}],["getuserinfo",{"_index":831,"name":{"1467":{}},"parent":{}}],["getvariationattribute",{"_index":1775,"name":{"3643":{}},"parent":{}}],["getvariationattributes",{"_index":1774,"name":{"3642":{}},"parent":{}}],["getvariationattributevalue",{"_index":1770,"name":{"3638":{}},"parent":{}}],["getvariationformasterproduct",{"_index":1758,"name":{"3626":{}},"parent":{}}],["getvariationgroupformasterproduct",{"_index":1753,"name":{"3621":{}},"parent":{}}],["getvariationgroupsformasterproduct",{"_index":1751,"name":{"3619":{}},"parent":{}}],["getvariationsformasterproduct",{"_index":1756,"name":{"3624":{}},"parent":{}}],["getwafgroups",{"_index":6,"name":{"5":{}},"parent":{}}],["getwafmanagedrulesets",{"_index":47,"name":{"46":{}},"parent":{}}],["getwafmanagedrulesinruleset",{"_index":49,"name":{"48":{}},"parent":{}}],["getwafrule",{"_index":9,"name":{"8":{}},"parent":{}}],["getwafrules",{"_index":8,"name":{"7":{}},"parent":{}}],["getwellknownopenidconfiguration",{"_index":832,"name":{"1468":{}},"parent":{}}],["getzonesinfo",{"_index":5,"name":{"4":{}},"parent":{}}],["giftcertificate",{"_index":1428,"name":{"2753":{},"3061":{}},"parent":{}}],["giftcertificateamountoutofrangeexception",{"_index":1468,"name":{"2874":{}},"parent":{}}],["giftcertificatecode",{"_index":1533,"name":{"3064":{}},"parent":{}}],["giftcertificatecreatemerchantidnotuniqueexception",{"_index":1462,"name":{"2868":{}},"parent":{}}],["giftcertificateitem",{"_index":380,"name":{"372":{},"678":{},"901":{},"1316":{}},"parent":{}}],["giftcertificatenotfound",{"_index":1464,"name":{"2870":{}},"parent":{}}],["giftcertificaterequest",{"_index":1531,"name":{"3062":{}},"parent":{}}],["giftcertificates",{"_index":1418,"name":{"2741":{},"2761":{}},"parent":{}}],["giftcertificatesearchresult",{"_index":1429,"name":{"2754":{}},"parent":{}}],["giftcertificatessearch",{"_index":1421,"name":{"2744":{}},"parent":{}}],["groupeditems",{"_index":1091,"name":{"1975":{}},"parent":{}}],["groupedtaxitem",{"_index":522,"name":{"680":{},"903":{},"1321":{}},"parent":{}}],["groupid",{"_index":1089,"name":{"1973":{}},"parent":{}}],["grouping",{"_index":1042,"name":{"1914":{},"1961":{}},"parent":{}}],["grouptype",{"_index":1081,"name":{"1966":{}},"parent":{}}],["guest",{"_index":334,"name":{"330":{}},"parent":{}}],["guestorderlookup",{"_index":557,"name":{"756":{}},"parent":{}}],["hasbadrequestresponse",{"_index":130,"name":{"128":{}},"parent":{}}],["hasconflictresponse",{"_index":132,"name":{"130":{}},"parent":{}}],["hasforbiddenaccessresponse",{"_index":134,"name":{"132":{}},"parent":{}}],["hasinternalservererrorresponse",{"_index":136,"name":{"134":{}},"parent":{}}],["hasresourcenotfoundresponse",{"_index":138,"name":{"136":{}},"parent":{}}],["hasunauthorizedresponse",{"_index":127,"name":{"126":{}},"parent":{}}],["helpers",{"_index":1193,"name":{"2249":{},"2281":{}},"parent":{"2250":{},"2251":{},"2252":{},"2259":{},"2260":{},"2266":{},"2267":{},"2268":{},"2269":{},"2270":{},"2271":{},"2272":{},"2273":{},"2274":{},"2275":{},"2276":{},"2277":{},"2278":{},"2279":{},"2280":{},"2281":{}}}],["helpers.customapiparameters",{"_index":1197,"name":{},"parent":{"2253":{}}}],["helpers.customapiparameters.__type",{"_index":1199,"name":{},"parent":{"2254":{},"2255":{},"2256":{},"2257":{},"2258":{}}}],["helpers.helpers",{"_index":1219,"name":{},"parent":{"2282":{}}}],["helpers.islasclient",{"_index":1206,"name":{},"parent":{"2261":{},"2262":{},"2263":{},"2264":{},"2265":{}}}],["highlight",{"_index":1083,"name":{"1968":{}},"parent":{}}],["highlighting",{"_index":1024,"name":{"1893":{},"1894":{},"1900":{}},"parent":{}}],["highlights",{"_index":1088,"name":{"1972":{}},"parent":{}}],["hits",{"_index":1030,"name":{"1903":{}},"parent":{}}],["holder",{"_index":292,"name":{"291":{},"621":{},"691":{},"844":{},"914":{}},"parent":{}}],["href",{"_index":980,"name":{"1844":{}},"parent":{}}],["hsts",{"_index":79,"name":{"78":{}},"parent":{}}],["id",{"_index":204,"name":{"201":{},"224":{},"319":{},"390":{},"439":{},"462":{},"584":{},"607":{},"634":{},"699":{},"709":{},"807":{},"830":{},"857":{},"922":{},"932":{},"1089":{},"1112":{},"1201":{},"1224":{},"1423":{},"1446":{},"1560":{},"1583":{},"1635":{},"1658":{},"2032":{},"2055":{},"2211":{},"2234":{},"2419":{},"2442":{},"2533":{},"2556":{},"2713":{},"2736":{},"2842":{},"2865":{},"3029":{},"3052":{},"3143":{},"3166":{},"3262":{},"3285":{},"3391":{},"3414":{},"3584":{},"3607":{},"3755":{},"3778":{},"3899":{},"3922":{},"4063":{},"4086":{}},"parent":{}}],["idconflict",{"_index":1332,"name":{"2563":{},"3311":{}},"parent":{}}],["identityprovider",{"_index":929,"name":{"1729":{}},"parent":{}}],["identityproviderlistresponse",{"_index":922,"name":{"1722":{}},"parent":{}}],["identityproviderresponse",{"_index":921,"name":{"1721":{}},"parent":{}}],["image",{"_index":777,"name":{"1328":{},"2114":{},"3808":{},"4006":{}},"parent":{}}],["imagegroup",{"_index":765,"name":{"1309":{},"2108":{},"3481":{},"3664":{},"3805":{}},"parent":{}}],["index",{"_index":1906,"name":{"4131":{}},"parent":{"4132":{},"4133":{},"4134":{}}}],["instance",{"_index":1002,"name":{"1866":{},"1885":{}},"parent":{}}],["integerrangefilter",{"_index":413,"name":{"470":{},"722":{},"945":{},"1019":{},"1131":{},"1341":{},"1492":{},"1674":{},"1737":{},"2064":{},"2141":{},"2349":{},"2463":{},"2643":{},"2773":{},"2959":{},"3073":{},"3193":{},"3321":{},"3521":{},"3686":{},"3829":{},"4095":{}},"parent":{}}],["internalservererror",{"_index":1011,"name":{"1877":{}},"parent":{}}],["introspectresponse",{"_index":836,"name":{"1473":{}},"parent":{}}],["introspecttoken",{"_index":830,"name":{"1466":{}},"parent":{}}],["invalidcurrency",{"_index":270,"name":{"271":{}},"parent":{}}],["invalidgiftcertificateexception",{"_index":1476,"name":{"2882":{}},"parent":{}}],["invalidgiftcertificatestatus",{"_index":1474,"name":{"2880":{}},"parent":{}}],["invalidordertotal",{"_index":266,"name":{"267":{}},"parent":{}}],["invalidquery",{"_index":1617,"name":{"3313":{}},"parent":{}}],["invalidrecipientemail",{"_index":1470,"name":{"2876":{}},"parent":{}}],["invalidrequest",{"_index":1004,"name":{"1869":{}},"parent":{}}],["invalidtaxtotal",{"_index":260,"name":{"261":{}},"parent":{}}],["inventory",{"_index":762,"name":{"1305":{},"3804":{}},"parent":{}}],["islasclient",{"_index":1205,"name":{"2260":{}},"parent":{}}],["issued",{"_index":1368,"name":{"2606":{}},"parent":{}}],["issuenumber",{"_index":293,"name":{"292":{},"622":{},"692":{},"845":{},"915":{}},"parent":{}}],["itemreference",{"_index":1082,"name":{"1967":{}},"parent":{}}],["itemresponseenvelope",{"_index":68,"name":{"67":{}},"parent":{}}],["jobexecutionnotfound",{"_index":1718,"name":{"3510":{}},"parent":{}}],["key",{"_index":207,"name":{"204":{},"442":{},"587":{},"810":{},"1092":{},"1204":{},"1426":{},"1563":{},"1638":{},"2035":{},"2214":{},"2422":{},"2536":{},"2716":{},"2845":{},"3032":{},"3146":{},"3265":{},"3394":{},"3587":{},"3758":{},"3902":{},"4066":{}},"parent":{}}],["l10nstring",{"_index":199,"name":{"197":{},"435":{},"580":{},"803":{},"1085":{},"1197":{},"1419":{},"1556":{},"1631":{},"2028":{},"2207":{},"2415":{},"2529":{},"2709":{},"2838":{},"3025":{},"3139":{},"3258":{},"3387":{},"3580":{},"3751":{},"3895":{},"4059":{}},"parent":{}}],["lastmodified",{"_index":1378,"name":{"2621":{}},"parent":{}}],["limit",{"_index":1034,"name":{"1906":{},"2582":{},"2601":{},"2765":{},"3179":{}},"parent":{}}],["limitpercode",{"_index":1350,"name":{"2588":{}},"parent":{}}],["limitpercustomer",{"_index":1352,"name":{"2589":{}},"parent":{}}],["limitpertimeframe",{"_index":1353,"name":{"2590":{}},"parent":{}}],["links",{"_index":1033,"name":{"1905":{}},"parent":{}}],["listlogpushjob",{"_index":30,"name":{"29":{}},"parent":{}}],["localespecific",{"_index":470,"name":{"541":{},"764":{},"1592":{},"2245":{},"4020":{}},"parent":{}}],["localizable",{"_index":208,"name":{"205":{},"443":{},"588":{},"811":{},"1093":{},"1205":{},"1427":{},"1564":{},"1639":{},"2036":{},"2215":{},"2423":{},"2537":{},"2717":{},"2846":{},"3033":{},"3147":{},"3266":{},"3395":{},"3588":{},"3759":{},"3903":{},"4067":{}},"parent":{}}],["localizedstring",{"_index":166,"name":{"164":{},"402":{},"547":{},"770":{},"1053":{},"1165":{},"1387":{},"1526":{},"1598":{},"1995":{},"2175":{},"2383":{},"2497":{},"2677":{},"2806":{},"2993":{},"3107":{},"3226":{},"3355":{},"3548":{},"3719":{},"3863":{},"4026":{}},"parent":{}}],["location",{"_index":1607,"name":{"3303":{}},"parent":{}}],["locationtype",{"_index":1605,"name":{"3302":{}},"parent":{}}],["loginguestuser",{"_index":1213,"name":{"2275":{}},"parent":{}}],["loginguestuserprivate",{"_index":1212,"name":{"2274":{}},"parent":{}}],["loginregistereduserb2c",{"_index":1215,"name":{"2277":{}},"parent":{}}],["loginregistereduserb2cprivate",{"_index":1214,"name":{"2276":{}},"parent":{}}],["loginrequest",{"_index":834,"name":{"1471":{},"2266":{}},"parent":{}}],["logout",{"_index":1218,"name":{"2280":{}},"parent":{}}],["logoutcustomer",{"_index":820,"name":{"1455":{},"2264":{}},"parent":{}}],["logpushcreaterequest",{"_index":72,"name":{"71":{}},"parent":{}}],["logpushenvelope",{"_index":100,"name":{"99":{}},"parent":{}}],["logpushjobsenvelope",{"_index":73,"name":{"72":{}},"parent":{}}],["logpushownershippostrequest",{"_index":62,"name":{"61":{}},"parent":{}}],["logpushownershippostresponse",{"_index":96,"name":{"95":{}},"parent":{}}],["logpushresponse",{"_index":64,"name":{"63":{}},"parent":{}}],["logpushupdaterequest",{"_index":83,"name":{"82":{}},"parent":{}}],["malformedquery",{"_index":1466,"name":{"2872":{}},"parent":{}}],["mandatory",{"_index":209,"name":{"206":{},"444":{},"589":{},"812":{},"1094":{},"1206":{},"1428":{},"1565":{},"1640":{},"2037":{},"2216":{},"2424":{},"2538":{},"2718":{},"2847":{},"3034":{},"3148":{},"3267":{},"3396":{},"3589":{},"3760":{},"3904":{},"4068":{}},"parent":{}}],["markuptext",{"_index":1696,"name":{"3479":{},"3663":{}},"parent":{}}],["mask",{"_index":1067,"name":{"1947":{}},"parent":{}}],["maskednumber",{"_index":294,"name":{"293":{},"623":{},"693":{},"846":{},"916":{}},"parent":{}}],["master",{"_index":738,"name":{"1265":{},"3460":{},"3653":{},"3793":{}},"parent":{}}],["matchallquery",{"_index":183,"name":{"181":{},"419":{},"564":{},"787":{},"1070":{},"1182":{},"1404":{},"1541":{},"1615":{},"1815":{},"2012":{},"2192":{},"2400":{},"2514":{},"2694":{},"2823":{},"3010":{},"3124":{},"3243":{},"3372":{},"3565":{},"3736":{},"3880":{},"3950":{},"4043":{}},"parent":{}}],["matcheditem",{"_index":1086,"name":{"1971":{}},"parent":{}}],["max",{"_index":210,"name":{"207":{},"445":{},"590":{},"813":{},"1095":{},"1207":{},"1429":{},"1566":{},"1641":{},"1928":{},"1942":{},"2038":{},"2217":{},"2425":{},"2539":{},"2719":{},"2848":{},"3035":{},"3149":{},"3268":{},"3397":{},"3590":{},"3761":{},"3905":{},"4069":{}},"parent":{}}],["mediafile",{"_index":1699,"name":{"3484":{},"3665":{}},"parent":{}}],["mergebasket",{"_index":435,"name":{"504":{}},"parent":{}}],["message",{"_index":391,"name":{"386":{},"705":{},"928":{}},"parent":{}}],["migratezonetowafv2",{"_index":51,"name":{"50":{}},"parent":{}}],["min",{"_index":212,"name":{"209":{},"447":{},"592":{},"815":{},"1097":{},"1209":{},"1431":{},"1568":{},"1643":{},"1927":{},"1941":{},"2040":{},"2219":{},"2427":{},"2541":{},"2721":{},"2850":{},"3037":{},"3151":{},"3270":{},"3399":{},"3592":{},"3763":{},"3907":{},"4071":{}},"parent":{}}],["minlength",{"_index":211,"name":{"208":{},"446":{},"591":{},"814":{},"1096":{},"1208":{},"1430":{},"1567":{},"1642":{},"2039":{},"2218":{},"2426":{},"2540":{},"2720":{},"2849":{},"3036":{},"3150":{},"3269":{},"3398":{},"3591":{},"3762":{},"3906":{},"4070":{}},"parent":{}}],["money",{"_index":162,"name":{"160":{},"398":{},"543":{},"766":{},"1049":{},"1161":{},"1383":{},"1522":{},"1594":{},"1798":{},"1991":{},"2171":{},"2379":{},"2493":{},"2673":{},"2749":{},"2989":{},"3103":{},"3222":{},"3351":{},"3455":{},"3650":{},"3859":{},"3933":{},"4022":{}},"parent":{}}],["moneymnemonic",{"_index":198,"name":{"196":{},"434":{},"579":{},"802":{},"1084":{},"1196":{},"1418":{},"1555":{},"1630":{},"1830":{},"2027":{},"2206":{},"2414":{},"2528":{},"2708":{},"2837":{},"3024":{},"3138":{},"3257":{},"3386":{},"3579":{},"3750":{},"3894":{},"3965":{},"4058":{}},"parent":{}}],["mrtrulepatchrequest",{"_index":87,"name":{"86":{}},"parent":{}}],["mrtrules",{"_index":110,"name":{"109":{}},"parent":{}}],["mrtruleset",{"_index":125,"name":{"124":{}},"parent":{}}],["mrtrulesetpatchrequest",{"_index":104,"name":{"103":{}},"parent":{}}],["mrtrulespostrequest",{"_index":99,"name":{"98":{}},"parent":{}}],["mrtrulesresponse",{"_index":78,"name":{"77":{}},"parent":{}}],["mrtrulesresponseenvelope",{"_index":102,"name":{"101":{}},"parent":{}}],["multivaluetype",{"_index":213,"name":{"210":{},"448":{},"593":{},"816":{},"1098":{},"1210":{},"1432":{},"1569":{},"1644":{},"2041":{},"2220":{},"2428":{},"2542":{},"2722":{},"2851":{},"3038":{},"3152":{},"3271":{},"3400":{},"3593":{},"3764":{},"3908":{},"4072":{}},"parent":{}}],["name",{"_index":205,"name":{"202":{},"379":{},"440":{},"585":{},"641":{},"808":{},"864":{},"1090":{},"1202":{},"1424":{},"1561":{},"1636":{},"2033":{},"2212":{},"2420":{},"2534":{},"2714":{},"2843":{},"3030":{},"3144":{},"3263":{},"3392":{},"3585":{},"3756":{},"3900":{},"4064":{}},"parent":{}}],["nestedquery",{"_index":193,"name":{"191":{},"429":{},"574":{},"797":{},"1080":{},"1192":{},"1414":{},"1551":{},"1625":{},"1825":{},"2022":{},"2202":{},"2410":{},"2524":{},"2704":{},"2833":{},"3020":{},"3134":{},"3253":{},"3382":{},"3575":{},"3746":{},"3890":{},"3960":{},"4053":{}},"parent":{}}],["next",{"_index":989,"name":{"1852":{}},"parent":{}}],["nocontent",{"_index":274,"name":{"275":{}},"parent":{}}],["nonreadablehttpmessage",{"_index":1017,"name":{"1886":{}},"parent":{}}],["nopropertiesallowed",{"_index":178,"name":{"176":{},"414":{},"559":{},"782":{},"1065":{},"1177":{},"1399":{},"1536":{},"1610":{},"1810":{},"2007":{},"2187":{},"2395":{},"2509":{},"2689":{},"2818":{},"3005":{},"3119":{},"3238":{},"3367":{},"3560":{},"3731":{},"3875":{},"3945":{},"4038":{}},"parent":{}}],["note",{"_index":488,"name":{"630":{},"853":{}},"parent":{}}],["notesresult",{"_index":487,"name":{"627":{},"850":{}},"parent":{}}],["notfound",{"_index":637,"name":{"1002":{},"1373":{},"1666":{},"1867":{},"3065":{},"3502":{},"3814":{}},"parent":{}}],["numberlastdigits",{"_index":295,"name":{"294":{},"624":{},"847":{}},"parent":{}}],["numberofcodes",{"_index":1390,"name":{"2634":{}},"parent":{}}],["numericrangefilter",{"_index":425,"name":{"492":{},"744":{},"967":{},"1043":{},"1155":{},"1365":{},"1516":{},"1696":{},"1761":{},"2086":{},"2165":{},"2373":{},"2487":{},"2667":{},"2797":{},"2983":{},"3097":{},"3217":{},"3345":{},"3539":{},"3710":{},"3853":{},"4117":{}},"parent":{}}],["oauth2errorresponse",{"_index":839,"name":{"1476":{}},"parent":{}}],["ocapicachingtogglerequest",{"_index":106,"name":{"105":{}},"parent":{}}],["offset",{"_index":1035,"name":{"1907":{},"2584":{},"2763":{}},"parent":{}}],["offsetpaginated",{"_index":158,"name":{"156":{},"488":{},"740":{},"963":{},"1037":{},"1149":{},"1359":{},"1510":{},"1692":{},"1755":{},"1794":{},"2082":{},"2159":{},"2367":{},"2481":{},"2661":{},"2791":{},"2977":{},"3091":{},"3211":{},"3339":{},"3535":{},"3704":{},"3847":{},"3985":{},"4113":{}},"parent":{}}],["openobject",{"_index":169,"name":{"167":{},"405":{},"550":{},"773":{},"1056":{},"1168":{},"1390":{},"1529":{},"1601":{},"1803":{},"1998":{},"2178":{},"2386":{},"2500":{},"2680":{},"2809":{},"2996":{},"3110":{},"3229":{},"3358":{},"3551":{},"3722":{},"3866":{},"3938":{},"4029":{}},"parent":{}}],["option",{"_index":768,"name":{"1313":{},"3806":{}},"parent":{}}],["optionitem",{"_index":339,"name":{"335":{},"666":{},"889":{},"1300":{}},"parent":{}}],["optionvalue",{"_index":737,"name":{"1264":{},"3792":{}},"parent":{}}],["order",{"_index":382,"name":{"374":{},"684":{},"907":{},"1326":{}},"parent":{}}],["orderaddress",{"_index":483,"name":{"612":{},"835":{},"1266":{}},"parent":{}}],["orderconfirmationstatusupdaterequest",{"_index":305,"name":{"304":{}},"parent":{}}],["ordercreated",{"_index":256,"name":{"257":{}},"parent":{}}],["orderexportstatusupdaterequest",{"_index":359,"name":{"353":{}},"parent":{}}],["orderexternalstatusupdaterequest",{"_index":336,"name":{"332":{}},"parent":{}}],["orderlookuprequest",{"_index":516,"name":{"673":{},"896":{}},"parent":{}}],["orderno",{"_index":1359,"name":{"2597":{},"2613":{},"2758":{}},"parent":{}}],["ordernote",{"_index":351,"name":{"346":{}},"parent":{}}],["ordernotfound",{"_index":248,"name":{"249":{}},"parent":{}}],["orderpaymentcardrequest",{"_index":527,"name":{"685":{},"908":{}},"parent":{}}],["orderpaymentinstrument",{"_index":503,"name":{"651":{},"874":{},"1284":{}},"parent":{}}],["orderpaymentinstrumentrequest",{"_index":520,"name":{"677":{},"900":{}},"parent":{}}],["orderpaymentstatusupdaterequest",{"_index":280,"name":{"281":{}},"parent":{}}],["orders",{"_index":231,"name":{"230":{}},"parent":{}}],["ordershippingstatusupdaterequest",{"_index":341,"name":{"337":{}},"parent":{}}],["ordersresponse",{"_index":316,"name":{"314":{}},"parent":{}}],["orderstatusupdaterequest",{"_index":362,"name":{"356":{}},"parent":{}}],["orderupdaterequest",{"_index":344,"name":{"340":{}},"parent":{}}],["orderviewcode",{"_index":519,"name":{"676":{},"899":{}},"parent":{}}],["organizationid",{"_index":1198,"name":{"2254":{}},"parent":{}}],["originheadermodification",{"_index":70,"name":{"69":{}},"parent":{}}],["originheadermodificationenvelope",{"_index":97,"name":{"96":{}},"parent":{}}],["originheadermodificationputrequest",{"_index":112,"name":{"111":{}},"parent":{}}],["page",{"_index":1156,"name":{"2132":{}},"parent":{}}],["pagenotfound",{"_index":1188,"name":{"2241":{}},"parent":{}}],["pageresult",{"_index":1155,"name":{"2131":{}},"parent":{}}],["paginatedsearchresult",{"_index":167,"name":{"165":{},"403":{},"548":{},"771":{},"1054":{},"1166":{},"1388":{},"1527":{},"1599":{},"1801":{},"1996":{},"2176":{},"2384":{},"2498":{},"2678":{},"2807":{},"2994":{},"3108":{},"3227":{},"3356":{},"3549":{},"3720":{},"3864":{},"3936":{},"4027":{}},"parent":{}}],["paginatedsearchresultbase",{"_index":182,"name":{"180":{},"418":{},"563":{},"786":{},"1069":{},"1181":{},"1403":{},"1540":{},"1614":{},"1814":{},"2011":{},"2191":{},"2399":{},"2513":{},"2693":{},"2822":{},"3009":{},"3123":{},"3242":{},"3371":{},"3564":{},"3735":{},"3879":{},"3949":{},"4042":{}},"parent":{}}],["pagination",{"_index":985,"name":{"1848":{}},"parent":{}}],["paginationlinks",{"_index":968,"name":{"1832":{}},"parent":{}}],["passwordactionrequest",{"_index":842,"name":{"1479":{}},"parent":{}}],["passwordactiontemplate",{"_index":923,"name":{"1723":{}},"parent":{}}],["passwordactionverifyrequest",{"_index":840,"name":{"1477":{}},"parent":{}}],["passwordchangerequest",{"_index":760,"name":{"1303":{}},"parent":{}}],["passwordlessloginrequest",{"_index":837,"name":{"1474":{}},"parent":{}}],["passwordlesslogintokenrequest",{"_index":838,"name":{"1475":{}},"parent":{}}],["patchowaspwafpackage",{"_index":35,"name":{"34":{}},"parent":{}}],["pathrecord",{"_index":1708,"name":{"3495":{},"3811":{}},"parent":{}}],["paymentbankaccount",{"_index":751,"name":{"1286":{}},"parent":{}}],["paymentbankaccountrequest",{"_index":756,"name":{"1295":{}},"parent":{}}],["paymentcard",{"_index":284,"name":{"284":{},"614":{},"837":{},"1271":{}},"parent":{}}],["paymentcardspec",{"_index":482,"name":{"611":{},"834":{}},"parent":{}}],["paymentinstrument",{"_index":358,"name":{"352":{}},"parent":{}}],["paymentinstrumentnotfound",{"_index":262,"name":{"263":{}},"parent":{}}],["paymentinstrumentupdaterequest",{"_index":279,"name":{"280":{}},"parent":{}}],["paymentmethod",{"_index":530,"name":{"696":{},"919":{}},"parent":{}}],["paymentmethodresult",{"_index":504,"name":{"653":{},"876":{}},"parent":{}}],["paymenttransaction",{"_index":381,"name":{"373":{}},"parent":{}}],["paymenttransactionupdaterequest",{"_index":278,"name":{"279":{}},"parent":{}}],["percentage",{"_index":303,"name":{"301":{}},"parent":{}}],["phrase",{"_index":1094,"name":{"1978":{}},"parent":{}}],["phrasequery",{"_index":1025,"name":{"1895":{}},"parent":{}}],["placeorderconflict",{"_index":268,"name":{"269":{}},"parent":{}}],["popularsearchphrases",{"_index":1101,"name":{"1983":{}},"parent":{}}],["position",{"_index":226,"name":{"225":{},"463":{},"608":{},"831":{},"1113":{},"1225":{},"1447":{},"1584":{},"1659":{},"2056":{},"2235":{},"2443":{},"2557":{},"2737":{},"2866":{},"3053":{},"3167":{},"3286":{},"3415":{},"3608":{},"3779":{},"3923":{},"4087":{}},"parent":{}}],["possiblevalues",{"_index":219,"name":{"217":{},"455":{},"600":{},"823":{},"1105":{},"1217":{},"1439":{},"1576":{},"1651":{},"2048":{},"2227":{},"2435":{},"2549":{},"2729":{},"2858":{},"3045":{},"3159":{},"3278":{},"3407":{},"3600":{},"3771":{},"3915":{},"4079":{}},"parent":{}}],["prev",{"_index":987,"name":{"1850":{}},"parent":{}}],["priceadjustment",{"_index":335,"name":{"331":{},"658":{},"881":{},"1296":{}},"parent":{}}],["priceadjustmentrequest",{"_index":484,"name":{"613":{},"836":{}},"parent":{}}],["pricebookid",{"_index":304,"name":{"302":{}},"parent":{}}],["pricebookids",{"_index":497,"name":{"644":{},"867":{}},"parent":{}}],["pricerange",{"_index":1133,"name":{"2095":{},"3791":{}},"parent":{}}],["pricing",{"_index":1220,"name":{"2283":{}},"parent":{"2284":{},"2445":{},"2446":{},"2447":{},"2565":{},"2566":{},"2567":{},"2739":{},"2740":{},"2741":{},"2884":{},"2885":{},"2886":{},"3055":{},"3056":{},"3057":{},"3169":{},"3170":{},"3171":{},"3288":{},"3289":{},"3290":{},"3417":{},"3418":{}}}],["pricing.assignments",{"_index":1222,"name":{},"parent":{"2285":{},"2286":{},"2287":{},"2288":{},"2292":{},"2293":{},"2306":{},"2309":{},"2310":{},"2325":{},"2330":{},"2331":{},"2335":{},"2343":{},"2344":{},"2345":{},"2347":{},"2349":{},"2351":{},"2353":{},"2355":{},"2357":{},"2359":{},"2361":{},"2363":{},"2365":{},"2367":{},"2369":{},"2371":{},"2373":{},"2375":{},"2377":{},"2378":{},"2379":{},"2380":{},"2381":{},"2382":{},"2383":{},"2384":{},"2385":{},"2386":{},"2387":{},"2389":{},"2391":{},"2393":{},"2395":{},"2397":{},"2398":{},"2399":{},"2400":{},"2401":{},"2402":{},"2403":{},"2404":{},"2405":{},"2406":{},"2407":{},"2408":{},"2409":{},"2410":{},"2411":{},"2412":{},"2413":{},"2414":{},"2415":{},"2416":{},"2438":{}}}],["pricing.assignments.asynccreated",{"_index":1278,"name":{},"parent":{"2362":{}}}],["pricing.assignments.attributedefinition",{"_index":1291,"name":{},"parent":{"2417":{}}}],["pricing.assignments.attributedefinition.__type",{"_index":1292,"name":{},"parent":{"2418":{},"2419":{},"2420":{},"2421":{},"2422":{},"2423":{},"2424":{},"2425":{},"2426":{},"2427":{},"2428":{},"2429":{},"2430":{},"2431":{},"2432":{},"2433":{},"2434":{},"2435":{},"2436":{},"2437":{}}}],["pricing.assignments.dateconditionalrequest",{"_index":1275,"name":{},"parent":{"2356":{}}}],["pricing.assignments.daterangefilter",{"_index":1270,"name":{},"parent":{"2346":{}}}],["pricing.assignments.datetimerangefilter",{"_index":1285,"name":{},"parent":{"2376":{}}}],["pricing.assignments.etagconditionalrequest",{"_index":1277,"name":{},"parent":{"2360":{}}}],["pricing.assignments.etagresponse",{"_index":1271,"name":{},"parent":{"2348":{}}}],["pricing.assignments.integerrangefilter",{"_index":1272,"name":{},"parent":{"2350":{}}}],["pricing.assignments.nopropertiesallowed",{"_index":1290,"name":{},"parent":{"2396":{}}}],["pricing.assignments.numericrangefilter",{"_index":1284,"name":{},"parent":{"2374":{}}}],["pricing.assignments.offsetpaginated",{"_index":1281,"name":{},"parent":{"2368":{}}}],["pricing.assignments.promotionabtestgroupassignment",{"_index":1266,"name":{},"parent":{"2336":{}}}],["pricing.assignments.promotionabtestgroupassignment.__type",{"_index":1268,"name":{},"parent":{"2337":{},"2338":{},"2339":{},"2340":{},"2341":{},"2342":{}}}],["pricing.assignments.promotionassignmentinformation",{"_index":1246,"name":{},"parent":{"2311":{}}}],["pricing.assignments.promotionassignmentinformation.__type",{"_index":1248,"name":{},"parent":{"2312":{},"2313":{},"2314":{},"2315":{},"2316":{},"2317":{},"2318":{},"2319":{},"2320":{},"2321":{},"2322":{},"2323":{},"2324":{}}}],["pricing.assignments.promotioncampaignassignment",{"_index":1231,"name":{},"parent":{"2294":{}}}],["pricing.assignments.promotioncampaignassignment.__type",{"_index":1232,"name":{},"parent":{"2295":{},"2296":{},"2297":{},"2298":{},"2299":{},"2300":{},"2301":{},"2302":{},"2303":{},"2304":{},"2305":{}}}],["pricing.assignments.propertyvaluedefinition",{"_index":1293,"name":{},"parent":{"2439":{}}}],["pricing.assignments.propertyvaluedefinition.__type",{"_index":1294,"name":{},"parent":{"2440":{},"2441":{},"2442":{},"2443":{},"2444":{}}}],["pricing.assignments.queryparamslimit",{"_index":1286,"name":{},"parent":{"2388":{}}}],["pricing.assignments.queryparamsoffset",{"_index":1287,"name":{},"parent":{"2390":{}}}],["pricing.assignments.rangefilter",{"_index":1282,"name":{},"parent":{"2370":{}}}],["pricing.assignments.ratelimited",{"_index":1279,"name":{},"parent":{"2364":{}}}],["pricing.assignments.ratelimited2",{"_index":1280,"name":{},"parent":{"2366":{}}}],["pricing.assignments.ratelimited3",{"_index":1273,"name":{},"parent":{"2352":{}}}],["pricing.assignments.ratelimited4",{"_index":1283,"name":{},"parent":{"2372":{}}}],["pricing.assignments.ratelimited5",{"_index":1276,"name":{},"parent":{"2358":{}}}],["pricing.assignments.recurrence",{"_index":1262,"name":{},"parent":{"2332":{}}}],["pricing.assignments.recurrence.__type",{"_index":1264,"name":{},"parent":{"2333":{},"2334":{}}}],["pricing.assignments.schedule",{"_index":1258,"name":{},"parent":{"2326":{}}}],["pricing.assignments.schedule.__type",{"_index":1259,"name":{},"parent":{"2327":{},"2328":{},"2329":{}}}],["pricing.assignments.selectable",{"_index":1289,"name":{},"parent":{"2394":{}}}],["pricing.assignments.sitespecific",{"_index":1288,"name":{},"parent":{"2392":{}}}],["pricing.assignments.synccreated",{"_index":1274,"name":{},"parent":{"2354":{}}}],["pricing.assignments.tag",{"_index":1242,"name":{},"parent":{"2307":{}}}],["pricing.assignments.tag.__type",{"_index":1244,"name":{},"parent":{"2308":{}}}],["pricing.assignments.timeofday",{"_index":1225,"name":{},"parent":{"2289":{}}}],["pricing.assignments.timeofday.__type",{"_index":1227,"name":{},"parent":{"2290":{},"2291":{}}}],["pricing.campaigns",{"_index":1296,"name":{},"parent":{"2448":{},"2449":{},"2450":{},"2451":{},"2452":{},"2453":{},"2454":{},"2455":{},"2456":{},"2457":{},"2458":{},"2459":{},"2461":{},"2463":{},"2465":{},"2467":{},"2469":{},"2471":{},"2473":{},"2475":{},"2477":{},"2479":{},"2481":{},"2483":{},"2485":{},"2487":{},"2489":{},"2491":{},"2492":{},"2493":{},"2494":{},"2495":{},"2496":{},"2497":{},"2498":{},"2499":{},"2500":{},"2501":{},"2503":{},"2505":{},"2507":{},"2509":{},"2511":{},"2512":{},"2513":{},"2514":{},"2515":{},"2516":{},"2517":{},"2518":{},"2519":{},"2520":{},"2521":{},"2522":{},"2523":{},"2524":{},"2525":{},"2526":{},"2527":{},"2528":{},"2529":{},"2530":{},"2552":{},"2559":{},"2561":{},"2563":{}}}],["pricing.campaigns.asynccreated",{"_index":1311,"name":{},"parent":{"2476":{}}}],["pricing.campaigns.attributedefinition",{"_index":1324,"name":{},"parent":{"2531":{}}}],["pricing.campaigns.attributedefinition.__type",{"_index":1325,"name":{},"parent":{"2532":{},"2533":{},"2534":{},"2535":{},"2536":{},"2537":{},"2538":{},"2539":{},"2540":{},"2541":{},"2542":{},"2543":{},"2544":{},"2545":{},"2546":{},"2547":{},"2548":{},"2549":{},"2550":{},"2551":{}}}],["pricing.campaigns.campaignduplicate",{"_index":1329,"name":{},"parent":{"2560":{}}}],["pricing.campaigns.campaignnotfound",{"_index":1331,"name":{},"parent":{"2562":{}}}],["pricing.campaigns.dateconditionalrequest",{"_index":1308,"name":{},"parent":{"2470":{}}}],["pricing.campaigns.daterangefilter",{"_index":1303,"name":{},"parent":{"2460":{}}}],["pricing.campaigns.datetimerangefilter",{"_index":1318,"name":{},"parent":{"2490":{}}}],["pricing.campaigns.etagconditionalrequest",{"_index":1310,"name":{},"parent":{"2474":{}}}],["pricing.campaigns.etagresponse",{"_index":1304,"name":{},"parent":{"2462":{}}}],["pricing.campaigns.idconflict",{"_index":1333,"name":{},"parent":{"2564":{}}}],["pricing.campaigns.integerrangefilter",{"_index":1305,"name":{},"parent":{"2464":{}}}],["pricing.campaigns.nopropertiesallowed",{"_index":1323,"name":{},"parent":{"2510":{}}}],["pricing.campaigns.numericrangefilter",{"_index":1317,"name":{},"parent":{"2488":{}}}],["pricing.campaigns.offsetpaginated",{"_index":1314,"name":{},"parent":{"2482":{}}}],["pricing.campaigns.propertyvaluedefinition",{"_index":1326,"name":{},"parent":{"2553":{}}}],["pricing.campaigns.propertyvaluedefinition.__type",{"_index":1327,"name":{},"parent":{"2554":{},"2555":{},"2556":{},"2557":{},"2558":{}}}],["pricing.campaigns.queryparamslimit",{"_index":1319,"name":{},"parent":{"2502":{}}}],["pricing.campaigns.queryparamsoffset",{"_index":1320,"name":{},"parent":{"2504":{}}}],["pricing.campaigns.rangefilter",{"_index":1315,"name":{},"parent":{"2484":{}}}],["pricing.campaigns.ratelimited",{"_index":1312,"name":{},"parent":{"2478":{}}}],["pricing.campaigns.ratelimited2",{"_index":1313,"name":{},"parent":{"2480":{}}}],["pricing.campaigns.ratelimited3",{"_index":1306,"name":{},"parent":{"2466":{}}}],["pricing.campaigns.ratelimited4",{"_index":1316,"name":{},"parent":{"2486":{}}}],["pricing.campaigns.ratelimited5",{"_index":1309,"name":{},"parent":{"2472":{}}}],["pricing.campaigns.selectable",{"_index":1322,"name":{},"parent":{"2508":{}}}],["pricing.campaigns.sitespecific",{"_index":1321,"name":{},"parent":{"2506":{}}}],["pricing.campaigns.synccreated",{"_index":1307,"name":{},"parent":{"2468":{}}}],["pricing.coupons",{"_index":1334,"name":{},"parent":{"2568":{},"2569":{},"2570":{},"2571":{},"2572":{},"2573":{},"2574":{},"2575":{},"2576":{},"2577":{},"2578":{},"2579":{},"2580":{},"2586":{},"2591":{},"2599":{},"2603":{},"2608":{},"2609":{},"2614":{},"2628":{},"2631":{},"2635":{},"2637":{},"2638":{},"2639":{},"2641":{},"2643":{},"2645":{},"2647":{},"2649":{},"2651":{},"2653":{},"2655":{},"2657":{},"2659":{},"2661":{},"2663":{},"2665":{},"2667":{},"2669":{},"2671":{},"2672":{},"2673":{},"2674":{},"2675":{},"2676":{},"2677":{},"2678":{},"2679":{},"2680":{},"2681":{},"2683":{},"2685":{},"2687":{},"2689":{},"2691":{},"2692":{},"2693":{},"2694":{},"2695":{},"2696":{},"2697":{},"2698":{},"2699":{},"2700":{},"2701":{},"2702":{},"2703":{},"2704":{},"2705":{},"2706":{},"2707":{},"2708":{},"2709":{},"2710":{},"2732":{}}}],["pricing.coupons.asynccreated",{"_index":1401,"name":{},"parent":{"2656":{}}}],["pricing.coupons.attributedefinition",{"_index":1414,"name":{},"parent":{"2711":{}}}],["pricing.coupons.attributedefinition.__type",{"_index":1415,"name":{},"parent":{"2712":{},"2713":{},"2714":{},"2715":{},"2716":{},"2717":{},"2718":{},"2719":{},"2720":{},"2721":{},"2722":{},"2723":{},"2724":{},"2725":{},"2726":{},"2727":{},"2728":{},"2729":{},"2730":{},"2731":{}}}],["pricing.coupons.coupon",{"_index":1375,"name":{},"parent":{"2615":{}}}],["pricing.coupons.coupon.__type",{"_index":1376,"name":{},"parent":{"2616":{},"2617":{},"2618":{},"2619":{},"2620":{},"2621":{},"2622":{},"2623":{},"2624":{},"2625":{},"2626":{},"2627":{}}}],["pricing.coupons.couponcode",{"_index":1366,"name":{},"parent":{"2604":{}}}],["pricing.coupons.couponcode.__type",{"_index":1367,"name":{},"parent":{"2605":{},"2606":{},"2607":{}}}],["pricing.coupons.couponcoderedemptionrequest",{"_index":1372,"name":{},"parent":{"2610":{}}}],["pricing.coupons.couponcoderedemptionrequest.__type",{"_index":1373,"name":{},"parent":{"2611":{},"2612":{},"2613":{}}}],["pricing.coupons.couponcodes",{"_index":1346,"name":{},"parent":{"2581":{}}}],["pricing.coupons.couponcodes.__type",{"_index":1347,"name":{},"parent":{"2582":{},"2583":{},"2584":{},"2585":{}}}],["pricing.coupons.couponmulticodesrequest",{"_index":1383,"name":{},"parent":{"2629":{}}}],["pricing.coupons.couponmulticodesrequest.__type",{"_index":1385,"name":{},"parent":{"2630":{}}}],["pricing.coupons.couponnotfound",{"_index":1392,"name":{},"parent":{"2636":{}}}],["pricing.coupons.couponredemption",{"_index":1355,"name":{},"parent":{"2592":{}}}],["pricing.coupons.couponredemption.__type",{"_index":1356,"name":{},"parent":{"2593":{},"2594":{},"2595":{},"2596":{},"2597":{},"2598":{}}}],["pricing.coupons.couponsystemcodeconfig",{"_index":1387,"name":{},"parent":{"2632":{}}}],["pricing.coupons.couponsystemcodeconfig.__type",{"_index":1389,"name":{},"parent":{"2633":{},"2634":{}}}],["pricing.coupons.dateconditionalrequest",{"_index":1398,"name":{},"parent":{"2650":{}}}],["pricing.coupons.daterangefilter",{"_index":1393,"name":{},"parent":{"2640":{}}}],["pricing.coupons.datetimerangefilter",{"_index":1408,"name":{},"parent":{"2670":{}}}],["pricing.coupons.etagconditionalrequest",{"_index":1400,"name":{},"parent":{"2654":{}}}],["pricing.coupons.etagresponse",{"_index":1394,"name":{},"parent":{"2642":{}}}],["pricing.coupons.integerrangefilter",{"_index":1395,"name":{},"parent":{"2644":{}}}],["pricing.coupons.nopropertiesallowed",{"_index":1413,"name":{},"parent":{"2690":{}}}],["pricing.coupons.numericrangefilter",{"_index":1407,"name":{},"parent":{"2668":{}}}],["pricing.coupons.offsetpaginated",{"_index":1404,"name":{},"parent":{"2662":{}}}],["pricing.coupons.propertyvaluedefinition",{"_index":1416,"name":{},"parent":{"2733":{}}}],["pricing.coupons.propertyvaluedefinition.__type",{"_index":1417,"name":{},"parent":{"2734":{},"2735":{},"2736":{},"2737":{},"2738":{}}}],["pricing.coupons.queryparamslimit",{"_index":1409,"name":{},"parent":{"2682":{}}}],["pricing.coupons.queryparamsoffset",{"_index":1410,"name":{},"parent":{"2684":{}}}],["pricing.coupons.rangefilter",{"_index":1405,"name":{},"parent":{"2664":{}}}],["pricing.coupons.ratelimited",{"_index":1402,"name":{},"parent":{"2658":{}}}],["pricing.coupons.ratelimited2",{"_index":1403,"name":{},"parent":{"2660":{}}}],["pricing.coupons.ratelimited3",{"_index":1396,"name":{},"parent":{"2646":{}}}],["pricing.coupons.ratelimited4",{"_index":1406,"name":{},"parent":{"2666":{}}}],["pricing.coupons.ratelimited5",{"_index":1399,"name":{},"parent":{"2652":{}}}],["pricing.coupons.redemptionlimitperperiod",{"_index":1362,"name":{},"parent":{"2600":{}}}],["pricing.coupons.redemptionlimitperperiod.__type",{"_index":1363,"name":{},"parent":{"2601":{},"2602":{}}}],["pricing.coupons.redemptionlimits",{"_index":1349,"name":{},"parent":{"2587":{}}}],["pricing.coupons.redemptionlimits.__type",{"_index":1351,"name":{},"parent":{"2588":{},"2589":{},"2590":{}}}],["pricing.coupons.selectable",{"_index":1412,"name":{},"parent":{"2688":{}}}],["pricing.coupons.sitespecific",{"_index":1411,"name":{},"parent":{"2686":{}}}],["pricing.coupons.synccreated",{"_index":1397,"name":{},"parent":{"2648":{}}}],["pricing.giftcertificates",{"_index":1419,"name":{},"parent":{"2742":{},"2743":{},"2744":{},"2745":{},"2746":{},"2747":{},"2748":{},"2749":{},"2753":{},"2754":{},"2755":{},"2761":{},"2767":{},"2768":{},"2769":{},"2771":{},"2773":{},"2775":{},"2777":{},"2779":{},"2781":{},"2783":{},"2785":{},"2787":{},"2789":{},"2791":{},"2793":{},"2795":{},"2797":{},"2799":{},"2801":{},"2802":{},"2803":{},"2804":{},"2805":{},"2806":{},"2807":{},"2808":{},"2809":{},"2810":{},"2812":{},"2814":{},"2816":{},"2818":{},"2820":{},"2821":{},"2822":{},"2823":{},"2824":{},"2825":{},"2826":{},"2827":{},"2828":{},"2829":{},"2830":{},"2831":{},"2832":{},"2833":{},"2834":{},"2835":{},"2836":{},"2837":{},"2838":{},"2839":{},"2861":{},"2868":{},"2870":{},"2872":{},"2874":{},"2876":{},"2878":{},"2880":{},"2882":{}}}],["pricing.giftcertificates.accounttransaction",{"_index":1431,"name":{},"parent":{"2756":{}}}],["pricing.giftcertificates.accounttransaction.__type",{"_index":1432,"name":{},"parent":{"2757":{},"2758":{},"2759":{},"2760":{}}}],["pricing.giftcertificates.asynccreated",{"_index":1445,"name":{},"parent":{"2786":{}}}],["pricing.giftcertificates.attributedefinition",{"_index":1458,"name":{},"parent":{"2840":{}}}],["pricing.giftcertificates.attributedefinition.__type",{"_index":1459,"name":{},"parent":{"2841":{},"2842":{},"2843":{},"2844":{},"2845":{},"2846":{},"2847":{},"2848":{},"2849":{},"2850":{},"2851":{},"2852":{},"2853":{},"2854":{},"2855":{},"2856":{},"2857":{},"2858":{},"2859":{},"2860":{}}}],["pricing.giftcertificates.dateconditionalrequest",{"_index":1442,"name":{},"parent":{"2780":{}}}],["pricing.giftcertificates.daterangefilter",{"_index":1437,"name":{},"parent":{"2770":{}}}],["pricing.giftcertificates.datetimerangefilter",{"_index":1452,"name":{},"parent":{"2800":{}}}],["pricing.giftcertificates.etagconditionalrequest",{"_index":1444,"name":{},"parent":{"2784":{}}}],["pricing.giftcertificates.etagresponse",{"_index":1438,"name":{},"parent":{"2772":{}}}],["pricing.giftcertificates.giftcertificateamountoutofrangeexception",{"_index":1469,"name":{},"parent":{"2875":{}}}],["pricing.giftcertificates.giftcertificatecreatemerchantidnotuniqueexception",{"_index":1463,"name":{},"parent":{"2869":{}}}],["pricing.giftcertificates.giftcertificatenotfound",{"_index":1465,"name":{},"parent":{"2871":{}}}],["pricing.giftcertificates.giftcertificates",{"_index":1435,"name":{},"parent":{"2762":{}}}],["pricing.giftcertificates.giftcertificates.__type",{"_index":1436,"name":{},"parent":{"2763":{},"2764":{},"2765":{},"2766":{}}}],["pricing.giftcertificates.integerrangefilter",{"_index":1439,"name":{},"parent":{"2774":{}}}],["pricing.giftcertificates.invalidgiftcertificateexception",{"_index":1477,"name":{},"parent":{"2883":{}}}],["pricing.giftcertificates.invalidgiftcertificatestatus",{"_index":1475,"name":{},"parent":{"2881":{}}}],["pricing.giftcertificates.invalidrecipientemail",{"_index":1471,"name":{},"parent":{"2877":{}}}],["pricing.giftcertificates.malformedquery",{"_index":1467,"name":{},"parent":{"2873":{}}}],["pricing.giftcertificates.money",{"_index":1425,"name":{},"parent":{"2750":{}}}],["pricing.giftcertificates.money.__type",{"_index":1427,"name":{},"parent":{"2751":{},"2752":{}}}],["pricing.giftcertificates.nopropertiesallowed",{"_index":1457,"name":{},"parent":{"2819":{}}}],["pricing.giftcertificates.numericrangefilter",{"_index":1451,"name":{},"parent":{"2798":{}}}],["pricing.giftcertificates.offsetpaginated",{"_index":1448,"name":{},"parent":{"2792":{}}}],["pricing.giftcertificates.propertyvaluedefinition",{"_index":1460,"name":{},"parent":{"2862":{}}}],["pricing.giftcertificates.propertyvaluedefinition.__type",{"_index":1461,"name":{},"parent":{"2863":{},"2864":{},"2865":{},"2866":{},"2867":{}}}],["pricing.giftcertificates.queryparamslimit",{"_index":1453,"name":{},"parent":{"2811":{}}}],["pricing.giftcertificates.queryparamsoffset",{"_index":1454,"name":{},"parent":{"2813":{}}}],["pricing.giftcertificates.rangefilter",{"_index":1449,"name":{},"parent":{"2794":{}}}],["pricing.giftcertificates.ratelimited",{"_index":1446,"name":{},"parent":{"2788":{}}}],["pricing.giftcertificates.ratelimited2",{"_index":1447,"name":{},"parent":{"2790":{}}}],["pricing.giftcertificates.ratelimited3",{"_index":1440,"name":{},"parent":{"2776":{}}}],["pricing.giftcertificates.ratelimited4",{"_index":1450,"name":{},"parent":{"2796":{}}}],["pricing.giftcertificates.ratelimited5",{"_index":1443,"name":{},"parent":{"2782":{}}}],["pricing.giftcertificates.selectable",{"_index":1456,"name":{},"parent":{"2817":{}}}],["pricing.giftcertificates.sitespecific",{"_index":1455,"name":{},"parent":{"2815":{}}}],["pricing.giftcertificates.synccreated",{"_index":1441,"name":{},"parent":{"2778":{}}}],["pricing.giftcertificates.unqueryablefield",{"_index":1473,"name":{},"parent":{"2879":{}}}],["pricing.promotions",{"_index":1479,"name":{},"parent":{"2887":{},"2888":{},"2889":{},"2890":{},"2891":{},"2892":{},"2893":{},"2894":{},"2895":{},"2899":{},"2900":{},"2913":{},"2916":{},"2917":{},"2932":{},"2937":{},"2941":{},"2949":{},"2951":{},"2953":{},"2954":{},"2955":{},"2957":{},"2959":{},"2961":{},"2963":{},"2965":{},"2967":{},"2969":{},"2971":{},"2973":{},"2975":{},"2977":{},"2979":{},"2981":{},"2983":{},"2985":{},"2987":{},"2988":{},"2989":{},"2990":{},"2991":{},"2992":{},"2993":{},"2994":{},"2995":{},"2996":{},"2997":{},"2999":{},"3001":{},"3003":{},"3005":{},"3007":{},"3008":{},"3009":{},"3010":{},"3011":{},"3012":{},"3013":{},"3014":{},"3015":{},"3016":{},"3017":{},"3018":{},"3019":{},"3020":{},"3021":{},"3022":{},"3023":{},"3024":{},"3025":{},"3026":{},"3048":{}}}],["pricing.promotions.asynccreated",{"_index":1512,"name":{},"parent":{"2972":{}}}],["pricing.promotions.attributedefinition",{"_index":1525,"name":{},"parent":{"3027":{}}}],["pricing.promotions.attributedefinition.__type",{"_index":1526,"name":{},"parent":{"3028":{},"3029":{},"3030":{},"3031":{},"3032":{},"3033":{},"3034":{},"3035":{},"3036":{},"3037":{},"3038":{},"3039":{},"3040":{},"3041":{},"3042":{},"3043":{},"3044":{},"3045":{},"3046":{},"3047":{}}}],["pricing.promotions.dateconditionalrequest",{"_index":1509,"name":{},"parent":{"2966":{}}}],["pricing.promotions.daterangefilter",{"_index":1504,"name":{},"parent":{"2956":{}}}],["pricing.promotions.datetimerangefilter",{"_index":1519,"name":{},"parent":{"2986":{}}}],["pricing.promotions.etagconditionalrequest",{"_index":1511,"name":{},"parent":{"2970":{}}}],["pricing.promotions.etagresponse",{"_index":1505,"name":{},"parent":{"2958":{}}}],["pricing.promotions.integerrangefilter",{"_index":1506,"name":{},"parent":{"2960":{}}}],["pricing.promotions.nopropertiesallowed",{"_index":1524,"name":{},"parent":{"3006":{}}}],["pricing.promotions.numericrangefilter",{"_index":1518,"name":{},"parent":{"2984":{}}}],["pricing.promotions.offsetpaginated",{"_index":1515,"name":{},"parent":{"2978":{}}}],["pricing.promotions.promotionabtestgroupassignment",{"_index":1498,"name":{},"parent":{"2942":{}}}],["pricing.promotions.promotionabtestgroupassignment.__type",{"_index":1499,"name":{},"parent":{"2943":{},"2944":{},"2945":{},"2946":{},"2947":{},"2948":{}}}],["pricing.promotions.promotionassignmentinformation",{"_index":1492,"name":{},"parent":{"2918":{}}}],["pricing.promotions.promotionassignmentinformation.__type",{"_index":1493,"name":{},"parent":{"2919":{},"2920":{},"2921":{},"2922":{},"2923":{},"2924":{},"2925":{},"2926":{},"2927":{},"2928":{},"2929":{},"2930":{},"2931":{}}}],["pricing.promotions.promotioncampaignassignment",{"_index":1488,"name":{},"parent":{"2901":{}}}],["pricing.promotions.promotioncampaignassignment.__type",{"_index":1489,"name":{},"parent":{"2902":{},"2903":{},"2904":{},"2905":{},"2906":{},"2907":{},"2908":{},"2909":{},"2910":{},"2911":{},"2912":{}}}],["pricing.promotions.promotionidconflict",{"_index":1503,"name":{},"parent":{"2952":{}}}],["pricing.promotions.promotionnotfound",{"_index":1501,"name":{},"parent":{"2950":{}}}],["pricing.promotions.propertyvaluedefinition",{"_index":1527,"name":{},"parent":{"3049":{}}}],["pricing.promotions.propertyvaluedefinition.__type",{"_index":1528,"name":{},"parent":{"3050":{},"3051":{},"3052":{},"3053":{},"3054":{}}}],["pricing.promotions.queryparamslimit",{"_index":1520,"name":{},"parent":{"2998":{}}}],["pricing.promotions.queryparamsoffset",{"_index":1521,"name":{},"parent":{"3000":{}}}],["pricing.promotions.rangefilter",{"_index":1516,"name":{},"parent":{"2980":{}}}],["pricing.promotions.ratelimited",{"_index":1513,"name":{},"parent":{"2974":{}}}],["pricing.promotions.ratelimited2",{"_index":1514,"name":{},"parent":{"2976":{}}}],["pricing.promotions.ratelimited3",{"_index":1507,"name":{},"parent":{"2962":{}}}],["pricing.promotions.ratelimited4",{"_index":1517,"name":{},"parent":{"2982":{}}}],["pricing.promotions.ratelimited5",{"_index":1510,"name":{},"parent":{"2968":{}}}],["pricing.promotions.recurrence",{"_index":1496,"name":{},"parent":{"2938":{}}}],["pricing.promotions.recurrence.__type",{"_index":1497,"name":{},"parent":{"2939":{},"2940":{}}}],["pricing.promotions.schedule",{"_index":1494,"name":{},"parent":{"2933":{}}}],["pricing.promotions.schedule.__type",{"_index":1495,"name":{},"parent":{"2934":{},"2935":{},"2936":{}}}],["pricing.promotions.selectable",{"_index":1523,"name":{},"parent":{"3004":{}}}],["pricing.promotions.sitespecific",{"_index":1522,"name":{},"parent":{"3002":{}}}],["pricing.promotions.synccreated",{"_index":1508,"name":{},"parent":{"2964":{}}}],["pricing.promotions.tag",{"_index":1490,"name":{},"parent":{"2914":{}}}],["pricing.promotions.tag.__type",{"_index":1491,"name":{},"parent":{"2915":{}}}],["pricing.promotions.timeofday",{"_index":1486,"name":{},"parent":{"2896":{}}}],["pricing.promotions.timeofday.__type",{"_index":1487,"name":{},"parent":{"2897":{},"2898":{}}}],["pricing.shoppergiftcertificates",{"_index":1530,"name":{},"parent":{"3058":{},"3059":{},"3060":{},"3061":{},"3062":{},"3065":{},"3067":{},"3068":{},"3069":{},"3071":{},"3073":{},"3075":{},"3077":{},"3079":{},"3081":{},"3083":{},"3085":{},"3087":{},"3089":{},"3091":{},"3093":{},"3095":{},"3097":{},"3099":{},"3101":{},"3102":{},"3103":{},"3104":{},"3105":{},"3106":{},"3107":{},"3108":{},"3109":{},"3110":{},"3111":{},"3113":{},"3115":{},"3117":{},"3119":{},"3121":{},"3122":{},"3123":{},"3124":{},"3125":{},"3126":{},"3127":{},"3128":{},"3129":{},"3130":{},"3131":{},"3132":{},"3133":{},"3134":{},"3135":{},"3136":{},"3137":{},"3138":{},"3139":{},"3140":{},"3162":{}}}],["pricing.shoppergiftcertificates.asynccreated",{"_index":1544,"name":{},"parent":{"3086":{}}}],["pricing.shoppergiftcertificates.attributedefinition",{"_index":1557,"name":{},"parent":{"3141":{}}}],["pricing.shoppergiftcertificates.attributedefinition.__type",{"_index":1558,"name":{},"parent":{"3142":{},"3143":{},"3144":{},"3145":{},"3146":{},"3147":{},"3148":{},"3149":{},"3150":{},"3151":{},"3152":{},"3153":{},"3154":{},"3155":{},"3156":{},"3157":{},"3158":{},"3159":{},"3160":{},"3161":{}}}],["pricing.shoppergiftcertificates.dateconditionalrequest",{"_index":1541,"name":{},"parent":{"3080":{}}}],["pricing.shoppergiftcertificates.daterangefilter",{"_index":1536,"name":{},"parent":{"3070":{}}}],["pricing.shoppergiftcertificates.datetimerangefilter",{"_index":1551,"name":{},"parent":{"3100":{}}}],["pricing.shoppergiftcertificates.etagconditionalrequest",{"_index":1543,"name":{},"parent":{"3084":{}}}],["pricing.shoppergiftcertificates.etagresponse",{"_index":1537,"name":{},"parent":{"3072":{}}}],["pricing.shoppergiftcertificates.giftcertificaterequest",{"_index":1532,"name":{},"parent":{"3063":{}}}],["pricing.shoppergiftcertificates.giftcertificaterequest.__type",{"_index":1534,"name":{},"parent":{"3064":{}}}],["pricing.shoppergiftcertificates.integerrangefilter",{"_index":1538,"name":{},"parent":{"3074":{}}}],["pricing.shoppergiftcertificates.nopropertiesallowed",{"_index":1556,"name":{},"parent":{"3120":{}}}],["pricing.shoppergiftcertificates.notfound",{"_index":1535,"name":{},"parent":{"3066":{}}}],["pricing.shoppergiftcertificates.numericrangefilter",{"_index":1550,"name":{},"parent":{"3098":{}}}],["pricing.shoppergiftcertificates.offsetpaginated",{"_index":1547,"name":{},"parent":{"3092":{}}}],["pricing.shoppergiftcertificates.propertyvaluedefinition",{"_index":1559,"name":{},"parent":{"3163":{}}}],["pricing.shoppergiftcertificates.propertyvaluedefinition.__type",{"_index":1560,"name":{},"parent":{"3164":{},"3165":{},"3166":{},"3167":{},"3168":{}}}],["pricing.shoppergiftcertificates.queryparamslimit",{"_index":1552,"name":{},"parent":{"3112":{}}}],["pricing.shoppergiftcertificates.queryparamsoffset",{"_index":1553,"name":{},"parent":{"3114":{}}}],["pricing.shoppergiftcertificates.rangefilter",{"_index":1548,"name":{},"parent":{"3094":{}}}],["pricing.shoppergiftcertificates.ratelimited",{"_index":1545,"name":{},"parent":{"3088":{}}}],["pricing.shoppergiftcertificates.ratelimited2",{"_index":1546,"name":{},"parent":{"3090":{}}}],["pricing.shoppergiftcertificates.ratelimited3",{"_index":1539,"name":{},"parent":{"3076":{}}}],["pricing.shoppergiftcertificates.ratelimited4",{"_index":1549,"name":{},"parent":{"3096":{}}}],["pricing.shoppergiftcertificates.ratelimited5",{"_index":1542,"name":{},"parent":{"3082":{}}}],["pricing.shoppergiftcertificates.selectable",{"_index":1555,"name":{},"parent":{"3118":{}}}],["pricing.shoppergiftcertificates.sitespecific",{"_index":1554,"name":{},"parent":{"3116":{}}}],["pricing.shoppergiftcertificates.synccreated",{"_index":1540,"name":{},"parent":{"3078":{}}}],["pricing.shopperpromotions",{"_index":1562,"name":{},"parent":{"3172":{},"3173":{},"3174":{},"3175":{},"3176":{},"3177":{},"3182":{},"3183":{},"3185":{},"3187":{},"3188":{},"3189":{},"3191":{},"3193":{},"3195":{},"3197":{},"3199":{},"3201":{},"3203":{},"3205":{},"3207":{},"3209":{},"3211":{},"3213":{},"3215":{},"3217":{},"3219":{},"3221":{},"3222":{},"3223":{},"3224":{},"3225":{},"3226":{},"3227":{},"3228":{},"3229":{},"3230":{},"3232":{},"3234":{},"3236":{},"3238":{},"3240":{},"3241":{},"3242":{},"3243":{},"3244":{},"3245":{},"3246":{},"3247":{},"3248":{},"3249":{},"3250":{},"3251":{},"3252":{},"3253":{},"3254":{},"3255":{},"3256":{},"3257":{},"3258":{},"3259":{},"3281":{}}}],["pricing.shopperpromotions.asynccreated",{"_index":1578,"name":{},"parent":{"3206":{}}}],["pricing.shopperpromotions.attributedefinition",{"_index":1591,"name":{},"parent":{"3260":{}}}],["pricing.shopperpromotions.attributedefinition.__type",{"_index":1592,"name":{},"parent":{"3261":{},"3262":{},"3263":{},"3264":{},"3265":{},"3266":{},"3267":{},"3268":{},"3269":{},"3270":{},"3271":{},"3272":{},"3273":{},"3274":{},"3275":{},"3276":{},"3277":{},"3278":{},"3279":{},"3280":{}}}],["pricing.shopperpromotions.badrequest",{"_index":1569,"name":{},"parent":{"3186":{}}}],["pricing.shopperpromotions.dateconditionalrequest",{"_index":1575,"name":{},"parent":{"3200":{}}}],["pricing.shopperpromotions.daterangefilter",{"_index":1570,"name":{},"parent":{"3190":{}}}],["pricing.shopperpromotions.datetimerangefilter",{"_index":1585,"name":{},"parent":{"3220":{}}}],["pricing.shopperpromotions.etagconditionalrequest",{"_index":1577,"name":{},"parent":{"3204":{}}}],["pricing.shopperpromotions.etagresponse",{"_index":1571,"name":{},"parent":{"3192":{}}}],["pricing.shopperpromotions.integerrangefilter",{"_index":1572,"name":{},"parent":{"3194":{}}}],["pricing.shopperpromotions.nopropertiesallowed",{"_index":1590,"name":{},"parent":{"3239":{}}}],["pricing.shopperpromotions.numericrangefilter",{"_index":1584,"name":{},"parent":{"3218":{}}}],["pricing.shopperpromotions.offsetpaginated",{"_index":1581,"name":{},"parent":{"3212":{}}}],["pricing.shopperpromotions.promotionnotfound",{"_index":1568,"name":{},"parent":{"3184":{}}}],["pricing.shopperpromotions.promotionresult",{"_index":1566,"name":{},"parent":{"3178":{}}}],["pricing.shopperpromotions.promotionresult.__type",{"_index":1567,"name":{},"parent":{"3179":{},"3180":{},"3181":{}}}],["pricing.shopperpromotions.propertyvaluedefinition",{"_index":1593,"name":{},"parent":{"3282":{}}}],["pricing.shopperpromotions.propertyvaluedefinition.__type",{"_index":1594,"name":{},"parent":{"3283":{},"3284":{},"3285":{},"3286":{},"3287":{}}}],["pricing.shopperpromotions.queryparamslimit",{"_index":1586,"name":{},"parent":{"3231":{}}}],["pricing.shopperpromotions.queryparamsoffset",{"_index":1587,"name":{},"parent":{"3233":{}}}],["pricing.shopperpromotions.rangefilter",{"_index":1582,"name":{},"parent":{"3214":{}}}],["pricing.shopperpromotions.ratelimited",{"_index":1579,"name":{},"parent":{"3208":{}}}],["pricing.shopperpromotions.ratelimited2",{"_index":1580,"name":{},"parent":{"3210":{}}}],["pricing.shopperpromotions.ratelimited3",{"_index":1573,"name":{},"parent":{"3196":{}}}],["pricing.shopperpromotions.ratelimited4",{"_index":1583,"name":{},"parent":{"3216":{}}}],["pricing.shopperpromotions.ratelimited5",{"_index":1576,"name":{},"parent":{"3202":{}}}],["pricing.shopperpromotions.selectable",{"_index":1589,"name":{},"parent":{"3237":{}}}],["pricing.shopperpromotions.sitespecific",{"_index":1588,"name":{},"parent":{"3235":{}}}],["pricing.shopperpromotions.synccreated",{"_index":1574,"name":{},"parent":{"3198":{}}}],["pricing.sourcecodegroups",{"_index":1595,"name":{},"parent":{"3291":{},"3292":{},"3293":{},"3294":{},"3295":{},"3296":{},"3297":{},"3298":{},"3299":{},"3300":{},"3304":{},"3307":{},"3309":{},"3311":{},"3313":{},"3315":{},"3316":{},"3317":{},"3319":{},"3321":{},"3323":{},"3325":{},"3327":{},"3329":{},"3331":{},"3333":{},"3335":{},"3337":{},"3339":{},"3341":{},"3343":{},"3345":{},"3347":{},"3349":{},"3350":{},"3351":{},"3352":{},"3353":{},"3354":{},"3355":{},"3356":{},"3357":{},"3358":{},"3359":{},"3361":{},"3363":{},"3365":{},"3367":{},"3369":{},"3370":{},"3371":{},"3372":{},"3373":{},"3374":{},"3375":{},"3376":{},"3377":{},"3378":{},"3379":{},"3380":{},"3381":{},"3382":{},"3383":{},"3384":{},"3385":{},"3386":{},"3387":{},"3388":{},"3410":{}}}],["pricing.sourcecodegroups.asynccreated",{"_index":1627,"name":{},"parent":{"3334":{}}}],["pricing.sourcecodegroups.attributedefinition",{"_index":1640,"name":{},"parent":{"3389":{}}}],["pricing.sourcecodegroups.attributedefinition.__type",{"_index":1641,"name":{},"parent":{"3390":{},"3391":{},"3392":{},"3393":{},"3394":{},"3395":{},"3396":{},"3397":{},"3398":{},"3399":{},"3400":{},"3401":{},"3402":{},"3403":{},"3404":{},"3405":{},"3406":{},"3407":{},"3408":{},"3409":{}}}],["pricing.sourcecodegroups.dateconditionalrequest",{"_index":1624,"name":{},"parent":{"3328":{}}}],["pricing.sourcecodegroups.daterangefilter",{"_index":1619,"name":{},"parent":{"3318":{}}}],["pricing.sourcecodegroups.datetimerangefilter",{"_index":1634,"name":{},"parent":{"3348":{}}}],["pricing.sourcecodegroups.etagconditionalrequest",{"_index":1626,"name":{},"parent":{"3332":{}}}],["pricing.sourcecodegroups.etagresponse",{"_index":1620,"name":{},"parent":{"3320":{}}}],["pricing.sourcecodegroups.idconflict",{"_index":1616,"name":{},"parent":{"3312":{}}}],["pricing.sourcecodegroups.integerrangefilter",{"_index":1621,"name":{},"parent":{"3322":{}}}],["pricing.sourcecodegroups.invalidquery",{"_index":1618,"name":{},"parent":{"3314":{}}}],["pricing.sourcecodegroups.nopropertiesallowed",{"_index":1639,"name":{},"parent":{"3368":{}}}],["pricing.sourcecodegroups.numericrangefilter",{"_index":1633,"name":{},"parent":{"3346":{}}}],["pricing.sourcecodegroups.offsetpaginated",{"_index":1630,"name":{},"parent":{"3340":{}}}],["pricing.sourcecodegroups.propertyvaluedefinition",{"_index":1642,"name":{},"parent":{"3411":{}}}],["pricing.sourcecodegroups.propertyvaluedefinition.__type",{"_index":1643,"name":{},"parent":{"3412":{},"3413":{},"3414":{},"3415":{},"3416":{}}}],["pricing.sourcecodegroups.queryparamslimit",{"_index":1635,"name":{},"parent":{"3360":{}}}],["pricing.sourcecodegroups.queryparamsoffset",{"_index":1636,"name":{},"parent":{"3362":{}}}],["pricing.sourcecodegroups.rangefilter",{"_index":1631,"name":{},"parent":{"3342":{}}}],["pricing.sourcecodegroups.ratelimited",{"_index":1628,"name":{},"parent":{"3336":{}}}],["pricing.sourcecodegroups.ratelimited2",{"_index":1629,"name":{},"parent":{"3338":{}}}],["pricing.sourcecodegroups.ratelimited3",{"_index":1622,"name":{},"parent":{"3324":{}}}],["pricing.sourcecodegroups.ratelimited4",{"_index":1632,"name":{},"parent":{"3344":{}}}],["pricing.sourcecodegroups.ratelimited5",{"_index":1625,"name":{},"parent":{"3330":{}}}],["pricing.sourcecodegroups.selectable",{"_index":1638,"name":{},"parent":{"3366":{}}}],["pricing.sourcecodegroups.sitespecific",{"_index":1637,"name":{},"parent":{"3364":{}}}],["pricing.sourcecodegroups.sourcecodegroupinvalid",{"_index":1615,"name":{},"parent":{"3310":{}}}],["pricing.sourcecodegroups.sourcecodegroupnotfound",{"_index":1613,"name":{},"parent":{"3308":{}}}],["pricing.sourcecodegroups.sourcecoderedirectinfo",{"_index":1604,"name":{},"parent":{"3301":{}}}],["pricing.sourcecodegroups.sourcecoderedirectinfo.__type",{"_index":1606,"name":{},"parent":{"3302":{},"3303":{}}}],["pricing.sourcecodegroups.sourcecodespecification",{"_index":1609,"name":{},"parent":{"3305":{}}}],["pricing.sourcecodegroups.sourcecodespecification.__type",{"_index":1611,"name":{},"parent":{"3306":{}}}],["pricing.sourcecodegroups.synccreated",{"_index":1623,"name":{},"parent":{"3326":{}}}],["priority",{"_index":395,"name":{"391":{},"710":{},"933":{}},"parent":{}}],["product",{"_index":396,"name":{"392":{},"1327":{},"3419":{},"3489":{},"3669":{},"3807":{}},"parent":{"3420":{},"3610":{},"3611":{},"3612":{},"3781":{},"3782":{},"3783":{},"3925":{},"3926":{}}}],["product.catalogs",{"_index":1645,"name":{},"parent":{"3421":{},"3422":{},"3423":{},"3424":{},"3425":{},"3426":{},"3427":{},"3428":{},"3429":{},"3430":{},"3431":{},"3432":{},"3433":{},"3434":{},"3435":{},"3436":{},"3437":{},"3438":{},"3439":{},"3440":{},"3441":{},"3442":{},"3443":{},"3444":{},"3445":{},"3446":{},"3447":{},"3448":{},"3449":{},"3450":{},"3451":{},"3452":{},"3453":{},"3454":{},"3455":{},"3456":{},"3457":{},"3458":{},"3459":{},"3460":{},"3461":{},"3462":{},"3463":{},"3464":{},"3465":{},"3466":{},"3467":{},"3468":{},"3469":{},"3470":{},"3471":{},"3472":{},"3473":{},"3474":{},"3475":{},"3476":{},"3477":{},"3478":{},"3479":{},"3480":{},"3481":{},"3482":{},"3483":{},"3484":{},"3485":{},"3486":{},"3487":{},"3488":{},"3489":{},"3490":{},"3491":{},"3492":{},"3493":{},"3494":{},"3495":{},"3496":{},"3497":{},"3498":{},"3499":{},"3500":{},"3502":{},"3504":{},"3506":{},"3508":{},"3510":{},"3512":{},"3514":{},"3516":{},"3517":{},"3519":{},"3521":{},"3523":{},"3525":{},"3527":{},"3529":{},"3531":{},"3533":{},"3535":{},"3537":{},"3539":{},"3541":{},"3543":{},"3544":{},"3545":{},"3546":{},"3547":{},"3548":{},"3549":{},"3550":{},"3551":{},"3552":{},"3554":{},"3556":{},"3558":{},"3560":{},"3562":{},"3563":{},"3564":{},"3565":{},"3566":{},"3567":{},"3568":{},"3569":{},"3570":{},"3571":{},"3572":{},"3573":{},"3574":{},"3575":{},"3576":{},"3577":{},"3578":{},"3579":{},"3580":{},"3581":{},"3603":{}}}],["product.catalogs.asynccreated",{"_index":1728,"name":{},"parent":{"3530":{}}}],["product.catalogs.attributedefinition",{"_index":1740,"name":{},"parent":{"3582":{}}}],["product.catalogs.attributedefinition.__type",{"_index":1741,"name":{},"parent":{"3583":{},"3584":{},"3585":{},"3586":{},"3587":{},"3588":{},"3589":{},"3590":{},"3591":{},"3592":{},"3593":{},"3594":{},"3595":{},"3596":{},"3597":{},"3598":{},"3599":{},"3600":{},"3601":{},"3602":{}}}],["product.catalogs.badrequest",{"_index":1716,"name":{},"parent":{"3507":{}}}],["product.catalogs.dateconditionalrequest",{"_index":1726,"name":{},"parent":{"3526":{}}}],["product.catalogs.daterangefilter",{"_index":1722,"name":{},"parent":{"3518":{}}}],["product.catalogs.datetimerangefilter",{"_index":1734,"name":{},"parent":{"3542":{}}}],["product.catalogs.etagconditionalrequest",{"_index":1727,"name":{},"parent":{"3528":{}}}],["product.catalogs.etagresponse",{"_index":1723,"name":{},"parent":{"3520":{}}}],["product.catalogs.integerrangefilter",{"_index":1724,"name":{},"parent":{"3522":{}}}],["product.catalogs.jobexecutionnotfound",{"_index":1719,"name":{},"parent":{"3511":{}}}],["product.catalogs.nopropertiesallowed",{"_index":1739,"name":{},"parent":{"3561":{}}}],["product.catalogs.notfound",{"_index":1714,"name":{},"parent":{"3503":{}}}],["product.catalogs.numericrangefilter",{"_index":1733,"name":{},"parent":{"3540":{}}}],["product.catalogs.offsetpaginated",{"_index":1731,"name":{},"parent":{"3536":{}}}],["product.catalogs.propertyvaluedefinition",{"_index":1742,"name":{},"parent":{"3604":{}}}],["product.catalogs.propertyvaluedefinition.__type",{"_index":1743,"name":{},"parent":{"3605":{},"3606":{},"3607":{},"3608":{},"3609":{}}}],["product.catalogs.queryparamslimit",{"_index":1735,"name":{},"parent":{"3553":{}}}],["product.catalogs.queryparamsoffset",{"_index":1736,"name":{},"parent":{"3555":{}}}],["product.catalogs.rangefilter",{"_index":1732,"name":{},"parent":{"3538":{}}}],["product.catalogs.ratelimited",{"_index":1729,"name":{},"parent":{"3532":{}}}],["product.catalogs.ratelimited2",{"_index":1730,"name":{},"parent":{"3534":{}}}],["product.catalogs.ratelimited3",{"_index":1715,"name":{},"parent":{"3505":{}}}],["product.catalogs.ratelimited4",{"_index":1721,"name":{},"parent":{"3515":{}}}],["product.catalogs.ratelimited5",{"_index":1717,"name":{},"parent":{"3509":{}}}],["product.catalogs.rulenotfound",{"_index":1713,"name":{},"parent":{"3501":{}}}],["product.catalogs.selectable",{"_index":1738,"name":{},"parent":{"3559":{}}}],["product.catalogs.sitespecific",{"_index":1737,"name":{},"parent":{"3557":{}}}],["product.catalogs.synccreated",{"_index":1725,"name":{},"parent":{"3524":{}}}],["product.catalogs.unauthorized",{"_index":1720,"name":{},"parent":{"3513":{}}}],["product.products",{"_index":1745,"name":{},"parent":{"3613":{},"3614":{},"3615":{},"3616":{},"3617":{},"3618":{},"3619":{},"3620":{},"3621":{},"3622":{},"3623":{},"3624":{},"3625":{},"3626":{},"3627":{},"3628":{},"3629":{},"3630":{},"3631":{},"3632":{},"3633":{},"3634":{},"3635":{},"3636":{},"3637":{},"3638":{},"3639":{},"3640":{},"3641":{},"3642":{},"3643":{},"3644":{},"3645":{},"3646":{},"3647":{},"3648":{},"3649":{},"3650":{},"3651":{},"3652":{},"3653":{},"3654":{},"3655":{},"3656":{},"3657":{},"3658":{},"3659":{},"3660":{},"3661":{},"3662":{},"3663":{},"3664":{},"3665":{},"3666":{},"3667":{},"3668":{},"3669":{},"3670":{},"3671":{},"3672":{},"3673":{},"3674":{},"3675":{},"3677":{},"3679":{},"3681":{},"3682":{},"3684":{},"3686":{},"3688":{},"3690":{},"3692":{},"3694":{},"3696":{},"3698":{},"3700":{},"3702":{},"3704":{},"3706":{},"3708":{},"3710":{},"3712":{},"3714":{},"3715":{},"3716":{},"3717":{},"3718":{},"3719":{},"3720":{},"3721":{},"3722":{},"3723":{},"3725":{},"3727":{},"3729":{},"3731":{},"3733":{},"3734":{},"3735":{},"3736":{},"3737":{},"3738":{},"3739":{},"3740":{},"3741":{},"3742":{},"3743":{},"3744":{},"3745":{},"3746":{},"3747":{},"3748":{},"3749":{},"3750":{},"3751":{},"3752":{},"3774":{}}}],["product.products.asynccreated",{"_index":1798,"name":{},"parent":{"3699":{}}}],["product.products.attributedefinition",{"_index":1811,"name":{},"parent":{"3753":{}}}],["product.products.attributedefinition.__type",{"_index":1812,"name":{},"parent":{"3754":{},"3755":{},"3756":{},"3757":{},"3758":{},"3759":{},"3760":{},"3761":{},"3762":{},"3763":{},"3764":{},"3765":{},"3766":{},"3767":{},"3768":{},"3769":{},"3770":{},"3771":{},"3772":{},"3773":{}}}],["product.products.badrequest",{"_index":1787,"name":{},"parent":{"3678":{}}}],["product.products.dateconditionalrequest",{"_index":1795,"name":{},"parent":{"3693":{}}}],["product.products.daterangefilter",{"_index":1790,"name":{},"parent":{"3683":{}}}],["product.products.datetimerangefilter",{"_index":1805,"name":{},"parent":{"3713":{}}}],["product.products.etagconditionalrequest",{"_index":1797,"name":{},"parent":{"3697":{}}}],["product.products.etagresponse",{"_index":1791,"name":{},"parent":{"3685":{}}}],["product.products.integerrangefilter",{"_index":1792,"name":{},"parent":{"3687":{}}}],["product.products.nopropertiesallowed",{"_index":1810,"name":{},"parent":{"3732":{}}}],["product.products.numericrangefilter",{"_index":1804,"name":{},"parent":{"3711":{}}}],["product.products.offsetpaginated",{"_index":1801,"name":{},"parent":{"3705":{}}}],["product.products.productnotfound",{"_index":1789,"name":{},"parent":{"3680":{}}}],["product.products.propertyvaluedefinition",{"_index":1813,"name":{},"parent":{"3775":{}}}],["product.products.propertyvaluedefinition.__type",{"_index":1814,"name":{},"parent":{"3776":{},"3777":{},"3778":{},"3779":{},"3780":{}}}],["product.products.queryparamslimit",{"_index":1806,"name":{},"parent":{"3724":{}}}],["product.products.queryparamsoffset",{"_index":1807,"name":{},"parent":{"3726":{}}}],["product.products.rangefilter",{"_index":1802,"name":{},"parent":{"3707":{}}}],["product.products.ratelimited",{"_index":1799,"name":{},"parent":{"3701":{}}}],["product.products.ratelimited2",{"_index":1800,"name":{},"parent":{"3703":{}}}],["product.products.ratelimited3",{"_index":1793,"name":{},"parent":{"3689":{}}}],["product.products.ratelimited4",{"_index":1803,"name":{},"parent":{"3709":{}}}],["product.products.ratelimited5",{"_index":1796,"name":{},"parent":{"3695":{}}}],["product.products.selectable",{"_index":1809,"name":{},"parent":{"3730":{}}}],["product.products.sitespecific",{"_index":1808,"name":{},"parent":{"3728":{}}}],["product.products.synccreated",{"_index":1794,"name":{},"parent":{"3691":{}}}],["product.products.unauthorized",{"_index":1786,"name":{},"parent":{"3676":{}}}],["product.shopperproducts",{"_index":1816,"name":{},"parent":{"3784":{},"3785":{},"3786":{},"3787":{},"3788":{},"3789":{},"3790":{},"3791":{},"3792":{},"3793":{},"3794":{},"3795":{},"3796":{},"3797":{},"3798":{},"3799":{},"3800":{},"3801":{},"3802":{},"3803":{},"3804":{},"3805":{},"3806":{},"3807":{},"3808":{},"3809":{},"3810":{},"3811":{},"3812":{},"3813":{},"3814":{},"3816":{},"3818":{},"3820":{},"3822":{},"3824":{},"3825":{},"3827":{},"3829":{},"3831":{},"3833":{},"3835":{},"3837":{},"3839":{},"3841":{},"3843":{},"3845":{},"3847":{},"3849":{},"3851":{},"3853":{},"3855":{},"3857":{},"3858":{},"3859":{},"3860":{},"3861":{},"3862":{},"3863":{},"3864":{},"3865":{},"3866":{},"3867":{},"3869":{},"3871":{},"3873":{},"3875":{},"3877":{},"3878":{},"3879":{},"3880":{},"3881":{},"3882":{},"3883":{},"3884":{},"3885":{},"3886":{},"3887":{},"3888":{},"3889":{},"3890":{},"3891":{},"3892":{},"3893":{},"3894":{},"3895":{},"3896":{},"3918":{}}}],["product.shopperproducts.asynccreated",{"_index":1837,"name":{},"parent":{"3842":{}}}],["product.shopperproducts.attributedefinition",{"_index":1850,"name":{},"parent":{"3897":{}}}],["product.shopperproducts.attributedefinition.__type",{"_index":1851,"name":{},"parent":{"3898":{},"3899":{},"3900":{},"3901":{},"3902":{},"3903":{},"3904":{},"3905":{},"3906":{},"3907":{},"3908":{},"3909":{},"3910":{},"3911":{},"3912":{},"3913":{},"3914":{},"3915":{},"3916":{},"3917":{}}}],["product.shopperproducts.badrequest",{"_index":1823,"name":{},"parent":{"3817":{}}}],["product.shopperproducts.badrequest1",{"_index":1825,"name":{},"parent":{"3819":{}}}],["product.shopperproducts.badrequest2",{"_index":1828,"name":{},"parent":{"3823":{}}}],["product.shopperproducts.dateconditionalrequest",{"_index":1834,"name":{},"parent":{"3836":{}}}],["product.shopperproducts.daterangefilter",{"_index":1829,"name":{},"parent":{"3826":{}}}],["product.shopperproducts.datetimerangefilter",{"_index":1844,"name":{},"parent":{"3856":{}}}],["product.shopperproducts.etagconditionalrequest",{"_index":1836,"name":{},"parent":{"3840":{}}}],["product.shopperproducts.etagresponse",{"_index":1830,"name":{},"parent":{"3828":{}}}],["product.shopperproducts.integerrangefilter",{"_index":1831,"name":{},"parent":{"3830":{}}}],["product.shopperproducts.nopropertiesallowed",{"_index":1849,"name":{},"parent":{"3876":{}}}],["product.shopperproducts.notfound",{"_index":1822,"name":{},"parent":{"3815":{}}}],["product.shopperproducts.numericrangefilter",{"_index":1843,"name":{},"parent":{"3854":{}}}],["product.shopperproducts.offsetpaginated",{"_index":1840,"name":{},"parent":{"3848":{}}}],["product.shopperproducts.propertyvaluedefinition",{"_index":1852,"name":{},"parent":{"3919":{}}}],["product.shopperproducts.propertyvaluedefinition.__type",{"_index":1853,"name":{},"parent":{"3920":{},"3921":{},"3922":{},"3923":{},"3924":{}}}],["product.shopperproducts.queryparamslimit",{"_index":1845,"name":{},"parent":{"3868":{}}}],["product.shopperproducts.queryparamsoffset",{"_index":1846,"name":{},"parent":{"3870":{}}}],["product.shopperproducts.rangefilter",{"_index":1841,"name":{},"parent":{"3850":{}}}],["product.shopperproducts.ratelimited",{"_index":1838,"name":{},"parent":{"3844":{}}}],["product.shopperproducts.ratelimited2",{"_index":1839,"name":{},"parent":{"3846":{}}}],["product.shopperproducts.ratelimited3",{"_index":1832,"name":{},"parent":{"3832":{}}}],["product.shopperproducts.ratelimited4",{"_index":1842,"name":{},"parent":{"3852":{}}}],["product.shopperproducts.ratelimited5",{"_index":1835,"name":{},"parent":{"3838":{}}}],["product.shopperproducts.selectable",{"_index":1848,"name":{},"parent":{"3874":{}}}],["product.shopperproducts.sitespecific",{"_index":1847,"name":{},"parent":{"3872":{}}}],["product.shopperproducts.synccreated",{"_index":1833,"name":{},"parent":{"3834":{}}}],["product.shopperproducts.unauthorized",{"_index":1826,"name":{},"parent":{"3821":{}}}],["productdescription",{"_index":510,"name":{"662":{},"885":{}},"parent":{}}],["productdetailslink",{"_index":508,"name":{"660":{},"711":{},"883":{},"934":{},"1298":{}},"parent":{}}],["productid",{"_index":369,"name":{"363":{},"663":{},"886":{}},"parent":{}}],["productitem",{"_index":323,"name":{"320":{},"646":{},"869":{},"1279":{}},"parent":{}}],["productlink",{"_index":758,"name":{"1299":{},"3803":{}},"parent":{}}],["productlist",{"_index":397,"name":{"393":{},"712":{},"935":{}},"parent":{}}],["productlistevent",{"_index":759,"name":{"1302":{}},"parent":{}}],["productlistitemreference",{"_index":392,"name":{"388":{},"707":{},"930":{},"1334":{}},"parent":{}}],["productlistlink",{"_index":521,"name":{"679":{},"902":{},"1320":{}},"parent":{}}],["productlistreference",{"_index":384,"name":{"376":{}},"parent":{}}],["productlistregistrant",{"_index":776,"name":{"1325":{}},"parent":{}}],["productlistshippingaddress",{"_index":745,"name":{"1278":{}},"parent":{}}],["productname",{"_index":371,"name":{"364":{},"664":{},"887":{}},"parent":{}}],["productnotfound",{"_index":1788,"name":{"3679":{}},"parent":{}}],["productoption",{"_index":1681,"name":{"3459":{},"3652":{}},"parent":{}}],["productoptions",{"_index":1703,"name":{"3488":{},"3668":{}},"parent":{}}],["productoptionvalue",{"_index":1692,"name":{"3475":{},"3661":{}},"parent":{}}],["productoptionvalues",{"_index":1706,"name":{"3493":{},"3672":{}},"parent":{}}],["productpricetable",{"_index":1130,"name":{"2092":{},"3790":{}},"parent":{}}],["productpromotion",{"_index":779,"name":{"1330":{},"2116":{},"3810":{}},"parent":{}}],["productref",{"_index":1131,"name":{"2093":{},"3989":{}},"parent":{}}],["productreference",{"_index":367,"name":{"361":{}},"parent":{}}],["productresult",{"_index":1821,"name":{"3802":{}},"parent":{}}],["products",{"_index":1744,"name":{"3612":{}},"parent":{}}],["productsearch",{"_index":1104,"name":{"1988":{},"3930":{}},"parent":{}}],["productsearchhit",{"_index":1145,"name":{"2112":{},"4004":{}},"parent":{}}],["productsearchrefinement",{"_index":1143,"name":{"2110":{},"4002":{}},"parent":{}}],["productsearchrefinementvalue",{"_index":1140,"name":{"2106":{},"3999":{}},"parent":{}}],["productsearchresult",{"_index":1146,"name":{"2113":{},"3667":{},"4005":{}},"parent":{}}],["productsearchsortingoption",{"_index":1141,"name":{"2107":{},"4000":{}},"parent":{}}],["productsuggestions",{"_index":1137,"name":{"2100":{},"3995":{}},"parent":{}}],["producttype",{"_index":750,"name":{"1285":{},"2102":{},"3471":{},"3658":{},"3798":{},"3997":{}},"parent":{}}],["promotion",{"_index":1237,"name":{"2301":{},"2309":{},"2908":{},"2916":{},"3176":{}},"parent":{}}],["promotionabtestgroupassignment",{"_index":1265,"name":{"2335":{},"2941":{}},"parent":{}}],["promotionassignmentinformation",{"_index":1245,"name":{"2310":{},"2917":{}},"parent":{}}],["promotioncampaignassignment",{"_index":1230,"name":{"2293":{},"2900":{}},"parent":{}}],["promotioncampaignassignmentsearchresult",{"_index":1261,"name":{"2330":{}},"parent":{}}],["promotionid",{"_index":495,"name":{"642":{},"865":{},"2302":{},"2909":{}},"parent":{}}],["promotionidconflict",{"_index":1502,"name":{"2951":{}},"parent":{}}],["promotionlink",{"_index":491,"name":{"638":{},"861":{}},"parent":{}}],["promotionnotfound",{"_index":1500,"name":{"2949":{},"3183":{}},"parent":{}}],["promotionresult",{"_index":1565,"name":{"3177":{}},"parent":{}}],["promotions",{"_index":1478,"name":{"2886":{}},"parent":{}}],["promotionsearchresult",{"_index":1485,"name":{"2894":{}},"parent":{}}],["promotionssearch",{"_index":1480,"name":{"2888":{}},"parent":{}}],["propertydefinition",{"_index":165,"name":{"163":{},"401":{},"546":{},"769":{},"1052":{},"1164":{},"1386":{},"1525":{},"1597":{},"1994":{},"2174":{},"2382":{},"2496":{},"2676":{},"2805":{},"2992":{},"3106":{},"3225":{},"3354":{},"3547":{},"3718":{},"3862":{},"4025":{}},"parent":{}}],["propertyvaluedefinition",{"_index":222,"name":{"220":{},"458":{},"603":{},"826":{},"1108":{},"1220":{},"1442":{},"1579":{},"1654":{},"2051":{},"2230":{},"2438":{},"2552":{},"2732":{},"2861":{},"3048":{},"3162":{},"3281":{},"3410":{},"3603":{},"3774":{},"3918":{},"4082":{}},"parent":{}}],["public",{"_index":387,"name":{"380":{},"394":{},"713":{},"936":{}},"parent":{}}],["publicproductlist",{"_index":767,"name":{"1312":{}},"parent":{}}],["publicproductlistinfo",{"_index":747,"name":{"1281":{}},"parent":{}}],["publicproductlistitem",{"_index":757,"name":{"1297":{}},"parent":{}}],["publicproductlistresult",{"_index":739,"name":{"1267":{}},"parent":{}}],["purchasedquantity",{"_index":398,"name":{"395":{},"714":{},"937":{}},"parent":{}}],["quantity",{"_index":399,"name":{"396":{},"715":{},"938":{}},"parent":{}}],["query",{"_index":186,"name":{"184":{},"422":{},"567":{},"790":{},"1073":{},"1185":{},"1407":{},"1544":{},"1618":{},"1818":{},"1911":{},"2015":{},"2195":{},"2403":{},"2517":{},"2697":{},"2826":{},"3013":{},"3127":{},"3246":{},"3375":{},"3568":{},"3739":{},"3883":{},"3953":{},"4046":{}},"parent":{}}],["queryfilter",{"_index":185,"name":{"183":{},"421":{},"566":{},"789":{},"1072":{},"1184":{},"1406":{},"1543":{},"1617":{},"1817":{},"2014":{},"2194":{},"2402":{},"2516":{},"2696":{},"2825":{},"3012":{},"3126":{},"3245":{},"3374":{},"3567":{},"3738":{},"3882":{},"3952":{},"4045":{}},"parent":{}}],["queryinput",{"_index":1037,"name":{"1909":{}},"parent":{}}],["queryoutput",{"_index":1028,"name":{"1901":{}},"parent":{}}],["queryparamslimit",{"_index":170,"name":{"168":{},"406":{},"551":{},"774":{},"1057":{},"1169":{},"1391":{},"1530":{},"1602":{},"1804":{},"1999":{},"2179":{},"2387":{},"2501":{},"2681":{},"2810":{},"2997":{},"3111":{},"3230":{},"3359":{},"3552":{},"3723":{},"3867":{},"3939":{},"4030":{}},"parent":{}}],["queryparamsoffset",{"_index":172,"name":{"170":{},"408":{},"553":{},"776":{},"1059":{},"1171":{},"1393":{},"1532":{},"1604":{},"1806":{},"2001":{},"2181":{},"2389":{},"2503":{},"2683":{},"2812":{},"2999":{},"3113":{},"3232":{},"3361":{},"3554":{},"3725":{},"3869":{},"3941":{},"4032":{}},"parent":{}}],["querytype",{"_index":1022,"name":{"1891":{},"1898":{}},"parent":{}}],["range2filter",{"_index":190,"name":{"188":{},"426":{},"571":{},"794":{},"1077":{},"1189":{},"1411":{},"1548":{},"1622":{},"1822":{},"2019":{},"2199":{},"2407":{},"2521":{},"2701":{},"2830":{},"3017":{},"3131":{},"3250":{},"3379":{},"3572":{},"3743":{},"3887":{},"3957":{},"4050":{}},"parent":{}}],["rangefacetinput",{"_index":1060,"name":{"1937":{}},"parent":{}}],["rangefacetoutput",{"_index":1062,"name":{"1939":{}},"parent":{}}],["rangefilter",{"_index":196,"name":{"194":{},"432":{},"577":{},"800":{},"1039":{},"1151":{},"1361":{},"1512":{},"1628":{},"1757":{},"1828":{},"2025":{},"2161":{},"2369":{},"2483":{},"2663":{},"2793":{},"2979":{},"3093":{},"3213":{},"3341":{},"3537":{},"3706":{},"3849":{},"3963":{},"4056":{}},"parent":{}}],["rangerefinement",{"_index":1052,"name":{"1925":{}},"parent":{}}],["rank",{"_index":1238,"name":{"2303":{},"2910":{}},"parent":{}}],["rate",{"_index":534,"name":{"700":{},"923":{}},"parent":{}}],["ratelimited",{"_index":154,"name":{"152":{},"484":{},"736":{},"959":{},"1033":{},"1145":{},"1355":{},"1506":{},"1688":{},"1751":{},"1790":{},"2078":{},"2155":{},"2363":{},"2477":{},"2657":{},"2787":{},"2973":{},"3087":{},"3207":{},"3335":{},"3531":{},"3700":{},"3843":{},"3981":{},"4109":{}},"parent":{}}],["ratelimited2",{"_index":156,"name":{"154":{},"486":{},"738":{},"961":{},"1035":{},"1147":{},"1357":{},"1508":{},"1690":{},"1753":{},"1792":{},"2080":{},"2157":{},"2365":{},"2479":{},"2659":{},"2789":{},"2975":{},"3089":{},"3209":{},"3337":{},"3533":{},"3702":{},"3845":{},"3983":{},"4111":{}},"parent":{}}],["ratelimited3",{"_index":142,"name":{"140":{},"472":{},"724":{},"947":{},"1021":{},"1133":{},"1343":{},"1494":{},"1676":{},"1739":{},"1778":{},"2066":{},"2143":{},"2351":{},"2465":{},"2645":{},"2775":{},"2961":{},"3075":{},"3195":{},"3323":{},"3504":{},"3688":{},"3831":{},"3969":{},"4097":{}},"parent":{}}],["ratelimited4",{"_index":160,"name":{"158":{},"490":{},"742":{},"965":{},"1041":{},"1153":{},"1363":{},"1514":{},"1694":{},"1759":{},"1796":{},"2084":{},"2163":{},"2371":{},"2485":{},"2665":{},"2795":{},"2981":{},"3095":{},"3215":{},"3343":{},"3514":{},"3708":{},"3851":{},"3987":{},"4115":{}},"parent":{}}],["ratelimited5",{"_index":148,"name":{"146":{},"478":{},"730":{},"953":{},"1027":{},"1139":{},"1349":{},"1500":{},"1682":{},"1745":{},"1784":{},"2072":{},"2149":{},"2357":{},"2471":{},"2651":{},"2781":{},"2967":{},"3081":{},"3201":{},"3329":{},"3508":{},"3694":{},"3837":{},"3975":{},"4103":{}},"parent":{}}],["ratelimitexceeded",{"_index":1013,"name":{"1879":{}},"parent":{}}],["ratelimitingrule",{"_index":115,"name":{"114":{}},"parent":{}}],["ratelimitingruleenvelope",{"_index":69,"name":{"68":{}},"parent":{}}],["ratelimitingrulesenvelope",{"_index":94,"name":{"93":{}},"parent":{}}],["ratelimitingrulespatchrequest",{"_index":92,"name":{"91":{}},"parent":{}}],["ratelimitingrulespostrequest",{"_index":74,"name":{"73":{}},"parent":{}}],["recentsearchphrases",{"_index":1098,"name":{"1981":{}},"parent":{}}],["recommendation",{"_index":752,"name":{"1287":{},"3799":{}},"parent":{}}],["recommendationtype",{"_index":749,"name":{"1283":{},"3797":{}},"parent":{}}],["recurrence",{"_index":1260,"name":{"2328":{},"2331":{},"2935":{},"2937":{}},"parent":{}}],["redeemcoupon",{"_index":1337,"name":{"2571":{}},"parent":{}}],["redemptioncount",{"_index":1369,"name":{"2607":{},"2622":{}},"parent":{}}],["redemptionlimitperperiod",{"_index":1361,"name":{"2599":{}},"parent":{}}],["redemptionlimits",{"_index":1348,"name":{"2586":{},"2623":{}},"parent":{}}],["redemptiontimeframe",{"_index":1364,"name":{"2602":{}},"parent":{}}],["refinement",{"_index":1045,"name":{"1919":{}},"parent":{}}],["refinements",{"_index":1040,"name":{"1912":{}},"parent":{}}],["refinementtype",{"_index":1051,"name":{"1924":{},"1930":{}},"parent":{}}],["refreshaccesstoken",{"_index":1216,"name":{"2278":{}},"parent":{}}],["refreshaccesstokenprivate",{"_index":1217,"name":{"2279":{}},"parent":{}}],["region",{"_index":1157,"name":{"2133":{}},"parent":{}}],["registerclient",{"_index":911,"name":{"1710":{}},"parent":{}}],["registercustomer",{"_index":706,"name":{"1231":{}},"parent":{}}],["registerexternalprofile",{"_index":709,"name":{"1234":{}},"parent":{}}],["registeridentityprovider",{"_index":918,"name":{"1717":{}},"parent":{}}],["registerpwdlesstemplate",{"_index":914,"name":{"1713":{}},"parent":{}}],["registertenant",{"_index":908,"name":{"1707":{}},"parent":{}}],["regularexpression",{"_index":214,"name":{"211":{},"449":{},"594":{},"817":{},"1099":{},"1211":{},"1433":{},"1570":{},"1645":{},"2042":{},"2221":{},"2429":{},"2543":{},"2723":{},"2852":{},"3039":{},"3153":{},"3272":{},"3401":{},"3594":{},"3765":{},"3909":{},"4073":{}},"parent":{}}],["relevancesorting",{"_index":1076,"name":{"1959":{}},"parent":{}}],["removeaddressforcustomerincustomerlist",{"_index":625,"name":{"987":{}},"parent":{}}],["removecouponfrombasket",{"_index":442,"name":{"511":{}},"parent":{}}],["removecustomeraddress",{"_index":715,"name":{"1240":{}},"parent":{}}],["removegiftcertificateitemfrombasket",{"_index":445,"name":{"514":{}},"parent":{}}],["removeitemfrombasket",{"_index":449,"name":{"518":{}},"parent":{}}],["removepaymentinstrumentfrombasket",{"_index":453,"name":{"522":{}},"parent":{}}],["removepaymentinstrumentfromorder",{"_index":559,"name":{"758":{}},"parent":{}}],["removepriceadjustmentfrombasket",{"_index":457,"name":{"526":{}},"parent":{}}],["removeproductsfromexclusionlist",{"_index":1663,"name":{"3439":{}},"parent":{}}],["removeshipmentfrombasket",{"_index":462,"name":{"531":{}},"parent":{}}],["requestlimit",{"_index":1015,"name":{"1881":{}},"parent":{}}],["resetpassword",{"_index":707,"name":{"1232":{},"1463":{}},"parent":{}}],["resetpasswordrequest",{"_index":742,"name":{"1270":{}},"parent":{}}],["resetpasswordtoken",{"_index":743,"name":{"1274":{}},"parent":{}}],["resetpasswordtokenrequest",{"_index":773,"name":{"1319":{}},"parent":{}}],["resourcebadrequest",{"_index":990,"name":{"1853":{}},"parent":{}}],["resourcecommonerrors",{"_index":976,"name":{"1840":{}},"parent":{}}],["resourceinvalidrequest",{"_index":994,"name":{"1857":{}},"parent":{}}],["resourcelink",{"_index":969,"name":{"1833":{}},"parent":{}}],["resourcenonreadablehttpmessage",{"_index":992,"name":{"1855":{}},"parent":{}}],["result",{"_index":1084,"name":{"1969":{}},"parent":{}}],["retrieveclient",{"_index":910,"name":{"1709":{}},"parent":{}}],["retrieveclients",{"_index":909,"name":{"1708":{}},"parent":{}}],["retrieveidentityprovider",{"_index":917,"name":{"1716":{}},"parent":{}}],["retrieveidentityproviders",{"_index":916,"name":{"1715":{}},"parent":{}}],["retrievepwdlesstemplate",{"_index":913,"name":{"1712":{}},"parent":{}}],["retrieveresults",{"_index":950,"name":{"1772":{}},"parent":{}}],["retrievetenant",{"_index":907,"name":{"1706":{}},"parent":{}}],["returnedattributes",{"_index":1041,"name":{"1913":{},"1965":{}},"parent":{}}],["revoketoken",{"_index":829,"name":{"1465":{}},"parent":{}}],["rule",{"_index":1691,"name":{"3472":{}},"parent":{}}],["rulenotfound",{"_index":1712,"name":{"3500":{}},"parent":{}}],["ruleposition",{"_index":81,"name":{"80":{}},"parent":{}}],["rulerequest",{"_index":1688,"name":{"3468":{}},"parent":{}}],["rulesrequest",{"_index":1685,"name":{"3464":{}},"parent":{}}],["rulesresult",{"_index":1678,"name":{"3456":{}},"parent":{}}],["runcategoryrules",{"_index":1659,"name":{"3435":{}},"parent":{}}],["scale",{"_index":215,"name":{"212":{},"450":{},"595":{},"818":{},"1100":{},"1212":{},"1434":{},"1571":{},"1646":{},"2043":{},"2222":{},"2430":{},"2544":{},"2724":{},"2853":{},"3040":{},"3154":{},"3273":{},"3402":{},"3595":{},"3766":{},"3910":{},"4074":{}},"parent":{}}],["schedule",{"_index":1239,"name":{"2304":{},"2320":{},"2325":{},"2340":{},"2911":{},"2927":{},"2932":{},"2946":{}},"parent":{}}],["scheduletype",{"_index":1254,"name":{"2321":{},"2928":{}},"parent":{}}],["sdklogger",{"_index":1908,"name":{"4134":{}},"parent":{}}],["search",{"_index":1854,"name":{"3927":{}},"parent":{"3928":{},"4012":{},"4013":{}}}],["search.shoppersearch",{"_index":1855,"name":{},"parent":{"3929":{},"3930":{},"3931":{},"3932":{},"3933":{},"3934":{},"3935":{},"3936":{},"3937":{},"3938":{},"3939":{},"3941":{},"3943":{},"3945":{},"3947":{},"3948":{},"3949":{},"3950":{},"3951":{},"3952":{},"3953":{},"3954":{},"3955":{},"3956":{},"3957":{},"3958":{},"3959":{},"3960":{},"3961":{},"3962":{},"3963":{},"3964":{},"3965":{},"3966":{},"3967":{},"3969":{},"3971":{},"3973":{},"3975":{},"3977":{},"3979":{},"3981":{},"3983":{},"3985":{},"3987":{},"3989":{},"3990":{},"3991":{},"3992":{},"3993":{},"3994":{},"3995":{},"3996":{},"3997":{},"3998":{},"3999":{},"4000":{},"4001":{},"4002":{},"4003":{},"4004":{},"4005":{},"4006":{},"4007":{},"4008":{},"4009":{},"4010":{}}}],["search.shoppersearch.asynccreated",{"_index":1866,"name":{},"parent":{"3980":{}}}],["search.shoppersearch.badrequest",{"_index":1871,"name":{},"parent":{"4011":{}}}],["search.shoppersearch.dateconditionalrequest",{"_index":1863,"name":{},"parent":{"3974":{}}}],["search.shoppersearch.etagconditionalrequest",{"_index":1865,"name":{},"parent":{"3978":{}}}],["search.shoppersearch.etagresponse",{"_index":1860,"name":{},"parent":{"3968":{}}}],["search.shoppersearch.nopropertiesallowed",{"_index":1859,"name":{},"parent":{"3946":{}}}],["search.shoppersearch.offsetpaginated",{"_index":1869,"name":{},"parent":{"3986":{}}}],["search.shoppersearch.queryparamslimit",{"_index":1856,"name":{},"parent":{"3940":{}}}],["search.shoppersearch.queryparamsoffset",{"_index":1857,"name":{},"parent":{"3942":{}}}],["search.shoppersearch.ratelimited",{"_index":1867,"name":{},"parent":{"3982":{}}}],["search.shoppersearch.ratelimited2",{"_index":1868,"name":{},"parent":{"3984":{}}}],["search.shoppersearch.ratelimited3",{"_index":1861,"name":{},"parent":{"3970":{}}}],["search.shoppersearch.ratelimited4",{"_index":1870,"name":{},"parent":{"3988":{}}}],["search.shoppersearch.ratelimited5",{"_index":1864,"name":{},"parent":{"3976":{}}}],["search.shoppersearch.sitespecific",{"_index":1858,"name":{},"parent":{"3944":{}}}],["search.shoppersearch.synccreated",{"_index":1862,"name":{},"parent":{"3972":{}}}],["searchable",{"_index":216,"name":{"213":{},"451":{},"596":{},"819":{},"1101":{},"1213":{},"1435":{},"1572":{},"1647":{},"2044":{},"2223":{},"2431":{},"2545":{},"2725":{},"2854":{},"3041":{},"3155":{},"3274":{},"3403":{},"3596":{},"3767":{},"3911":{},"4075":{}},"parent":{}}],["searchcatalogs",{"_index":1676,"name":{"3452":{}},"parent":{}}],["searchcategories",{"_index":1677,"name":{"3453":{}},"parent":{}}],["searchcategoriesincatalog",{"_index":1675,"name":{"3451":{}},"parent":{}}],["searchcustomergroup",{"_index":627,"name":{"989":{}},"parent":{}}],["searchcustomerincustomerlist",{"_index":616,"name":{"978":{}},"parent":{}}],["searchproducts",{"_index":1780,"name":{"3648":{}},"parent":{}}],["searchproductsassignedtocategory",{"_index":1654,"name":{"3430":{}},"parent":{}}],["searchproductvariations",{"_index":1750,"name":{"3618":{}},"parent":{}}],["searchrequest",{"_index":164,"name":{"162":{},"400":{},"545":{},"768":{},"1051":{},"1163":{},"1385":{},"1524":{},"1596":{},"1800":{},"1993":{},"2173":{},"2381":{},"2495":{},"2675":{},"2804":{},"2991":{},"3105":{},"3224":{},"3353":{},"3546":{},"3717":{},"3861":{},"3935":{},"4024":{}},"parent":{}}],["searchrequestbase",{"_index":197,"name":{"195":{},"433":{},"578":{},"801":{},"1083":{},"1195":{},"1417":{},"1554":{},"1629":{},"1829":{},"2026":{},"2205":{},"2413":{},"2527":{},"2707":{},"2836":{},"3023":{},"3137":{},"3256":{},"3385":{},"3578":{},"3749":{},"3893":{},"3964":{},"4057":{}},"parent":{}}],["searchstores",{"_index":1875,"name":{"4017":{}},"parent":{}}],["securitysetting",{"_index":107,"name":{"106":{}},"parent":{}}],["securitysettingsenvelope",{"_index":80,"name":{"79":{}},"parent":{}}],["segmentdescription",{"_index":1269,"name":{"2341":{},"2947":{}},"parent":{}}],["segmentid",{"_index":349,"name":{"344":{},"2342":{},"2948":{}},"parent":{}}],["selectable",{"_index":176,"name":{"174":{},"412":{},"557":{},"780":{},"1063":{},"1175":{},"1397":{},"1608":{},"2005":{},"2185":{},"2393":{},"2507":{},"2687":{},"2816":{},"3003":{},"3117":{},"3236":{},"3365":{},"3558":{},"3729":{},"3873":{},"4036":{}},"parent":{}}],["self",{"_index":978,"name":{"1842":{},"1847":{},"1851":{}},"parent":{}}],["selfresourcelink",{"_index":982,"name":{"1845":{}},"parent":{}}],["seller",{"_index":1872,"name":{"4014":{}},"parent":{"4015":{},"4129":{},"4130":{}}}],["seller.shopperstores",{"_index":1874,"name":{},"parent":{"4016":{},"4017":{},"4018":{},"4019":{},"4020":{},"4022":{},"4023":{},"4024":{},"4025":{},"4026":{},"4027":{},"4028":{},"4029":{},"4030":{},"4032":{},"4034":{},"4036":{},"4038":{},"4040":{},"4041":{},"4042":{},"4043":{},"4044":{},"4045":{},"4046":{},"4047":{},"4048":{},"4049":{},"4050":{},"4051":{},"4052":{},"4053":{},"4054":{},"4055":{},"4056":{},"4057":{},"4058":{},"4059":{},"4060":{},"4082":{},"4089":{},"4090":{},"4091":{},"4093":{},"4095":{},"4097":{},"4099":{},"4101":{},"4103":{},"4105":{},"4107":{},"4109":{},"4111":{},"4113":{},"4115":{},"4117":{},"4119":{},"4121":{},"4122":{},"4123":{},"4124":{},"4125":{},"4127":{}}}],["seller.shopperstores.asynccreated",{"_index":1895,"name":{},"parent":{"4108":{}}}],["seller.shopperstores.attributedefinition",{"_index":1883,"name":{},"parent":{"4061":{}}}],["seller.shopperstores.attributedefinition.__type",{"_index":1884,"name":{},"parent":{"4062":{},"4063":{},"4064":{},"4065":{},"4066":{},"4067":{},"4068":{},"4069":{},"4070":{},"4071":{},"4072":{},"4073":{},"4074":{},"4075":{},"4076":{},"4077":{},"4078":{},"4079":{},"4080":{},"4081":{}}}],["seller.shopperstores.badrequest",{"_index":1904,"name":{},"parent":{"4126":{}}}],["seller.shopperstores.dateconditionalrequest",{"_index":1892,"name":{},"parent":{"4102":{}}}],["seller.shopperstores.daterangefilter",{"_index":1887,"name":{},"parent":{"4092":{}}}],["seller.shopperstores.datetimerangefilter",{"_index":1901,"name":{},"parent":{"4120":{}}}],["seller.shopperstores.etagconditionalrequest",{"_index":1894,"name":{},"parent":{"4106":{}}}],["seller.shopperstores.etagresponse",{"_index":1888,"name":{},"parent":{"4094":{}}}],["seller.shopperstores.integerrangefilter",{"_index":1889,"name":{},"parent":{"4096":{}}}],["seller.shopperstores.localespecific",{"_index":1877,"name":{},"parent":{"4021":{}}}],["seller.shopperstores.nopropertiesallowed",{"_index":1882,"name":{},"parent":{"4039":{}}}],["seller.shopperstores.numericrangefilter",{"_index":1900,"name":{},"parent":{"4118":{}}}],["seller.shopperstores.offsetpaginated",{"_index":1898,"name":{},"parent":{"4114":{}}}],["seller.shopperstores.propertyvaluedefinition",{"_index":1885,"name":{},"parent":{"4083":{}}}],["seller.shopperstores.propertyvaluedefinition.__type",{"_index":1886,"name":{},"parent":{"4084":{},"4085":{},"4086":{},"4087":{},"4088":{}}}],["seller.shopperstores.queryparamslimit",{"_index":1878,"name":{},"parent":{"4031":{}}}],["seller.shopperstores.queryparamsoffset",{"_index":1879,"name":{},"parent":{"4033":{}}}],["seller.shopperstores.ratelimited",{"_index":1896,"name":{},"parent":{"4110":{}}}],["seller.shopperstores.ratelimited2",{"_index":1897,"name":{},"parent":{"4112":{}}}],["seller.shopperstores.ratelimited3",{"_index":1890,"name":{},"parent":{"4098":{}}}],["seller.shopperstores.ratelimited4",{"_index":1899,"name":{},"parent":{"4116":{}}}],["seller.shopperstores.ratelimited5",{"_index":1893,"name":{},"parent":{"4104":{}}}],["seller.shopperstores.selectable",{"_index":1881,"name":{},"parent":{"4037":{}}}],["seller.shopperstores.sitespecific",{"_index":1880,"name":{},"parent":{"4035":{}}}],["seller.shopperstores.synccreated",{"_index":1891,"name":{},"parent":{"4100":{}}}],["seller.shopperstores.unauthorized",{"_index":1905,"name":{},"parent":{"4128":{}}}],["serviceunavailable",{"_index":1009,"name":{"1875":{}},"parent":{}}],["sessionbridgetokenrequest",{"_index":846,"name":{"1483":{}},"parent":{}}],["shipment",{"_index":326,"name":{"323":{},"654":{},"877":{},"1291":{}},"parent":{}}],["shipmentid",{"_index":374,"name":{"367":{}},"parent":{}}],["shipmentnotfound",{"_index":258,"name":{"259":{}},"parent":{}}],["shippingaddress",{"_index":377,"name":{"369":{}},"parent":{}}],["shippingaddressupdaterequest",{"_index":325,"name":{"322":{}},"parent":{}}],["shippingitem",{"_index":298,"name":{"297":{},"628":{},"851":{},"1272":{}},"parent":{}}],["shippingmethod",{"_index":376,"name":{"368":{},"667":{},"890":{},"1301":{}},"parent":{}}],["shippingmethodreference",{"_index":320,"name":{"317":{}},"parent":{}}],["shippingmethodresult",{"_index":507,"name":{"659":{},"882":{}},"parent":{}}],["shippingpromotion",{"_index":498,"name":{"645":{},"868":{},"1276":{}},"parent":{}}],["shippingtotal",{"_index":378,"name":{"370":{}},"parent":{}}],["shopperbaskets",{"_index":431,"name":{"500":{}},"parent":{}}],["shoppercontext",{"_index":673,"name":{"1117":{},"1124":{}},"parent":{}}],["shoppercustomers",{"_index":704,"name":{"1229":{}},"parent":{}}],["shopperdiscoverysearch",{"_index":948,"name":{"1770":{}},"parent":{}}],["shopperexperience",{"_index":1151,"name":{"2126":{}},"parent":{}}],["shoppergiftcertificates",{"_index":1529,"name":{"3057":{}},"parent":{}}],["shopperlogin",{"_index":816,"name":{"1451":{}},"parent":{}}],["shopperorders",{"_index":554,"name":{"752":{}},"parent":{}}],["shopperproducts",{"_index":1815,"name":{"3783":{}},"parent":{}}],["shopperpromotions",{"_index":1561,"name":{"3171":{}},"parent":{}}],["shoppersearch",{"_index":1102,"name":{"1986":{},"3928":{}},"parent":{}}],["shopperseo",{"_index":873,"name":{"1588":{}},"parent":{}}],["shopperstores",{"_index":1873,"name":{"4015":{}},"parent":{}}],["shortcode",{"_index":1200,"name":{"2255":{}},"parent":{}}],["simplelink",{"_index":505,"name":{"656":{},"879":{},"1294":{}},"parent":{}}],["simplesearchresult",{"_index":163,"name":{"161":{},"399":{},"544":{},"767":{},"1050":{},"1162":{},"1384":{},"1523":{},"1595":{},"1799":{},"1992":{},"2172":{},"2380":{},"2494":{},"2674":{},"2803":{},"2990":{},"3104":{},"3223":{},"3352":{},"3545":{},"3716":{},"3860":{},"3934":{},"4023":{}},"parent":{}}],["simplesearchresultbase",{"_index":192,"name":{"190":{},"428":{},"573":{},"796":{},"1079":{},"1191":{},"1413":{},"1550":{},"1624":{},"1824":{},"2021":{},"2201":{},"2409":{},"2523":{},"2703":{},"2832":{},"3019":{},"3133":{},"3252":{},"3381":{},"3574":{},"3745":{},"3889":{},"3959":{},"4052":{}},"parent":{}}],["singlecode",{"_index":1379,"name":{"2624":{}},"parent":{}}],["site",{"_index":1702,"name":{"3487":{}},"parent":{}}],["sitenotfound",{"_index":246,"name":{"247":{}},"parent":{}}],["sitespecific",{"_index":174,"name":{"172":{},"214":{},"410":{},"452":{},"555":{},"597":{},"778":{},"820":{},"1061":{},"1102":{},"1173":{},"1214":{},"1395":{},"1436":{},"1534":{},"1573":{},"1606":{},"1648":{},"1808":{},"2003":{},"2045":{},"2183":{},"2224":{},"2391":{},"2432":{},"2505":{},"2546":{},"2685":{},"2726":{},"2814":{},"2855":{},"3001":{},"3042":{},"3115":{},"3156":{},"3234":{},"3275":{},"3363":{},"3404":{},"3556":{},"3597":{},"3727":{},"3768":{},"3871":{},"3912":{},"3943":{},"4034":{},"4076":{}},"parent":{}}],["slasadmin",{"_index":905,"name":{"1704":{}},"parent":{}}],["slasratelimit",{"_index":847,"name":{"1484":{}},"parent":{}}],["sort",{"_index":195,"name":{"193":{},"431":{},"576":{},"799":{},"1082":{},"1194":{},"1416":{},"1553":{},"1627":{},"1827":{},"2024":{},"2204":{},"2412":{},"2526":{},"2706":{},"2835":{},"3022":{},"3136":{},"3255":{},"3384":{},"3577":{},"3748":{},"3892":{},"3962":{},"4055":{}},"parent":{}}],["sorting",{"_index":1044,"name":{"1917":{},"1953":{}},"parent":{}}],["sortingrule",{"_index":1690,"name":{"3470":{}},"parent":{}}],["sortingrulestep",{"_index":1711,"name":{"3498":{}},"parent":{}}],["sorttype",{"_index":1075,"name":{"1958":{}},"parent":{}}],["sourcecodegroup",{"_index":1601,"name":{"3298":{}},"parent":{}}],["sourcecodegroupinvalid",{"_index":1614,"name":{"3309":{}},"parent":{}}],["sourcecodegroupnotfound",{"_index":1612,"name":{"3307":{}},"parent":{}}],["sourcecodegroups",{"_index":1240,"name":{"2305":{},"2912":{},"3290":{}},"parent":{}}],["sourcecodegroupsearchresult",{"_index":1602,"name":{"3299":{}},"parent":{}}],["sourcecodegroupssearch",{"_index":1600,"name":{"3296":{}},"parent":{}}],["sourcecoderedirectinfo",{"_index":1603,"name":{"3300":{}},"parent":{}}],["sourcecodespecification",{"_index":1608,"name":{"3304":{}},"parent":{}}],["specifiedpropertiesallowed",{"_index":180,"name":{"178":{},"416":{},"561":{},"784":{},"1067":{},"1179":{},"1401":{},"1538":{},"1612":{},"1812":{},"2009":{},"2189":{},"2397":{},"2511":{},"2691":{},"2820":{},"3007":{},"3121":{},"3240":{},"3369":{},"3562":{},"3733":{},"3877":{},"3947":{},"4040":{}},"parent":{}}],["speedsetting",{"_index":86,"name":{"85":{}},"parent":{}}],["speedsettingsenvelope",{"_index":63,"name":{"62":{}},"parent":{}}],["startdate",{"_index":1255,"name":{"2322":{},"2329":{},"2929":{},"2936":{}},"parent":{}}],["status",{"_index":282,"name":{"283":{},"306":{},"334":{},"339":{},"355":{},"358":{},"383":{},"387":{},"702":{},"706":{},"925":{},"929":{},"1332":{}},"parent":{}}],["statuscode",{"_index":314,"name":{"312":{}},"parent":{}}],["statustransitionconflict",{"_index":250,"name":{"251":{}},"parent":{}}],["store",{"_index":1903,"name":{"4124":{}},"parent":{}}],["storefrontzonecreateenvelope",{"_index":117,"name":{"116":{}},"parent":{}}],["storefrontzonecreaterequest",{"_index":71,"name":{"70":{}},"parent":{}}],["storefrontzonecreateresponse",{"_index":60,"name":{"59":{}},"parent":{}}],["storeresult",{"_index":1902,"name":{"4123":{}},"parent":{}}],["stringtobase64",{"_index":1207,"name":{"2269":{}},"parent":{}}],["subject",{"_index":356,"name":{"350":{},"635":{},"858":{}},"parent":{}}],["suggestedcategory",{"_index":1138,"name":{"2101":{},"3996":{}},"parent":{}}],["suggestedphrase",{"_index":1136,"name":{"2098":{},"3993":{}},"parent":{}}],["suggestedproduct",{"_index":1135,"name":{"2097":{},"3992":{}},"parent":{}}],["suggestedsearchphrases",{"_index":1100,"name":{"1982":{}},"parent":{}}],["suggestedterm",{"_index":1142,"name":{"2109":{},"4001":{}},"parent":{}}],["suggestedterms",{"_index":1132,"name":{"2094":{},"3990":{}},"parent":{}}],["suggestion",{"_index":1092,"name":{"1976":{},"2117":{},"4008":{}},"parent":{}}],["suggestionresult",{"_index":1147,"name":{"2118":{},"4009":{}},"parent":{}}],["suggestions",{"_index":1096,"name":{"1979":{}},"parent":{}}],["synccreated",{"_index":144,"name":{"142":{},"474":{},"726":{},"949":{},"1023":{},"1135":{},"1345":{},"1496":{},"1678":{},"1741":{},"1780":{},"2068":{},"2145":{},"2353":{},"2467":{},"2647":{},"2777":{},"2963":{},"3077":{},"3197":{},"3325":{},"3523":{},"3690":{},"3833":{},"3971":{},"4099":{}},"parent":{}}],["system",{"_index":217,"name":{"215":{},"453":{},"598":{},"821":{},"1103":{},"1215":{},"1437":{},"1574":{},"1649":{},"2046":{},"2225":{},"2433":{},"2547":{},"2727":{},"2856":{},"3043":{},"3157":{},"3276":{},"3405":{},"3598":{},"3769":{},"3913":{},"4077":{}},"parent":{}}],["systemcodesconfig",{"_index":1380,"name":{"2625":{}},"parent":{}}],["tag",{"_index":1241,"name":{"2306":{},"2913":{}},"parent":{}}],["tagid",{"_index":1243,"name":{"2308":{},"2915":{}},"parent":{}}],["taxes",{"_index":500,"name":{"648":{},"650":{},"871":{},"873":{}},"parent":{}}],["taxitem",{"_index":531,"name":{"697":{},"920":{}},"parent":{}}],["taxitems",{"_index":481,"name":{"610":{},"833":{}},"parent":{}}],["taxrate",{"_index":524,"name":{"682":{},"905":{},"1323":{}},"parent":{}}],["taxtotal",{"_index":379,"name":{"371":{}},"parent":{}}],["taxvalue",{"_index":526,"name":{"683":{},"906":{},"1324":{}},"parent":{}}],["tenant",{"_index":925,"name":{"1725":{}},"parent":{}}],["tenantdto",{"_index":926,"name":{"1726":{}},"parent":{}}],["tenantlistresponse",{"_index":924,"name":{"1724":{}},"parent":{}}],["termfilter",{"_index":188,"name":{"186":{},"424":{},"569":{},"792":{},"1075":{},"1187":{},"1409":{},"1546":{},"1620":{},"1820":{},"2017":{},"2197":{},"2405":{},"2519":{},"2699":{},"2828":{},"3015":{},"3129":{},"3248":{},"3377":{},"3570":{},"3741":{},"3885":{},"3955":{},"4048":{}},"parent":{}}],["termquery",{"_index":187,"name":{"185":{},"423":{},"568":{},"791":{},"1074":{},"1186":{},"1408":{},"1545":{},"1619":{},"1819":{},"2016":{},"2196":{},"2404":{},"2518":{},"2698":{},"2827":{},"3014":{},"3128":{},"3247":{},"3376":{},"3569":{},"3740":{},"3884":{},"3954":{},"4047":{}},"parent":{}}],["testid",{"_index":347,"name":{"343":{}},"parent":{}}],["text",{"_index":357,"name":{"351":{},"636":{},"859":{}},"parent":{}}],["textquery",{"_index":189,"name":{"187":{},"425":{},"570":{},"793":{},"1076":{},"1188":{},"1410":{},"1547":{},"1621":{},"1821":{},"2018":{},"2198":{},"2406":{},"2520":{},"2700":{},"2829":{},"3016":{},"3130":{},"3249":{},"3378":{},"3571":{},"3742":{},"3886":{},"3956":{},"4049":{}},"parent":{}}],["timefrom",{"_index":1226,"name":{"2290":{},"2897":{}},"parent":{}}],["timeofday",{"_index":1224,"name":{"2288":{},"2334":{},"2895":{},"2940":{}},"parent":{}}],["timestamp",{"_index":1433,"name":{"2759":{}},"parent":{}}],["timeto",{"_index":1228,"name":{"2291":{},"2898":{}},"parent":{}}],["title",{"_index":496,"name":{"643":{},"665":{},"866":{},"888":{},"1864":{},"1883":{}},"parent":{}}],["toggleocapicachingpagerule",{"_index":16,"name":{"15":{}},"parent":{}}],["tokenactionrequest",{"_index":845,"name":{"1482":{}},"parent":{}}],["tokenrequest",{"_index":844,"name":{"1481":{},"2267":{}},"parent":{}}],["tokenresponse",{"_index":843,"name":{"1480":{},"2268":{}},"parent":{}}],["total",{"_index":1036,"name":{"1908":{},"2585":{},"2766":{},"3181":{}},"parent":{}}],["totalcodescount",{"_index":1381,"name":{"2626":{}},"parent":{}}],["totalgroupeditems",{"_index":1090,"name":{"1974":{}},"parent":{}}],["traceable",{"_index":970,"name":{"1834":{}},"parent":{}}],["transferbasket",{"_index":434,"name":{"503":{}},"parent":{}}],["trustedagenttokenrequest",{"_index":835,"name":{"1472":{}},"parent":{}}],["trustedsystemauthrequest",{"_index":741,"name":{"1269":{}},"parent":{}}],["trustedsystemtokenrequest",{"_index":841,"name":{"1478":{}},"parent":{}}],["type",{"_index":220,"name":{"218":{},"303":{},"381":{},"397":{},"456":{},"601":{},"670":{},"716":{},"824":{},"893":{},"939":{},"1106":{},"1218":{},"1440":{},"1577":{},"1652":{},"1863":{},"1882":{},"2049":{},"2228":{},"2436":{},"2550":{},"2627":{},"2730":{},"2859":{},"3046":{},"3160":{},"3279":{},"3408":{},"3601":{},"3772":{},"3916":{},"4080":{}},"parent":{}}],["typecode",{"_index":1434,"name":{"2760":{}},"parent":{}}],["unassignproductfromcategory",{"_index":1656,"name":{"3432":{}},"parent":{}}],["unassignvariationfrommasterproduct",{"_index":1757,"name":{"3625":{}},"parent":{}}],["unassignvariationgroupfrommasterproduct",{"_index":1752,"name":{"3620":{}},"parent":{}}],["unauthorized",{"_index":646,"name":{"1012":{},"1379":{},"1664":{},"2119":{},"3512":{},"3675":{},"3820":{},"4127":{}},"parent":{}}],["undocancelorderconflict",{"_index":264,"name":{"265":{}},"parent":{}}],["undofailorderconflict",{"_index":276,"name":{"277":{}},"parent":{}}],["unit",{"_index":218,"name":{"216":{},"454":{},"599":{},"822":{},"1104":{},"1216":{},"1438":{},"1575":{},"1650":{},"2047":{},"2226":{},"2434":{},"2548":{},"2728":{},"2857":{},"3044":{},"3158":{},"3277":{},"3406":{},"3599":{},"3770":{},"3914":{},"4078":{}},"parent":{}}],["unqueryablefield",{"_index":1472,"name":{"2878":{}},"parent":{}}],["upcomingabtestassignments",{"_index":1256,"name":{"2323":{},"2930":{}},"parent":{}}],["upcomingcampaignassignments",{"_index":1257,"name":{"2324":{},"2931":{}},"parent":{}}],["updateaddressforcustomerincustomerlist",{"_index":626,"name":{"988":{}},"parent":{}}],["updateasagentbasket",{"_index":439,"name":{"508":{}},"parent":{}}],["updateasstorefrontbasket",{"_index":467,"name":{"536":{}},"parent":{}}],["updatebasket",{"_index":438,"name":{"507":{}},"parent":{}}],["updatebillingaddressforbasket",{"_index":440,"name":{"509":{}},"parent":{}}],["updatecampaign",{"_index":1300,"name":{"2452":{}},"parent":{}}],["updatecatalog",{"_index":1648,"name":{"3424":{}},"parent":{}}],["updatecategoryincatalog",{"_index":1652,"name":{"3428":{}},"parent":{}}],["updatecertificate",{"_index":20,"name":{"19":{}},"parent":{}}],["updatecoupon",{"_index":1340,"name":{"2574":{}},"parent":{}}],["updatecouponcodes",{"_index":1343,"name":{"2577":{}},"parent":{}}],["updatecustomer",{"_index":712,"name":{"1237":{}},"parent":{}}],["updatecustomeraddress",{"_index":716,"name":{"1241":{}},"parent":{}}],["updatecustomerforbasket",{"_index":443,"name":{"512":{}},"parent":{}}],["updatecustomerincustomerlist",{"_index":620,"name":{"982":{}},"parent":{}}],["updatecustomerpassword",{"_index":719,"name":{"1244":{}},"parent":{}}],["updatecustomerproductlist",{"_index":727,"name":{"1252":{}},"parent":{}}],["updatecustomerproductlistitem",{"_index":731,"name":{"1256":{}},"parent":{}}],["updatecustomrule",{"_index":40,"name":{"39":{}},"parent":{}}],["updategiftcertificate",{"_index":1424,"name":{"2747":{}},"parent":{}}],["updategiftcertificateiteminbasket",{"_index":446,"name":{"515":{}},"parent":{}}],["updateiteminbasket",{"_index":450,"name":{"519":{}},"parent":{}}],["updateitemsinbasket",{"_index":448,"name":{"517":{}},"parent":{}}],["updatelogpushjob",{"_index":32,"name":{"31":{}},"parent":{}}],["updatemrtrule",{"_index":27,"name":{"26":{}},"parent":{}}],["updatemrtruleset",{"_index":23,"name":{"22":{}},"parent":{}}],["updateorder",{"_index":236,"name":{"235":{}},"parent":{}}],["updateorderconfirmationstatus",{"_index":237,"name":{"236":{}},"parent":{}}],["updateorderexportstatus",{"_index":238,"name":{"237":{}},"parent":{}}],["updateorderexternalstatus",{"_index":239,"name":{"238":{}},"parent":{}}],["updateorderofcustomrules",{"_index":38,"name":{"37":{}},"parent":{}}],["updateorderpaymentinstrument",{"_index":243,"name":{"242":{}},"parent":{}}],["updateorderpaymentstatus",{"_index":240,"name":{"239":{}},"parent":{}}],["updateorderpaymenttransaction",{"_index":244,"name":{"243":{}},"parent":{}}],["updateordershippingaddress",{"_index":245,"name":{"244":{}},"parent":{}}],["updateordershippingstatus",{"_index":241,"name":{"240":{}},"parent":{}}],["updateorderstatus",{"_index":242,"name":{"241":{}},"parent":{}}],["updatepaymentinstrumentfororder",{"_index":560,"name":{"759":{}},"parent":{}}],["updatepaymentinstrumentinbasket",{"_index":454,"name":{"523":{}},"parent":{}}],["updatepriceadjustmentinbasket",{"_index":458,"name":{"527":{}},"parent":{}}],["updateproduct",{"_index":1748,"name":{"3616":{}},"parent":{}}],["updateproductcategoryassignment",{"_index":1657,"name":{"3433":{}},"parent":{}}],["updateproductoption",{"_index":1764,"name":{"3632":{}},"parent":{}}],["updateproductoptionvalue",{"_index":1768,"name":{"3636":{}},"parent":{}}],["updatepromotion",{"_index":1483,"name":{"2891":{}},"parent":{}}],["updateratelimitingrule",{"_index":45,"name":{"44":{}},"parent":{}}],["updatesecuritysettings",{"_index":14,"name":{"13":{}},"parent":{}}],["updateshipmentforbasket",{"_index":463,"name":{"532":{}},"parent":{}}],["updateshippingaddressforshipment",{"_index":464,"name":{"533":{}},"parent":{}}],["updateshippingmethodforshipment",{"_index":465,"name":{"534":{}},"parent":{}}],["updateshoppercontext",{"_index":678,"name":{"1122":{}},"parent":{}}],["updatesourcecodegroup",{"_index":1598,"name":{"3294":{}},"parent":{}}],["updatespeedsettings",{"_index":12,"name":{"11":{}},"parent":{}}],["updatevariationattribute",{"_index":1777,"name":{"3645":{}},"parent":{}}],["updatevariationattributevalue",{"_index":1772,"name":{"3640":{}},"parent":{}}],["updatevariationformasterproduct",{"_index":1759,"name":{"3627":{}},"parent":{}}],["updatevariationgroupformasterproduct",{"_index":1754,"name":{"3622":{}},"parent":{}}],["updatewafgroup",{"_index":7,"name":{"6":{}},"parent":{}}],["updatewafmanagedruleinruleset",{"_index":50,"name":{"49":{}},"parent":{}}],["updatewafmanagedruleset",{"_index":48,"name":{"47":{}},"parent":{}}],["updatewafrule",{"_index":10,"name":{"9":{}},"parent":{}}],["upsertoriginheadermodification",{"_index":52,"name":{"51":{}},"parent":{}}],["urlmapping",{"_index":886,"name":{"1661":{}},"parent":{}}],["user_agent_header",{"_index":228,"name":{"227":{},"498":{},"750":{},"973":{},"1115":{},"1227":{},"1449":{},"1586":{},"1702":{},"1767":{},"1984":{},"2123":{},"2247":{},"2445":{},"2565":{},"2739":{},"2884":{},"3055":{},"3169":{},"3288":{},"3417":{},"3610":{},"3781":{},"3925":{},"4012":{},"4129":{}},"parent":{}}],["user_agent_value",{"_index":229,"name":{"228":{},"499":{},"751":{},"974":{},"1116":{},"1228":{},"1450":{},"1587":{},"1703":{},"1768":{},"1985":{},"2124":{},"2248":{},"2446":{},"2566":{},"2740":{},"2885":{},"3056":{},"3170":{},"3289":{},"3418":{},"3611":{},"3782":{},"3926":{},"4013":{},"4130":{}},"parent":{}}],["valid",{"_index":315,"name":{"313":{}},"parent":{}}],["validatecustomhostname",{"_index":21,"name":{"20":{}},"parent":{}}],["validfrommonth",{"_index":296,"name":{"295":{},"625":{},"694":{},"848":{},"917":{}},"parent":{}}],["validfromyear",{"_index":297,"name":{"296":{},"626":{},"695":{},"849":{},"918":{}},"parent":{}}],["value",{"_index":227,"name":{"226":{},"464":{},"609":{},"671":{},"701":{},"832":{},"894":{},"924":{},"1114":{},"1226":{},"1448":{},"1585":{},"1660":{},"1890":{},"1897":{},"2057":{},"2236":{},"2444":{},"2558":{},"2738":{},"2752":{},"2867":{},"3054":{},"3168":{},"3287":{},"3416":{},"3609":{},"3780":{},"3924":{},"4088":{}},"parent":{}}],["valuefacetinput",{"_index":1065,"name":{"1945":{}},"parent":{}}],["valuefacetoutput",{"_index":1055,"name":{"1931":{}},"parent":{}}],["valuefacetoutputentity",{"_index":1069,"name":{"1951":{}},"parent":{}}],["valuerefinement",{"_index":1046,"name":{"1920":{}},"parent":{}}],["values",{"_index":1048,"name":{"1922":{},"1933":{}},"parent":{}}],["variant",{"_index":753,"name":{"1288":{},"2103":{},"3473":{},"3659":{},"3800":{}},"parent":{}}],["variants",{"_index":1781,"name":{"3651":{}},"parent":{}}],["variantsearchresult",{"_index":1782,"name":{"3654":{}},"parent":{}}],["variationattribute",{"_index":744,"name":{"1277":{},"2099":{},"3465":{},"3655":{},"3796":{},"3994":{}},"parent":{}}],["variationattributes",{"_index":1693,"name":{"3476":{},"3662":{}},"parent":{}}],["variationattributevalue",{"_index":778,"name":{"1329":{},"2115":{},"3492":{},"3671":{},"3809":{},"4007":{}},"parent":{}}],["variationattributevalues",{"_index":1700,"name":{"3485":{},"3666":{}},"parent":{}}],["variationgroup",{"_index":755,"name":{"1293":{},"2104":{},"3474":{},"3660":{},"3801":{}},"parent":{}}],["variationgroups",{"_index":1785,"name":{"3673":{}},"parent":{}}],["vieworderurl",{"_index":1360,"name":{"2598":{}},"parent":{}}],["visible",{"_index":221,"name":{"219":{},"457":{},"602":{},"825":{},"1107":{},"1219":{},"1441":{},"1578":{},"1653":{},"2050":{},"2229":{},"2437":{},"2551":{},"2731":{},"2860":{},"3047":{},"3161":{},"3280":{},"3409":{},"3602":{},"3773":{},"3917":{},"4081":{}},"parent":{}}],["wafgroup",{"_index":118,"name":{"117":{}},"parent":{}}],["wafgroupenvelope",{"_index":61,"name":{"60":{}},"parent":{}}],["wafgroupsenvelope",{"_index":105,"name":{"104":{}},"parent":{}}],["wafmanagedrule",{"_index":109,"name":{"108":{}},"parent":{}}],["wafmanagedruleenvelope",{"_index":123,"name":{"122":{}},"parent":{}}],["wafmanagedrulerequest",{"_index":89,"name":{"88":{}},"parent":{}}],["wafmanagedrulesenvelope",{"_index":88,"name":{"87":{}},"parent":{}}],["wafmanagedruleset",{"_index":124,"name":{"123":{}},"parent":{}}],["wafmanagedrulesetenvelope",{"_index":91,"name":{"90":{}},"parent":{}}],["wafmanagedrulesetrequest",{"_index":75,"name":{"74":{}},"parent":{}}],["wafmanagedrulesetsenvelope",{"_index":77,"name":{"76":{}},"parent":{}}],["wafpackagepatchrequest",{"_index":98,"name":{"97":{}},"parent":{}}],["wafrule",{"_index":126,"name":{"125":{}},"parent":{}}],["wafruleenvelope",{"_index":121,"name":{"120":{}},"parent":{}}],["wafrulepackage",{"_index":84,"name":{"83":{}},"parent":{}}],["wafrulepackageenvelope",{"_index":67,"name":{"66":{}},"parent":{}}],["wafrulesenvelope",{"_index":111,"name":{"110":{}},"parent":{}}],["zone",{"_index":65,"name":{"64":{}},"parent":{}}],["zoneenvelope",{"_index":85,"name":{"84":{}},"parent":{}}],["zonesenvelope",{"_index":66,"name":{"65":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/cdn.cdnzones.html b/docs/classes/cdn.cdnzones.html index 1feb0d74..05e217fc 100644 --- a/docs/classes/cdn.cdnzones.html +++ b/docs/classes/cdn.cdnzones.html @@ -97,7 +97,7 @@

'authorization'] = `Bearer ${token.access_token}`; const cdnZonesClient = new Cdn.CdnZones(clientConfig); - API Version: 1.0.30
+ API Version: 1.0.32
Last Updated:
@@ -150,8 +150,6 @@

Type aliases

  • Filter
  • FilteredQuery
  • FirewallRule
  • -
  • FirewallRuleEnvelope
  • -
  • FirewallRulesEnvelope
  • Hsts
  • ItemResponseEnvelope
  • L10nString
  • @@ -178,6 +176,9 @@

    Type aliases

  • OCAPICachingToggleRequest
  • OffsetPaginated
  • OpenObject
  • +
  • OriginHeaderModification
  • +
  • OriginHeaderModificationEnvelope
  • +
  • OriginHeaderModificationPutRequest
  • PaginatedSearchResult
  • PaginatedSearchResultBase
  • PropertyDefinition
  • @@ -203,6 +204,7 @@

    Type aliases

  • SearchRequestBase
  • SecuritySetting
  • SecuritySettingsEnvelope
  • +
  • Selectable
  • SimpleSearchResult
  • SimpleSearchResultBase
  • SiteSpecific
  • @@ -217,13 +219,20 @@

    Type aliases

  • TermFilter
  • TermQuery
  • TextQuery
  • +
  • WAFManagedRule
  • +
  • WAFManagedRuleEnvelope
  • +
  • WAFManagedRuleRequest
  • +
  • WAFManagedRulesEnvelope
  • WAFManagedRuleset
  • WAFManagedRulesetEnvelope
  • WAFManagedRulesetRequest
  • WAFManagedRulesetsEnvelope
  • +
  • WAFRulePackage
  • +
  • WAFRulePackageEnvelope
  • WafGroup
  • WafGroupEnvelope
  • WafGroupsEnvelope
  • +
  • WafPackagePatchRequest
  • WafRule
  • WafRuleEnvelope
  • WafRulesEnvelope
  • @@ -256,7 +265,6 @@

    Methods

  • addCertificateForZone
  • cachePurge
  • createCustomRule
  • -
  • createFirewallRule
  • createLogpushJob
  • createLogpushOwnership
  • createMrtRules
  • @@ -264,32 +272,34 @@

    Methods

  • createStorefrontZone
  • deleteCertificate
  • deleteCustomRule
  • -
  • deleteFirewallRule
  • deleteLogpushJob
  • deleteMrtRule
  • deleteMrtRuleset
  • +
  • deleteOriginHeaderModification
  • deleteRateLimitingRule
  • getCertificates
  • getCustomRule
  • getCustomRules
  • -
  • getFirewallRule
  • -
  • getFirewallRules
  • getLogpushJob
  • getMrtRules
  • +
  • getOriginHeaderModification
  • +
  • getOwaspWafPackage
  • getRateLimitingRule
  • getRateLimitingRules
  • getSecuritySettings
  • getSpeedSettings
  • getWafGroups
  • +
  • getWafManagedRulesInRuleset
  • getWafManagedRulesets
  • getWafRule
  • getWafRules
  • getZonesInfo
  • listLogpushJob
  • +
  • migrateZoneToWafV2
  • +
  • patchOwaspWafPackage
  • toggleOcapiCachingPageRule
  • updateCertificate
  • updateCustomRule
  • -
  • updateFirewallRule
  • updateLogpushJob
  • updateMrtRule
  • updateMrtRuleset
  • @@ -298,8 +308,10 @@

    Methods

  • updateSecuritySettings
  • updateSpeedSettings
  • updateWafGroup
  • +
  • updateWafManagedRuleInRuleset
  • updateWafManagedRuleset
  • updateWafRule
  • +
  • upsertOriginHeaderModification
  • validateCustomHostname
  • @@ -314,7 +326,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -329,7 +341,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -401,20 +413,20 @@
    Optional visible

    Static BoolFilter

    -
    BoolFilter: { filters?: Array<any>; operator: string } & {}
    +
    BoolFilter: { filters?: Array<Filter>; operator: string } & {}

    Static BoolQuery

    -
    BoolQuery: { must?: Array<any>; mustNot?: Array<any>; should?: Array<any> } & {}
    +
    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -434,7 +446,7 @@

    Static CachePurgeRespo
    CachePurgeResponse: { cachePurged: boolean; details: string } & {}
    @@ -454,7 +466,7 @@

    Static Certificate

    Certificate: { certificateAuthority?: string; certificateId: string; certificateType: string; certificateValidation?: string; certificateVerificationStatus?: string; certificateVerificationTXTName?: string; certificateVerificationTXTValue?: string; customHostname?: string; customHostnameId?: string; customHostnameStatus?: string; customHostnameVerificationTXTName?: string; customHostnameVerificationTXTValue?: string; expiresOn?: any; hosts?: Array<string>; issuer?: string; minTlsVersion?: string; signature?: string; status: string; uploadedOn?: any } & {}
    @@ -464,7 +476,7 @@

    Static CertificateEnvelope<
    CertificateEnvelope: { data: Certificate } & {}
    @@ -474,7 +486,7 @@

    Static CertificateRequestCertificateRequest: { certificate?: string; certificateAuthority?: string; certificateType?: string; certificateValidation?: string; hostname: string; privateKey?: string } & {}

    @@ -484,7 +496,7 @@

    Static CertificatesEnvelope
    CertificatesEnvelope: { data: Array<Certificate> } & {}
    @@ -494,7 +506,7 @@

    Static ClosedObject

    ClosedObject: {} & {}
    @@ -514,7 +526,7 @@

    Static CustomHostnameV
    CustomHostnameValidationEnvelope: { data: CustomHostnameValidationResponse } & {}
    @@ -524,7 +536,7 @@

    Static CustomHostnameV
    CustomHostnameValidationResponse: { customHostname: string; customHostnameId: string; customHostnameStatus: string; customHostnameVerificationTXTName: string; customHostnameVerificationTXTValue: string } & {}
    @@ -534,7 +546,7 @@

    Static CustomRule

    CustomRule: { actions: Array<string>; description: string; enabled: boolean; expression: string; lastUpdated: any; ruleId: string } & {}
    @@ -544,7 +556,7 @@

    Static CustomRuleEnvel
    CustomRuleEnvelope: { data: CustomRule } & {}
    @@ -554,7 +566,7 @@

    Static CustomRulesEnve
    CustomRulesEnvelope: { data: Array<CustomRule> } & {}
    @@ -564,7 +576,7 @@

    Static CustomRulesPatc
    CustomRulesPatchOrderRequest: { ruleIds: Array<string> } & {}
    @@ -574,7 +586,7 @@

    Static CustomRulesPatc
    CustomRulesPatchRequest: { actions?: Array<string>; description?: string; enabled?: boolean; expression?: string; position?: RulePosition } & {}
    @@ -584,7 +596,7 @@

    Static CustomRulesPost
    CustomRulesPostRequest: { actions: Array<string>; description: string; enabled?: boolean; expression: string; position?: RulePosition } & {}
    @@ -594,7 +606,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -609,7 +621,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -619,7 +631,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -634,7 +646,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -649,17 +661,17 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}

    Static FilteredQuery

    -
    FilteredQuery: { filter: any; query: any } & {}
    +
    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -673,33 +685,13 @@

    Static FirewallRule

    -
    - -

    Static FirewallRuleEnvelope

    -
    FirewallRuleEnvelope: { data: FirewallRule } & {}
    - -
    -
    - -

    Static FirewallRulesEnvelope

    -
    FirewallRulesEnvelope: { data: Array<FirewallRule> } & {}
    - -

    Static Hsts

    Hsts: { enabled?: boolean; includeSubdomains?: boolean; maxAge?: any; preload?: boolean } & {}
    @@ -709,7 +701,7 @@

    Static ItemResponseEnv
    ItemResponseEnvelope: { data?: {} & {} } & {}
    @@ -719,7 +711,7 @@

    Static L10nString

    L10nString: {} & {}
    @@ -729,7 +721,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -739,7 +731,7 @@

    Static LogpushCreateRe
    LogpushCreateRequest: { destinationPath: string; filter?: string; logFields: Array<string>; logType: string; name: string; ownershipChallengeToken: string } & {}
    @@ -749,7 +741,7 @@

    Static LogpushEnvelope

    LogpushEnvelope: { data: LogpushResponse } & {}
    @@ -759,7 +751,7 @@

    Static LogpushJobsEnve
    LogpushJobsEnvelope: { data: Array<LogpushResponse> } & {}
    @@ -779,7 +771,7 @@

    Static LogpushOwnershipLogpushOwnershipPostResponse: { data: { destinationPath: string; fileName: string } & {} } & {}

    @@ -799,7 +791,7 @@

    Static LogpushUpdateRe
    LogpushUpdateRequest: { enabled?: boolean; filter?: string; logFields?: Array<string> } & {}
    @@ -809,7 +801,7 @@

    Static MRTRulePatchReq
    MRTRulePatchRequest: { enabled?: boolean; expression?: string } & {}
    @@ -819,7 +811,7 @@

    Static MRTRules

    MRTRules: { enabled: boolean; expression: string; id: string; lastUpdated: any; mrtHostname: string; ref: string } & {}
    @@ -829,7 +821,7 @@

    Static MRTRulesPostReq
    MRTRulesPostRequest: { expressions: Array<string>; mrtHostname: string } & {}
    @@ -839,7 +831,7 @@

    Static MRTRulesResponse

    MRTRulesResponse: { ruleset: MRTRuleset } & {}
    @@ -849,7 +841,7 @@

    Static MRTRulesResponseMRTRulesResponseEnvelope: { data: MRTRulesResponse } & {}

    @@ -859,7 +851,7 @@

    Static MRTRuleset

    MRTRuleset: { id: string; lastUpdated: any; name: string; rules: Array<MRTRules> } & {}
    @@ -869,7 +861,7 @@

    Static MRTRulesetPatch
    MRTRulesetPatchRequest: { expressions?: Array<string>; mrtHostname: string; oldMrtHostname?: string } & {}
    @@ -879,7 +871,7 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    @@ -889,7 +881,7 @@

    Static Money

    Money: { currencyMnemonic?: string; value?: number } & {}
    @@ -899,17 +891,17 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}

    Static NestedQuery

    -
    NestedQuery: { path: string; query: any; scoreMode?: string } & {}
    +
    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -919,7 +911,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -934,7 +926,7 @@

    Static OCAPICachingToggleOCAPICachingToggleRequest: { enableOCAPICachingPageRule: boolean } & {}

    @@ -944,7 +936,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -959,27 +951,57 @@

    Static OpenObject

    OpenObject: {} & {}
    + +
    + +

    Static OriginHeaderModification

    +
    OriginHeaderModification: { headerName: string; headerValue: string; lastUpdated: any } & {}
    + +
    +
    + +

    Static OriginHeaderModificationEnvelope

    +
    OriginHeaderModificationEnvelope: { data: OriginHeaderModification } & {}
    + +
    +
    + +

    Static OriginHeaderModificationPutRequest

    +
    OriginHeaderModificationPutRequest: { headerName?: string; headerValue: string } & {}
    +

    Static PaginatedSearchResult

    -
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: any; sorts?: Array<Sort>; total: any } & {}
    +
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}

    Static PaginatedSearchResultBase

    -
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: any; sorts?: Array<Sort>; total: any } & {}
    +
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -989,7 +1011,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -999,7 +1021,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -1029,17 +1051,17 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}

    Static QueryFilter

    -
    QueryFilter: { query: any } & {}
    +
    QueryFilter: { query: Query } & {}
    @@ -1049,7 +1071,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -1064,7 +1086,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -1079,7 +1101,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -1089,7 +1111,7 @@

    Static RangeFilter

    RangeFilter: { field: string; from?: any; fromInclusive?: boolean; to?: any; toInclusive?: boolean } & {}
    @@ -1099,7 +1121,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -1114,7 +1136,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -1129,7 +1151,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -1144,7 +1166,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -1159,7 +1181,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -1174,7 +1196,7 @@

    Static RateLimitingRul
    RateLimitingRule: { action: string; characteristics: Array<string>; countingExpression?: string; description: string; enabled: boolean; expression: string; lastUpdated: any; mitigationTimeout?: number; period: number; requestsPerPeriod: number; ruleId: string } & {}
    @@ -1184,7 +1206,7 @@

    Static RateLimitingRul
    RateLimitingRuleEnvelope: { data: RateLimitingRule } & {}
    @@ -1194,7 +1216,7 @@

    Static RateLimitingRul
    RateLimitingRulesEnvelope: { data: Array<RateLimitingRule> } & {}
    @@ -1204,7 +1226,7 @@

    Static RateLimitingRul
    RateLimitingRulesPatchRequest: { action?: string; characteristics?: Array<string>; countingExpression?: string; description?: string; enabled?: boolean; expression?: string; mitigationTimeout?: number; period?: number; position?: RulePosition; requestsPerPeriod?: number } & {}
    @@ -1214,7 +1236,7 @@

    Static RateLimitingRul
    RateLimitingRulesPostRequest: { action: string; characteristics: Array<string>; countingExpression?: string; description: string; enabled?: boolean; expression: string; mitigationTimeout?: number; period: number; position?: RulePosition; requestsPerPeriod: number } & {}
    @@ -1224,27 +1246,27 @@

    Static RulePosition

    RulePosition: { after?: string; before?: string } & {}

    Static SearchRequest

    -
    SearchRequest: { limit?: number; offset?: any; query: any; sorts?: Array<Sort> } & {}
    +
    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}

    Static SearchRequestBase

    -
    SearchRequestBase: { limit?: number; offset?: any; query: any; sorts?: Array<Sort> } & {}
    +
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -1254,7 +1276,7 @@

    Static SecuritySetting

    SecuritySetting: { alwaysUseHttps: boolean; hsts?: Hsts; securityLevel?: string; tls13Enabled?: boolean; wafEnabled?: boolean } & {}
    @@ -1264,9 +1286,24 @@

    Static SecuritySettingsSecuritySettingsEnvelope: { data: SecuritySetting } & {}

    + +
    + +

    Static Selectable

    +
    Selectable: {}
    + +
    +

    Type declaration

    +
      +
    +
    @@ -1274,7 +1311,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}

    @@ -1284,7 +1321,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -1294,7 +1331,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -1309,7 +1346,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -1319,17 +1356,17 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}

    Static SpeedSetting

    -
    SpeedSetting: { brotliCompression?: string; http2Prioritization?: string; minifyCss?: string; minifyHtml?: string; minifyJs?: string; polish?: string; webp?: string } & {}
    +
    SpeedSetting: { brotliCompression?: string; earlyHints?: string; http2Prioritization?: string; http2ToOrigin?: string; http3?: string; minifyCss?: string; minifyHtml?: string; minifyJs?: string; polish?: string; webp?: string } & {}
    @@ -1349,7 +1386,7 @@

    Static StorefrontZoneC
    StorefrontZoneCreateEnvelope: { data: StorefrontZoneCreateResponse } & {}
    @@ -1359,7 +1396,7 @@

    Static StorefrontZoneC
    StorefrontZoneCreateRequest: { domainName: string } & {}
    @@ -1379,7 +1416,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -1394,7 +1431,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -1404,7 +1441,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -1414,7 +1451,47 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    + +
    + +

    Static WAFManagedRule

    +
    WAFManagedRule: { action: string; categories: Array<string>; description: string; enabled: boolean; lastUpdated: any; ruleId: string } & {}
    + +
    +
    + +

    Static WAFManagedRuleEnvelope

    +
    WAFManagedRuleEnvelope: { data: WAFManagedRule } & {}
    + +
    +
    + +

    Static WAFManagedRuleRequest

    +
    WAFManagedRuleRequest: { action?: string; enabled?: boolean } & {}
    + +
    +
    + +

    Static WAFManagedRulesEnvelope

    +
    WAFManagedRulesEnvelope: { data: Array<WAFManagedRule> } & {}
    +
    @@ -1424,7 +1501,7 @@

    Static WAFManagedRulesetWAFManagedRuleset: { action: string; anomalyScore?: string; anomalyScoreThreshold?: number; enabled: boolean; name: string; paranoiaLevel?: number; rulesetId: string } & {}

    @@ -1434,7 +1511,7 @@

    Static WAFManagedRulesetWAFManagedRulesetEnvelope: { data: WAFManagedRuleset } & {}

    @@ -1444,7 +1521,7 @@

    Static WAFManagedRulesetWAFManagedRulesetRequest: { action?: string; anomalyScore?: string; enabled?: boolean; paranoiaLevel?: number } & {}

    @@ -1454,7 +1531,27 @@

    Static WAFManagedRulesetsWAFManagedRulesetsEnvelope: { data: Array<WAFManagedRuleset> } & {}

    + +
    + +

    Static WAFRulePackage

    +
    WAFRulePackage: { action_mode: string; description: string; detection_mode: string; id: string; name: string; sensitivity: string; zone_id: string } & {}
    + +
    +
    + +

    Static WAFRulePackageEnvelope

    +
    WAFRulePackageEnvelope: { data: WAFRulePackage } & {}
    +
    @@ -1464,7 +1561,7 @@

    Static WafGroup

    WafGroup: { action?: string; description?: string; groupId?: string; mode: string } & {}
    @@ -1484,7 +1581,17 @@

    Static WafGroupsEnvelo
    WafGroupsEnvelope: { data: Array<WafGroup> } & {}
    + +
    + +

    Static WafPackagePatchRequest

    +
    WafPackagePatchRequest: { action_mode: string; sensitivity: string } & {}
    +
    @@ -1494,7 +1601,7 @@

    Static WafRule

    WafRule: { action: string; defaultAction?: string; description?: string; groupId?: string; ruleId?: string } & {}
    @@ -1504,7 +1611,7 @@

    Static WafRuleEnvelope
    WafRuleEnvelope: { data: WafRule } & {}
    @@ -1514,7 +1621,7 @@

    Static WafRulesEnvelop
    WafRulesEnvelope: { data: Array<WafRule> } & {}
    @@ -1534,7 +1641,7 @@

    Static ZoneEnvelope

    ZoneEnvelope: { data: Zone } & {}
    @@ -1554,7 +1661,7 @@

    Static hasBadRequesthasBadRequestResponse: {}

    @@ -1569,7 +1676,7 @@

    Static hasConflictResp
    hasConflictResponse: {}
    @@ -1584,7 +1691,7 @@

    Static hasForbiddenAcc
    hasForbiddenAccessResponse: {}
    @@ -1599,7 +1706,7 @@

    Static hasInternalServ
    hasInternalServerErrorResponse: {}
    @@ -1614,7 +1721,7 @@

    Static hasResourceNot<
    hasResourceNotFoundResponse: {}
    @@ -1629,7 +1736,7 @@

    Static hasUnauthorized
    hasUnauthorizedResponse: {}
    @@ -1652,7 +1759,7 @@

    constructor

    Parameters

    @@ -1693,7 +1800,7 @@

    addCertificateForZone

  • @@ -1741,7 +1848,7 @@

    Returns Promise
    @@ -1812,7 +1919,7 @@

    cachePurge

  • @@ -1860,7 +1967,7 @@

    Returns Promise
    @@ -1931,7 +2038,7 @@

    createCustomRule

  • @@ -1979,7 +2086,7 @@

    Returns Promise
    @@ -2039,125 +2146,6 @@

    Returns Promise -
    - -

    createFirewallRule

    -
      -
    • createFirewallRule(options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<FirewallRuleEnvelope>
    • -
    • createFirewallRule<T>(options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.FirewallRuleEnvelope>
    • -
    -
      -
    • - -
      -
      -

      (DEPRECATED) Creates a firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      -
      -

      If you would like to get a raw Response object use the other createFirewallRule function.

      -
      -

      Parameters

      -
        -
      • -
        options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        -
        -
        -

        An object containing the options for this method.

        -
        -
        -
          -
        • -
          body: FirewallRule
          -
        • -
        • -
          Optional fetchOptions?: RequestInit
          -
        • -
        • -
          Optional headers?: {}
          -
            -
          • -
            [key: string]: string
            -
          • -
          -
        • -
        • -
          Optional parameters?: { organizationId?: string; zoneId: string } & {}
          -
        • -
        • -
          Optional retrySettings?: OperationOptions
          -
        • -
        -
      • -
      -

      Returns Promise<FirewallRuleEnvelope>

      -

      A promise of type CdnZones.FirewallRuleEnvelope.

      -
    • -
    • - -
      -
      -

      (DEPRECATED) Creates a firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      -
      -
      -

      Type parameters

      -
        -
      • -

        T: boolean

        -
      • -
      -

      Parameters

      -
        -
      • -
        options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        -
        -
        -

        An object containing the options for this method.

        -
        -
        -
          -
        • -
          body: FirewallRule
          -
        • -
        • -
          Optional fetchOptions?: RequestInit
          -
        • -
        • -
          Optional headers?: {}
          -
            -
          • -
            [key: string]: string
            -
          • -
          -
        • -
        • -
          Optional parameters?: { organizationId?: string; zoneId: string } & {}
          -
        • -
        • -
          Optional retrySettings?: OperationOptions
          -
        • -
        -
      • -
      • -
        Optional rawResponse: T
        -
        -
        -

        Set to true to return entire Response object instead of DTO.

        -
        -
        -
      • -
      -

      Returns Promise<T extends true ? Response : CdnZones.FirewallRuleEnvelope>

      -

      A promise of type Response if rawResponse is true, a promise of type CdnZones.FirewallRuleEnvelope otherwise.

      -
    • -
    -

    createLogpushJob

    @@ -2169,7 +2157,7 @@

    createLogpushJob

  • @@ -2217,7 +2205,7 @@

    Returns Promise
    @@ -2288,7 +2276,7 @@

    createLogpushOwnership

  • @@ -2336,7 +2324,7 @@

    Returns Promise
    @@ -2407,12 +2395,12 @@

    createMrtRules

  • -

    Create MRT rules.

    +

    Create MRT rules to route to a new MRT environment.

    If you would like to get a raw Response object use the other createMrtRules function.

    @@ -2455,12 +2443,12 @@

    Returns Promise
    -

    Create MRT rules.

    +

    Create MRT rules to route to a new MRT environment.

    Type parameters

    @@ -2526,7 +2514,7 @@

    createRateLimitingRule

  • @@ -2574,7 +2562,7 @@

    Returns Promise
    @@ -2645,7 +2633,7 @@

    createStorefrontZone

  • @@ -2693,7 +2681,7 @@

    Returns Promise
    @@ -2764,7 +2752,7 @@

    deleteCertificate

  • @@ -2809,7 +2797,7 @@

    Returns Promise
    @@ -2877,7 +2865,7 @@

    deleteCustomRule

  • @@ -2922,7 +2910,7 @@

    Returns Promise
    @@ -2980,29 +2968,29 @@

    Returns Promise

  • - -

    deleteFirewallRule

    + +

    deleteLogpushJob

      -
    • deleteFirewallRule(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • -
    • deleteFirewallRule<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • +
    • deleteLogpushJob(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • +
    • deleteLogpushJob<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • -

      (DEPRECATED) Delete a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      +

      Delete Logpush job by job ID.

      -

      If you would like to get a raw Response object use the other deleteFirewallRule function.

      +

      If you would like to get a raw Response object use the other deleteLogpushJob function.

      Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -3021,7 +3009,7 @@
        [key: -
        Optional parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -3035,12 +3023,12 @@

        Returns Promise
        -

        (DEPRECATED) Delete a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

        +

        Delete Logpush job by job ID.

        Type parameters

        @@ -3052,7 +3040,7 @@

        T: Parameters

        • -
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
          +
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

          An object containing the options for this method.

          @@ -3071,7 +3059,7 @@
          [key: -
          Optional parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}
          +
          Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
        • Optional retrySettings?: OperationOptions
          @@ -3093,29 +3081,29 @@

          Returns Promise

    - -

    deleteLogpushJob

    + +

    deleteMrtRule

      -
    • deleteLogpushJob(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • -
    • deleteLogpushJob<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • +
    • deleteMrtRule(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • +
    • deleteMrtRule<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • -

      Delete Logpush job by job ID.

      +

      Delete an MRT rule.

      -

      If you would like to get a raw Response object use the other deleteLogpushJob function.

      +

      If you would like to get a raw Response object use the other deleteMrtRule function.

      Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -3134,7 +3122,7 @@
        [key: -
        Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -3148,12 +3136,12 @@

        Returns Promise
        -

        Delete Logpush job by job ID.

        +

        Delete an MRT rule.

        Type parameters

        @@ -3165,7 +3153,7 @@

        T: Parameters

        • -
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
          +
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }

          An object containing the options for this method.

          @@ -3184,7 +3172,7 @@
          [key: -
          Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
          +
          Optional parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}
        • Optional retrySettings?: OperationOptions
          @@ -3206,29 +3194,29 @@

          Returns Promise

    - -

    deleteMrtRule

    + +

    deleteMrtRuleset

      -
    • deleteMrtRule(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • -
    • deleteMrtRule<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • +
    • deleteMrtRuleset(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • +
    • deleteMrtRuleset<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • -

      Delete an MRT rule in the specified ruleset.

      +

      Delete the MRT ruleset and all rules within the ruleset.

      -

      If you would like to get a raw Response object use the other deleteMrtRule function.

      +

      If you would like to get a raw Response object use the other deleteMrtRuleset function.

      Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -3247,7 +3235,7 @@
        [key: -
        Optional parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -3261,12 +3249,12 @@

        Returns Promise
        -

        Delete an MRT rule in the specified ruleset.

        +

        Delete the MRT ruleset and all rules within the ruleset.

        Type parameters

        @@ -3278,7 +3266,7 @@

        T: Parameters

        • -
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
          +
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }

          An object containing the options for this method.

          @@ -3297,7 +3285,7 @@
          [key: -
          Optional parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}
          +
          Optional parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}
        • Optional retrySettings?: OperationOptions
          @@ -3319,29 +3307,29 @@

          Returns Promise

    - -

    deleteMrtRuleset

    + +

    deleteOriginHeaderModification

      -
    • deleteMrtRuleset(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • -
    • deleteMrtRuleset<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • +
    • deleteOriginHeaderModification(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<void>
    • +
    • deleteOriginHeaderModification<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : void>
    • -

      Delete the MRT ruleset specified for that particular zone.

      +

      Delete the origin header modification associated with a zone.

      -

      If you would like to get a raw Response object use the other deleteMrtRuleset function.

      +

      If you would like to get a raw Response object use the other deleteOriginHeaderModification function.

      Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -3360,7 +3348,7 @@
        [key: -
        Optional parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; type: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -3374,12 +3362,12 @@

        Returns Promise
        -

        Delete the MRT ruleset specified for that particular zone.

        +

        Delete the origin header modification associated with a zone.

        Type parameters

        @@ -3391,7 +3379,7 @@

        T: Parameters

        • -
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
          +
          Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }

          An object containing the options for this method.

          @@ -3410,7 +3398,7 @@
          [key: -
          Optional parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}
          +
          Optional parameters?: { organizationId?: string; type: string; zoneId: string } & {}
        • Optional retrySettings?: OperationOptions
          @@ -3442,7 +3430,7 @@

          deleteRateLimitingRule

        • @@ -3487,7 +3475,7 @@

          Returns Promise
          @@ -3555,7 +3543,7 @@

          getCertificates

        • @@ -3600,7 +3588,7 @@

          Returns Promise
          @@ -3668,7 +3656,7 @@

          getCustomRule

        • @@ -3713,7 +3701,7 @@

          Returns Promise
          @@ -3781,7 +3769,7 @@

          getCustomRules

        • @@ -3826,7 +3814,7 @@

          Returns Promise
          @@ -3884,29 +3872,29 @@

          Returns Promise

    - -

    getFirewallRule

    + +

    getLogpushJob

      -
    • getFirewallRule(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<FirewallRuleEnvelope>
    • -
    • getFirewallRule<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.FirewallRuleEnvelope>
    • +
    • getLogpushJob(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<LogpushEnvelope>
    • +
    • getLogpushJob<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.LogpushEnvelope>
    • -

      (DEPRECATED) Retrieve a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      +

      Get Logpush job details.

      -

      If you would like to get a raw Response object use the other getFirewallRule function.

      +

      If you would like to get a raw Response object use the other getLogpushJob function.

      Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -3925,7 +3913,7 @@
        [key: -
        Optional parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -3933,18 +3921,18 @@
        Optional retrySettings
      -

      Returns Promise<FirewallRuleEnvelope>

      -

      A promise of type CdnZones.FirewallRuleEnvelope.

      +

      Returns Promise<LogpushEnvelope>

      +

      A promise of type CdnZones.LogpushEnvelope.

    • -

      (DEPRECATED) Retrieve a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      +

      Get Logpush job details.

      Type parameters

      @@ -3956,7 +3944,7 @@

      T: Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -3975,7 +3963,7 @@
        [key: -
        Optional parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -3991,30 +3979,30 @@
        Optional rawResponse:
      -

      Returns Promise<T extends true ? Response : CdnZones.FirewallRuleEnvelope>

      -

      A promise of type Response if rawResponse is true, a promise of type CdnZones.FirewallRuleEnvelope otherwise.

      +

      Returns Promise<T extends true ? Response : CdnZones.LogpushEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.LogpushEnvelope otherwise.

    - -

    getFirewallRules

    + +

    getMrtRules

      -
    • getFirewallRules(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<FirewallRulesEnvelope>
    • -
    • getFirewallRules<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.FirewallRulesEnvelope>
    • +
    • getMrtRules(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<MRTRulesResponseEnvelope>
    • +
    • getMrtRules<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.MRTRulesResponseEnvelope>
    • -

      (DEPRECATED) Retrieves existing firewall rules. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      +

      Get all MRT rules.

      -

      If you would like to get a raw Response object use the other getFirewallRules function.

      +

      If you would like to get a raw Response object use the other getMrtRules function.

      Parameters

        @@ -4046,18 +4034,18 @@
        Optional retrySettings
      -

      Returns Promise<FirewallRulesEnvelope>

      -

      A promise of type CdnZones.FirewallRulesEnvelope.

      +

      Returns Promise<MRTRulesResponseEnvelope>

      +

      A promise of type CdnZones.MRTRulesResponseEnvelope.

    • -

      (DEPRECATED) Retrieves existing firewall rules. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      +

      Get all MRT rules.

      Type parameters

      @@ -4104,35 +4092,35 @@
      Optional rawResponse:
    -

    Returns Promise<T extends true ? Response : CdnZones.FirewallRulesEnvelope>

    -

    A promise of type Response if rawResponse is true, a promise of type CdnZones.FirewallRulesEnvelope otherwise.

    +

    Returns Promise<T extends true ? Response : CdnZones.MRTRulesResponseEnvelope>

    +

    A promise of type Response if rawResponse is true, a promise of type CdnZones.MRTRulesResponseEnvelope otherwise.

  • - -

    getLogpushJob

    + +

    getOriginHeaderModification

      -
    • getLogpushJob(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<LogpushEnvelope>
    • -
    • getLogpushJob<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.LogpushEnvelope>
    • +
    • getOriginHeaderModification(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<OriginHeaderModificationEnvelope>
    • +
    • getOriginHeaderModification<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.OriginHeaderModificationEnvelope>
    • -

      Get Logpush job details.

      +

      Get origin header modification associated with a zone.

      -

      If you would like to get a raw Response object use the other getLogpushJob function.

      +

      If you would like to get a raw Response object use the other getOriginHeaderModification function.

      Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -4151,7 +4139,7 @@
        [key: -
        Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; type: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -4159,18 +4147,18 @@
        Optional retrySettings
      -

      Returns Promise<LogpushEnvelope>

      -

      A promise of type CdnZones.LogpushEnvelope.

      +

      Returns Promise<OriginHeaderModificationEnvelope>

      +

      A promise of type CdnZones.OriginHeaderModificationEnvelope.

    • -

      Get Logpush job details.

      +

      Get origin header modification associated with a zone.

      Type parameters

      @@ -4182,7 +4170,7 @@

      T: Parameters

      • -
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -4201,7 +4189,7 @@
        [key: -
        Optional parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; type: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -4217,30 +4205,30 @@
        Optional rawResponse:
      -

      Returns Promise<T extends true ? Response : CdnZones.LogpushEnvelope>

      -

      A promise of type Response if rawResponse is true, a promise of type CdnZones.LogpushEnvelope otherwise.

      +

      Returns Promise<T extends true ? Response : CdnZones.OriginHeaderModificationEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.OriginHeaderModificationEnvelope otherwise.

    - -

    getMrtRules

    + +

    getOwaspWafPackage

      -
    • getMrtRules(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<MRTRulesResponseEnvelope>
    • -
    • getMrtRules<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.MRTRulesResponseEnvelope>
    • +
    • getOwaspWafPackage(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<WAFRulePackageEnvelope>
    • +
    • getOwaspWafPackage<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.WAFRulePackageEnvelope>
    • -

      Get MRT rules associated with a zone.

      +

      Get a OWASP ModSecurity Core Rule Set.

      -

      If you would like to get a raw Response object use the other getMrtRules function.

      +

      If you would like to get a raw Response object use the other getOwaspWafPackage function.

      Parameters

        @@ -4272,18 +4260,18 @@
        Optional retrySettings
      -

      Returns Promise<MRTRulesResponseEnvelope>

      -

      A promise of type CdnZones.MRTRulesResponseEnvelope.

      +

      Returns Promise<WAFRulePackageEnvelope>

      +

      A promise of type CdnZones.WAFRulePackageEnvelope.

    • -

      Get MRT rules associated with a zone.

      +

      Get a OWASP ModSecurity Core Rule Set.

      Type parameters

      @@ -4330,8 +4318,8 @@
      Optional rawResponse:
    -

    Returns Promise<T extends true ? Response : CdnZones.MRTRulesResponseEnvelope>

    -

    A promise of type Response if rawResponse is true, a promise of type CdnZones.MRTRulesResponseEnvelope otherwise.

    +

    Returns Promise<T extends true ? Response : CdnZones.WAFRulePackageEnvelope>

    +

    A promise of type Response if rawResponse is true, a promise of type CdnZones.WAFRulePackageEnvelope otherwise.

  • @@ -4346,7 +4334,7 @@

    getRateLimitingRule

  • @@ -4391,7 +4379,7 @@

    Returns Promise
    @@ -4459,7 +4447,7 @@

    getRateLimitingRules

  • @@ -4504,7 +4492,7 @@

    Returns Promise
    @@ -4572,7 +4560,7 @@

    getSecuritySettings

  • @@ -4617,7 +4605,7 @@

    Returns Promise
    @@ -4685,7 +4673,7 @@

    getSpeedSettings

  • @@ -4730,7 +4718,7 @@

    Returns Promise
    @@ -4798,7 +4786,7 @@

    getWafGroups

  • @@ -4843,7 +4831,7 @@

    Returns Promise
    @@ -4900,6 +4888,119 @@

    Returns Promise +
    + +

    getWafManagedRulesInRuleset

    +
      +
    • getWafManagedRulesInRuleset(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<WAFManagedRulesEnvelope>
    • +
    • getWafManagedRulesInRuleset<T>(options?: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.WAFManagedRulesEnvelope>
    • +
    +
      +
    • + +
      +
      +

      Retrieves all rules in the specified WAFv2 managed ruleset.

      +
      +

      If you would like to get a raw Response object use the other getWafManagedRulesInRuleset function.

      +
      +

      Parameters

      +
        +
      • +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      +

      Returns Promise<WAFManagedRulesEnvelope>

      +

      A promise of type CdnZones.WAFManagedRulesEnvelope.

      +
    • +
    • + +
      +
      +

      Retrieves all rules in the specified WAFv2 managed ruleset.

      +
      +
      +

      Type parameters

      +
        +
      • +

        T: boolean

        +
      • +
      +

      Parameters

      +
        +
      • +
        Optional options: { fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; rulesetId: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      • +
        Optional rawResponse: T
        +
        +
        +

        Set to true to return entire Response object instead of DTO.

        +
        +
        +
      • +
      +

      Returns Promise<T extends true ? Response : CdnZones.WAFManagedRulesEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.WAFManagedRulesEnvelope otherwise.

      +
    • +
    +

    getWafManagedRulesets

    @@ -4911,7 +5012,7 @@

    getWafManagedRulesets

  • @@ -4956,7 +5057,7 @@

    Returns Promise
    @@ -5024,7 +5125,7 @@

    getWafRule

  • @@ -5069,7 +5170,7 @@

    Returns Promise
    @@ -5137,7 +5238,7 @@

    getWafRules

  • @@ -5182,7 +5283,7 @@

    Returns Promise
    @@ -5250,7 +5351,7 @@

    getZonesInfo

  • @@ -5295,7 +5396,7 @@

    Returns Promise
    @@ -5363,7 +5464,7 @@

    listLogpushJob

  • @@ -5408,7 +5509,7 @@

    Returns Promise
    @@ -5466,29 +5567,29 @@

    Returns Promise

  • - -

    toggleOcapiCachingPageRule

    + +

    migrateZoneToWafV2

      -
    • toggleOcapiCachingPageRule(options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<OCAPICachingToggleRequest>
    • -
    • toggleOcapiCachingPageRule<T>(options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.OCAPICachingToggleRequest>
    • +
    • migrateZoneToWafV2(options: { body: object; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<WAFManagedRulesetsEnvelope>
    • +
    • migrateZoneToWafV2<T>(options: { body: object; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.WAFManagedRulesetsEnvelope>
    • -

      Request to enable or disable OCAPI Caching page rule.

      +

      Migrates a zone to WAFv2. Only applicable for existing zones using WAFv1.

      -

      If you would like to get a raw Response object use the other toggleOcapiCachingPageRule function.

      +

      If you would like to get a raw Response object use the other migrateZoneToWafV2 function.

      Parameters

      • -
        options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: object; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5496,7 +5597,7 @@
        options: { body
      • -
        body: OCAPICachingToggleRequest
        +
        body: object
      • Optional fetchOptions?: RequestInit
        @@ -5518,18 +5619,18 @@
        Optional retrySettings
      -

      Returns Promise<OCAPICachingToggleRequest>

      -

      A promise of type CdnZones.OCAPICachingToggleRequest.

      +

      Returns Promise<WAFManagedRulesetsEnvelope>

      +

      A promise of type CdnZones.WAFManagedRulesetsEnvelope.

    • -

      Request to enable or disable OCAPI Caching page rule.

      +

      Migrates a zone to WAFv2. Only applicable for existing zones using WAFv1.

      Type parameters

      @@ -5541,7 +5642,7 @@

      T: Parameters

      • -
        options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: object; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5549,7 +5650,7 @@
        options: { body
      • -
        body: OCAPICachingToggleRequest
        +
        body: object
      • Optional fetchOptions?: RequestInit
        @@ -5579,35 +5680,35 @@
        Optional rawResponse:
      -

      Returns Promise<T extends true ? Response : CdnZones.OCAPICachingToggleRequest>

      -

      A promise of type Response if rawResponse is true, a promise of type CdnZones.OCAPICachingToggleRequest otherwise.

      +

      Returns Promise<T extends true ? Response : CdnZones.WAFManagedRulesetsEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.WAFManagedRulesetsEnvelope otherwise.

    - -

    updateCertificate

    + +

    patchOwaspWafPackage

      -
    • updateCertificate(options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<CertificateEnvelope>
    • -
    • updateCertificate<T>(options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.CertificateEnvelope>
    • +
    • patchOwaspWafPackage(options: { body: WafPackagePatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<WAFRulePackageEnvelope>
    • +
    • patchOwaspWafPackage<T>(options: { body: WafPackagePatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.WAFRulePackageEnvelope>
    • -

      Updates the certificate for a given certificateId for a particular zone.

      +

      Patch a OWASP ModSecurity Core Rule Set.

      -

      If you would like to get a raw Response object use the other updateCertificate function.

      +

      If you would like to get a raw Response object use the other patchOwaspWafPackage function.

      Parameters

      • -
        options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: WafPackagePatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5615,7 +5716,7 @@
        options: { body
      • -
        body: CertificateRequest
        +
        body: WafPackagePatchRequest
      • Optional fetchOptions?: RequestInit
        @@ -5629,7 +5730,7 @@
        [key: -
        Optional parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -5637,18 +5738,18 @@
        Optional retrySettings
      -

      Returns Promise<CertificateEnvelope>

      -

      A promise of type CdnZones.CertificateEnvelope.

      +

      Returns Promise<WAFRulePackageEnvelope>

      +

      A promise of type CdnZones.WAFRulePackageEnvelope.

    • -

      Updates the certificate for a given certificateId for a particular zone.

      +

      Patch a OWASP ModSecurity Core Rule Set.

      Type parameters

      @@ -5660,7 +5761,7 @@

      T: Parameters

      • -
        options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: WafPackagePatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5668,7 +5769,7 @@
        options: { body
      • -
        body: CertificateRequest
        +
        body: WafPackagePatchRequest
      • Optional fetchOptions?: RequestInit
        @@ -5682,7 +5783,7 @@
        [key: -
        Optional parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -5698,35 +5799,35 @@
        Optional rawResponse:
      -

      Returns Promise<T extends true ? Response : CdnZones.CertificateEnvelope>

      -

      A promise of type Response if rawResponse is true, a promise of type CdnZones.CertificateEnvelope otherwise.

      +

      Returns Promise<T extends true ? Response : CdnZones.WAFRulePackageEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.WAFRulePackageEnvelope otherwise.

    - -

    updateCustomRule

    + +

    toggleOcapiCachingPageRule

      -
    • updateCustomRule(options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<CustomRuleEnvelope>
    • -
    • updateCustomRule<T>(options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.CustomRuleEnvelope>
    • +
    • toggleOcapiCachingPageRule(options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<OCAPICachingToggleRequest>
    • +
    • toggleOcapiCachingPageRule<T>(options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.OCAPICachingToggleRequest>
    • -

      Updates a specific custom rule.

      +

      Request to enable or disable OCAPI Caching page rule.

      -

      If you would like to get a raw Response object use the other updateCustomRule function.

      +

      If you would like to get a raw Response object use the other toggleOcapiCachingPageRule function.

      Parameters

      • -
        options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5734,7 +5835,7 @@
        options: { body
      • -
        body: CustomRulesPatchRequest
        +
        body: OCAPICachingToggleRequest
      • Optional fetchOptions?: RequestInit
        @@ -5748,7 +5849,7 @@
        [key: -
        Optional parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -5756,18 +5857,18 @@
        Optional retrySettings
      -

      Returns Promise<CustomRuleEnvelope>

      -

      A promise of type CdnZones.CustomRuleEnvelope.

      +

      Returns Promise<OCAPICachingToggleRequest>

      +

      A promise of type CdnZones.OCAPICachingToggleRequest.

    • -

      Updates a specific custom rule.

      +

      Request to enable or disable OCAPI Caching page rule.

      Type parameters

      @@ -5779,7 +5880,7 @@

      T: Parameters

      • -
        options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: OCAPICachingToggleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5787,7 +5888,7 @@
        options: { body
      • -
        body: CustomRulesPatchRequest
        +
        body: OCAPICachingToggleRequest
      • Optional fetchOptions?: RequestInit
        @@ -5801,7 +5902,7 @@
        [key: -
        Optional parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}
        +
        Optional parameters?: { organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -5817,35 +5918,35 @@
        Optional rawResponse:
      -

      Returns Promise<T extends true ? Response : CdnZones.CustomRuleEnvelope>

      -

      A promise of type Response if rawResponse is true, a promise of type CdnZones.CustomRuleEnvelope otherwise.

      +

      Returns Promise<T extends true ? Response : CdnZones.OCAPICachingToggleRequest>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.OCAPICachingToggleRequest otherwise.

    - -

    updateFirewallRule

    + +

    updateCertificate

      -
    • updateFirewallRule(options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<FirewallRuleEnvelope>
    • -
    • updateFirewallRule<T>(options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.FirewallRuleEnvelope>
    • +
    • updateCertificate(options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<CertificateEnvelope>
    • +
    • updateCertificate<T>(options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.CertificateEnvelope>
    • -

      (DEPRECATED) Update a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      +

      Updates the certificate for a given certificateId for a particular zone.

      -

      If you would like to get a raw Response object use the other updateFirewallRule function.

      +

      If you would like to get a raw Response object use the other updateCertificate function.

      Parameters

      • -
        options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5853,7 +5954,7 @@
        options: { body
      • -
        body: FirewallRule
        +
        body: CertificateRequest
      • Optional fetchOptions?: RequestInit
        @@ -5867,7 +5968,7 @@
        [key: -
        Optional parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -5875,18 +5976,18 @@
        Optional retrySettings
      -

      Returns Promise<FirewallRuleEnvelope>

      -

      A promise of type CdnZones.FirewallRuleEnvelope.

      +

      Returns Promise<CertificateEnvelope>

      +

      A promise of type CdnZones.CertificateEnvelope.

    • -

      (DEPRECATED) Update a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use eCDN custom rules moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints.

      +

      Updates the certificate for a given certificateId for a particular zone.

      Type parameters

      @@ -5898,7 +5999,7 @@

      T: Parameters

      • -
        options: { body: FirewallRule; fetchOptions?: RequestInit; headers?: {}; parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        options: { body: CertificateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }

        An object containing the options for this method.

        @@ -5906,7 +6007,7 @@
        options: { body
      • -
        body: FirewallRule
        +
        body: CertificateRequest
      • Optional fetchOptions?: RequestInit
        @@ -5920,7 +6021,7 @@
        [key: -
        Optional parameters?: { firewallRuleId: string; organizationId?: string; zoneId: string } & {}
        +
        Optional parameters?: { certificateId: string; organizationId?: string; zoneId: string } & {}
      • Optional retrySettings?: OperationOptions
        @@ -5936,14 +6037,133 @@
        Optional rawResponse:
      -

      Returns Promise<T extends true ? Response : CdnZones.FirewallRuleEnvelope>

      -

      A promise of type Response if rawResponse is true, a promise of type CdnZones.FirewallRuleEnvelope otherwise.

      +

      Returns Promise<T extends true ? Response : CdnZones.CertificateEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.CertificateEnvelope otherwise.

    - -

    updateLogpushJob

    + +

    updateCustomRule

    +
      +
    • updateCustomRule(options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<CustomRuleEnvelope>
    • +
    • updateCustomRule<T>(options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.CustomRuleEnvelope>
    • +
    +
      +
    • + +
      +
      +

      Updates a specific custom rule.

      +
      +

      If you would like to get a raw Response object use the other updateCustomRule function.

      +
      +

      Parameters

      +
        +
      • +
        options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          body: CustomRulesPatchRequest
          +
        • +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      +

      Returns Promise<CustomRuleEnvelope>

      +

      A promise of type CdnZones.CustomRuleEnvelope.

      +
    • +
    • + +
      +
      +

      Updates a specific custom rule.

      +
      +
      +

      Type parameters

      +
        +
      • +

        T: boolean

        +
      • +
      +

      Parameters

      +
        +
      • +
        options: { body: CustomRulesPatchRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          body: CustomRulesPatchRequest
          +
        • +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; ruleId: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      • +
        Optional rawResponse: T
        +
        +
        +

        Set to true to return entire Response object instead of DTO.

        +
        +
        +
      • +
      +

      Returns Promise<T extends true ? Response : CdnZones.CustomRuleEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.CustomRuleEnvelope otherwise.

      +
    • +
    +
    +
    + +

    updateLogpushJob

    • updateLogpushJob(options: { body: LogpushUpdateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<LogpushEnvelope>
    • updateLogpushJob<T>(options: { body: LogpushUpdateRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { jobId: string; organizationId?: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.LogpushEnvelope>
    • @@ -5952,7 +6172,7 @@

      updateLogpushJob

    • @@ -6000,7 +6220,7 @@

      Returns Promise
      @@ -6071,12 +6291,12 @@

      updateMrtRule

    • -

      Update the expression and enable or disable an MRT rule.

      +

      Update an MRT rule.

      If you would like to get a raw Response object use the other updateMrtRule function.

      @@ -6119,12 +6339,12 @@

      Returns Promise
      -

      Update the expression and enable or disable an MRT rule.

      +

      Update an MRT rule.

      Type parameters

      @@ -6190,12 +6410,12 @@

      updateMrtRuleset

    • -

      Update the MRT hostname or add MRT rules to the ruleset.

      +

      Update the MRT environment hostname or add MRT rules to route to an existing MRT environment.

      If you would like to get a raw Response object use the other updateMrtRuleset function.

      @@ -6238,12 +6458,12 @@

      Returns Promise
      -

      Update the MRT hostname or add MRT rules to the ruleset.

      +

      Update the MRT environment hostname or add MRT rules to route to an existing MRT environment.

      Type parameters

      @@ -6309,7 +6529,7 @@

      updateOrderOfCustomRules

    • @@ -6357,7 +6577,7 @@

      Returns Promise
      @@ -6428,7 +6648,7 @@

      updateRateLimitingRule

    • @@ -6476,7 +6696,7 @@

      Returns Promise
      @@ -6547,7 +6767,7 @@

      updateSecuritySettings

    • @@ -6595,7 +6815,7 @@

      Returns Promise
      @@ -6666,7 +6886,7 @@

      updateSpeedSettings

    • @@ -6714,7 +6934,7 @@

      Returns Promise
      @@ -6785,7 +7005,7 @@

      updateWafGroup

    • @@ -6833,7 +7053,7 @@

      Returns Promise
      @@ -6893,6 +7113,125 @@

      Returns Promise

    +
    + +

    updateWafManagedRuleInRuleset

    +
      +
    • updateWafManagedRuleInRuleset(options: { body: WAFManagedRuleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<WAFManagedRuleEnvelope>
    • +
    • updateWafManagedRuleInRuleset<T>(options: { body: WAFManagedRuleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.WAFManagedRuleEnvelope>
    • +
    +
      +
    • + +
      +
      +

      Updates a WAF managed rule in the specified WAFv2 managed ruleset.

      +
      +

      If you would like to get a raw Response object use the other updateWafManagedRuleInRuleset function.

      +
      +

      Parameters

      +
        +
      • +
        options: { body: WAFManagedRuleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          body: WAFManagedRuleRequest
          +
        • +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      +

      Returns Promise<WAFManagedRuleEnvelope>

      +

      A promise of type CdnZones.WAFManagedRuleEnvelope.

      +
    • +
    • + +
      +
      +

      Updates a WAF managed rule in the specified WAFv2 managed ruleset.

      +
      +
      +

      Type parameters

      +
        +
      • +

        T: boolean

        +
      • +
      +

      Parameters

      +
        +
      • +
        options: { body: WAFManagedRuleRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          body: WAFManagedRuleRequest
          +
        • +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; ruleId: string; rulesetId: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      • +
        Optional rawResponse: T
        +
        +
        +

        Set to true to return entire Response object instead of DTO.

        +
        +
        +
      • +
      +

      Returns Promise<T extends true ? Response : CdnZones.WAFManagedRuleEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.WAFManagedRuleEnvelope otherwise.

      +
    • +
    +

    updateWafManagedRuleset

    @@ -6904,7 +7243,7 @@

    updateWafManagedRuleset

  • @@ -6952,7 +7291,7 @@

    Returns Promise
    @@ -7023,7 +7362,7 @@

    updateWafRule

  • @@ -7071,7 +7410,7 @@

    Returns Promise
    @@ -7131,6 +7470,125 @@

    Returns Promise

  • +
    + +

    upsertOriginHeaderModification

    +
      +
    • upsertOriginHeaderModification(options: { body: OriginHeaderModificationPutRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }): Promise<OriginHeaderModificationEnvelope | OriginHeaderModificationEnvelope>
    • +
    • upsertOriginHeaderModification<T>(options: { body: OriginHeaderModificationPutRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }, rawResponse?: T): Promise<T extends true ? Response : CdnZones.OriginHeaderModificationEnvelope | CdnZones.OriginHeaderModificationEnvelope>
    • +
    +
      +
    • + +
      +
      +

      Upsert origin header modification.

      +
      +

      If you would like to get a raw Response object use the other upsertOriginHeaderModification function.

      +
      +

      Parameters

      +
        +
      • +
        options: { body: OriginHeaderModificationPutRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          body: OriginHeaderModificationPutRequest
          +
        • +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; type: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      +

      Returns Promise<OriginHeaderModificationEnvelope | OriginHeaderModificationEnvelope>

      +

      A promise of type CdnZones.OriginHeaderModificationEnvelope | CdnZones.OriginHeaderModificationEnvelope.

      +
    • +
    • + +
      +
      +

      Upsert origin header modification.

      +
      +
      +

      Type parameters

      +
        +
      • +

        T: boolean

        +
      • +
      +

      Parameters

      +
        +
      • +
        options: { body: OriginHeaderModificationPutRequest; fetchOptions?: RequestInit; headers?: {}; parameters?: { organizationId?: string; type: string; zoneId: string } & {}; retrySettings?: OperationOptions }
        +
        +
        +

        An object containing the options for this method.

        +
        +
        +
          +
        • +
          body: OriginHeaderModificationPutRequest
          +
        • +
        • +
          Optional fetchOptions?: RequestInit
          +
        • +
        • +
          Optional headers?: {}
          +
            +
          • +
            [key: string]: string
            +
          • +
          +
        • +
        • +
          Optional parameters?: { organizationId?: string; type: string; zoneId: string } & {}
          +
        • +
        • +
          Optional retrySettings?: OperationOptions
          +
        • +
        +
      • +
      • +
        Optional rawResponse: T
        +
        +
        +

        Set to true to return entire Response object instead of DTO.

        +
        +
        +
      • +
      +

      Returns Promise<T extends true ? Response : CdnZones.OriginHeaderModificationEnvelope | CdnZones.OriginHeaderModificationEnvelope>

      +

      A promise of type Response if rawResponse is true, a promise of type CdnZones.OriginHeaderModificationEnvelope | CdnZones.OriginHeaderModificationEnvelope otherwise.

      +
    • +
    +

    validateCustomHostname

    @@ -7142,7 +7600,7 @@

    validateCustomHostname

  • @@ -7190,7 +7648,7 @@

    Returns Promise
    @@ -7384,12 +7842,6 @@

    Returns Promise FirewallRule

  • -
  • - FirewallRuleEnvelope -
  • -
  • - FirewallRulesEnvelope -
  • Hsts
  • @@ -7468,6 +7920,15 @@

    Returns Promise OpenObject

  • +
  • + OriginHeaderModification +
  • +
  • + OriginHeaderModificationEnvelope +
  • +
  • + OriginHeaderModificationPutRequest +
  • PaginatedSearchResult
  • @@ -7543,6 +8004,9 @@

    Returns Promise SecuritySettingsEnvelope

  • +
  • + Selectable +
  • SimpleSearchResult
  • @@ -7585,6 +8049,18 @@

    Returns Promise TextQuery

  • +
  • + WAFManagedRule +
  • +
  • + WAFManagedRuleEnvelope +
  • +
  • + WAFManagedRuleRequest +
  • +
  • + WAFManagedRulesEnvelope +
  • WAFManagedRuleset
  • @@ -7597,6 +8073,12 @@

    Returns Promise WAFManagedRulesetsEnvelope

  • +
  • + WAFRulePackage +
  • +
  • + WAFRulePackageEnvelope +
  • WafGroup
  • @@ -7606,6 +8088,9 @@

    Returns Promise WafGroupsEnvelope

  • +
  • + WafPackagePatchRequest +
  • WafRule
  • @@ -7657,9 +8142,6 @@

    Returns Promise createCustomRule

  • -
  • - createFirewallRule -
  • createLogpushJob
  • @@ -7681,9 +8163,6 @@

    Returns Promise deleteCustomRule -
  • - deleteFirewallRule -
  • deleteLogpushJob
  • @@ -7693,6 +8172,9 @@

    Returns Promise deleteMrtRuleset +
  • + deleteOriginHeaderModification +
  • deleteRateLimitingRule
  • @@ -7706,16 +8188,16 @@

    Returns PromisegetCustomRules
  • - getFirewallRule + getLogpushJob
  • - getFirewallRules + getMrtRules
  • - getLogpushJob + getOriginHeaderModification
  • - getMrtRules + getOwaspWafPackage
  • getRateLimitingRule @@ -7732,6 +8214,9 @@

    Returns Promise getWafGroups

  • +
  • + getWafManagedRulesInRuleset +
  • getWafManagedRulesets
  • @@ -7747,6 +8232,12 @@

    Returns Promise listLogpushJob +
  • + migrateZoneToWafV2 +
  • +
  • + patchOwaspWafPackage +
  • toggleOcapiCachingPageRule
  • @@ -7756,9 +8247,6 @@

    Returns Promise updateCustomRule -
  • - updateFirewallRule -
  • updateLogpushJob
  • @@ -7783,12 +8271,18 @@

    Returns Promise updateWafGroup +
  • + updateWafManagedRuleInRuleset +
  • updateWafManagedRuleset
  • updateWafRule
  • +
  • + upsertOriginHeaderModification +
  • validateCustomHostname
  • diff --git a/docs/classes/customer.shoppercontext.html b/docs/classes/customer.shoppercontext.html index 906176d0..dfd113f1 100644 --- a/docs/classes/customer.shoppercontext.html +++ b/docs/classes/customer.shoppercontext.html @@ -99,7 +99,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const shopperContextClient = new Customer.ShopperContext(clientConfig); - API Version: 0.0.28
    + API Version: 0.0.29
    Last Updated:

    @@ -1002,13 +1002,14 @@

    createShopperContext

  • Creates the shopper's context based on shopperJWT.

    +

    With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the siteId parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025.

    If you would like to get a raw Response object use the other createShopperContext function.

    Parameters

    @@ -1050,13 +1051,14 @@

    Returns Promise

    Creates the shopper's context based on shopperJWT.

    +

    With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the siteId parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025.

    Type parameters

  • @@ -171,7 +171,7 @@

    Type aliases

  • RateLimited4
  • RateLimited5
  • Recurrence
  • -
  • Schedule
  • +
  • Schedule
  • SearchRequest
  • SearchRequestBase
  • Selectable
  • @@ -185,7 +185,7 @@

    Type aliases

  • TermFilter
  • TermQuery
  • TextQuery
  • -
  • TimeOfDay
  • +
  • TimeOfDay
  • @@ -217,7 +217,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -232,7 +232,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -307,7 +307,7 @@

    Static BoolFilter

    BoolFilter: { filters?: Array<Filter>; operator: string } & {}

    @@ -317,7 +317,7 @@

    Static BoolQuery

    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -327,7 +327,7 @@

    Static Campaign

    Campaign: { campaignId: string; coupons?: Array<string>; creationDate?: any; customerGroups?: Array<string>; description?: string; enabled?: boolean; endDate?: any; lastModified?: any; sourceCodeGroups?: Array<string>; startDate?: any } & {}
    @@ -337,7 +337,7 @@

    Static ChangeControlled

    ChangeControlled: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}
    @@ -347,7 +347,7 @@

    Static ChangeControlledChangeControlledDataType: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

    @@ -357,7 +357,7 @@

    Static ClosedObject

    ClosedObject: {} & {}
    @@ -367,7 +367,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -382,7 +382,7 @@

    Static DateRangeFilter
    DateRangeFilter: {}
    @@ -397,7 +397,7 @@

    Static DatetimeRangeFi
    DatetimeRangeFilter: {}
    @@ -412,7 +412,7 @@

    Static Error

    Error: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -422,7 +422,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -432,7 +432,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -447,7 +447,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -462,7 +462,7 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}
    @@ -472,7 +472,7 @@

    Static FilteredQuery

    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -482,7 +482,7 @@

    Static IntegerRangeFil
    IntegerRangeFilter: {}
    @@ -497,7 +497,7 @@

    Static L10nString

    L10nString: {} & {}
    @@ -507,7 +507,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -517,7 +517,7 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    @@ -527,7 +527,7 @@

    Static Money

    Money: { currencyMnemonic?: string; value?: number } & {}
    @@ -537,7 +537,7 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}
    @@ -547,7 +547,7 @@

    Static NestedQuery

    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -557,7 +557,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -572,7 +572,7 @@

    Static NumericRangeFil
    NumericRangeFilter: {}
    @@ -587,7 +587,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -602,7 +602,7 @@

    Static OpenObject

    OpenObject: {} & {}
    @@ -612,7 +612,7 @@

    Static PaginatedSearch
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -622,7 +622,7 @@

    Static PaginatedSearch
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -632,39 +632,144 @@

    Static Promotion

    Promotion: { archived?: boolean; assignmentInformation?: PromotionAssignmentInformation; creationDate?: any; currencyCode?: string; disableGloballyExcluded?: boolean; enabled?: boolean; exclusivity: string; id: string; lastModified?: any; name?: {} & {}; promotionClass?: string; tags?: Array<Tag> } & {}

    Static PromotionAbtestGroupAssignment

    -
    PromotionAbtestGroupAssignment: { abtestDescription: string; abtestId: string; enabled: boolean; schedule: Schedule; segmentDescription: string; segmentId: string } & {}
    +
    PromotionAbtestGroupAssignment: { abtestDescription: string; abtestId: string; enabled: boolean; schedule: Schedule; segmentDescription: string; segmentId: string }
    +
    +

    Type declaration

    +
      +
    • +
      abtestDescription: string
      +
    • +
    • +
      abtestId: string
      +
    • +
    • +
      enabled: boolean
      +
    • +
    • +
      schedule: Schedule
      +
    • +
    • +
      segmentDescription: string
      +
    • +
    • +
      segmentId: string
      +
    • +
    +

    Static PromotionAssignmentInformation

    -
    PromotionAssignmentInformation: { abtestId: string; abtestSegmentId: string; active: boolean; activeAbtestAssignments: Array<PromotionAbtestGroupAssignment>; activeCampaignAssignments: Array<PromotionCampaignAssignment>; campaignId: string; enabled: boolean; endDate: any; schedule: Schedule; scheduleType: string; startDate: any; upcomingAbtestAssignments: Array<PromotionAbtestGroupAssignment>; upcomingCampaignAssignments: Array<PromotionCampaignAssignment> } & {}
    +
    PromotionAssignmentInformation: { abtestId: string; abtestSegmentId: string; active: boolean; activeAbtestAssignments: Array<PromotionAbtestGroupAssignment>; activeCampaignAssignments: Array<PromotionCampaignAssignment>; campaignId: string; enabled: boolean; endDate: any; schedule: Schedule; scheduleType: string; startDate: any; upcomingAbtestAssignments: Array<PromotionAbtestGroupAssignment>; upcomingCampaignAssignments: Array<PromotionCampaignAssignment> }
    +
    +

    Type declaration

    + +

    Static PromotionCampaignAssignment

    -
    PromotionCampaignAssignment: { campaign: Campaign; campaignId: string; coupons: Array<string>; customerGroups: Array<string>; description: string; enabled: boolean; promotion: Promotion; promotionId: string; rank: number; schedule: Schedule; sourceCodeGroups: Array<string> } & {}
    +
    PromotionCampaignAssignment: { campaign: Campaign; campaignId: string; coupons: Array<string>; customerGroups: Array<string>; description: string; enabled: boolean; promotion: Promotion; promotionId: string; rank: number; schedule: Schedule; sourceCodeGroups: Array<string> }
    +
    +

    Type declaration

    +
      +
    • +
      campaign: Campaign
      +
    • +
    • +
      campaignId: string
      +
    • +
    • +
      coupons: Array<string>
      +
    • +
    • +
      customerGroups: Array<string>
      +
    • +
    • +
      description: string
      +
    • +
    • +
      enabled: boolean
      +
    • +
    • +
      promotion: Promotion
      +
    • +
    • +
      promotionId: string
      +
    • +
    • +
      rank: number
      +
    • +
    • +
      schedule: Schedule
      +
    • +
    • +
      sourceCodeGroups: Array<string>
      +
    • +
    +
    @@ -672,7 +777,7 @@

    Static PromotionCampaignPromotionCampaignAssignmentSearchResult: { hits: Array<PromotionCampaignAssignment>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}

    @@ -682,7 +787,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -692,7 +797,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -722,7 +827,7 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}
    @@ -732,7 +837,7 @@

    Static QueryFilter

    QueryFilter: { query: Query } & {}
    @@ -742,7 +847,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -757,7 +862,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -772,7 +877,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -782,7 +887,7 @@

    Static RangeFilter

    RangeFilter: {}
    @@ -797,7 +902,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -812,7 +917,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -827,7 +932,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -842,7 +947,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -857,7 +962,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -869,22 +974,47 @@

    Type declaration

    Static Recurrence

    -
    Recurrence: { dayOfWeek: Array<string>; timeOfDay: TimeOfDay } & {}
    +
    Recurrence: { dayOfWeek: Array<string>; timeOfDay: TimeOfDay }
    +
    +

    Type declaration

    +
      +
    • +
      dayOfWeek: Array<string>
      +
    • +
    • +
      timeOfDay: TimeOfDay
      +
    • +
    +
    - +

    Static Schedule

    -
    Schedule: { endDate: any; recurrence: Recurrence; startDate: any } & {}
    +
    Schedule: { endDate: any; recurrence: Recurrence; startDate: any }
    +
    +

    Type declaration

    +
      +
    • +
      endDate: any
      +
    • +
    • +
      recurrence: Recurrence
      +
    • +
    • +
      startDate: any
      +
    • +
    +
    @@ -892,7 +1022,7 @@

    Static SearchRequest

    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -902,7 +1032,7 @@

    Static SearchRequestBa
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -912,7 +1042,7 @@

    Static Selectable

    Selectable: {}
    @@ -927,7 +1057,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -937,7 +1067,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -947,7 +1077,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -962,7 +1092,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -972,7 +1102,7 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}
    @@ -982,7 +1112,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -994,12 +1124,20 @@

    Type declaration

    Static Tag

    -
    Tag: { tagId: string } & {}
    +
    Tag: { tagId: string }
    +
    +

    Type declaration

    +
      +
    • +
      tagId: string
      +
    • +
    +
    @@ -1007,7 +1145,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -1017,7 +1155,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -1027,19 +1165,30 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    - +

    Static TimeOfDay

    -
    TimeOfDay: { timeFrom: string; timeTo: string } & {}
    +
    TimeOfDay: { timeFrom: string; timeTo: string }
    +
    +

    Type declaration

    +
      +
    • +
      timeFrom: string
      +
    • +
    • +
      timeTo: string
      +
    • +
    +
    @@ -1055,7 +1204,7 @@

    constructor

    Parameters

    @@ -1096,7 +1245,7 @@

    assignmentsSearch

  • @@ -1217,7 +1366,7 @@

    Returns Promise
    @@ -1548,7 +1697,7 @@

    Returns PromiseRecurrence

  • - Schedule + Schedule
  • SearchRequest @@ -1590,7 +1739,7 @@

    Returns PromiseTextQuery

  • - TimeOfDay + TimeOfDay
  • constructor diff --git a/docs/classes/pricing.campaigns.html b/docs/classes/pricing.campaigns.html index b5eabf83..3cab3b34 100644 --- a/docs/classes/pricing.campaigns.html +++ b/docs/classes/pricing.campaigns.html @@ -97,7 +97,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const campaignsClient = new Pricing.Campaigns(clientConfig); - API Version: 1.0.27
    + API Version: 1.0.28
    Last Updated:

  • diff --git a/docs/classes/pricing.coupons.html b/docs/classes/pricing.coupons.html index c1b73a03..6ef77a57 100644 --- a/docs/classes/pricing.coupons.html +++ b/docs/classes/pricing.coupons.html @@ -97,7 +97,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const couponsClient = new Pricing.Coupons(clientConfig); - API Version: 1.0.27
    + API Version: 1.0.28
    Last Updated:

    @@ -175,7 +175,7 @@

    Type aliases

  • RateLimited4
  • RateLimited5
  • RedemptionLimitPerPeriod
  • -
  • RedemptionLimits
  • +
  • RedemptionLimits
  • SearchRequest
  • SearchRequestBase
  • Selectable
  • @@ -227,7 +227,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -242,7 +242,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -317,7 +317,7 @@

    Static BoolFilter

    BoolFilter: { filters?: Array<Filter>; operator: string } & {}
    @@ -327,7 +327,7 @@

    Static BoolQuery

    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -337,7 +337,7 @@

    Static ChangeControlled

    ChangeControlled: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}
    @@ -347,7 +347,7 @@

    Static ChangeControlledChangeControlledDataType: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

    @@ -357,59 +357,153 @@

    Static ClosedObject

    ClosedObject: {} & {}

    Static Coupon

    -
    Coupon: { couponId: string; creationDate?: any; description?: string; enabled: boolean; exportedCodeCount?: number; lastModified?: any; redemptionCount?: number; redemptionLimits?: RedemptionLimits; singleCode?: string; systemCodesConfig?: CouponSystemCodeConfig; totalCodesCount?: number; type: string } & {}
    +
    Coupon: { couponId: string; creationDate?: any; description?: string; enabled: boolean; exportedCodeCount?: number; lastModified?: any; redemptionCount?: number; redemptionLimits?: RedemptionLimits; singleCode?: string; systemCodesConfig?: CouponSystemCodeConfig; totalCodesCount?: number; type: string }
    +
    +

    Type declaration

    +
      +
    • +
      couponId: string
      +
    • +
    • +
      Optional creationDate?: any
      +
    • +
    • +
      Optional description?: string
      +
    • +
    • +
      enabled: boolean
      +
    • +
    • +
      Optional exportedCodeCount?: number
      +
    • +
    • +
      Optional lastModified?: any
      +
    • +
    • +
      Optional redemptionCount?: number
      +
    • +
    • +
      Optional redemptionLimits?: RedemptionLimits
      +
    • +
    • +
      Optional singleCode?: string
      +
    • +
    • +
      Optional systemCodesConfig?: CouponSystemCodeConfig
      +
    • +
    • +
      Optional totalCodesCount?: number
      +
    • +
    • +
      type: string
      +
    • +
    +

    Static CouponCode

    -
    CouponCode: { code: string; issued: boolean; redemptionCount: number } & {}
    +
    CouponCode: { code: string; issued: boolean; redemptionCount: number }
    +
    +

    Type declaration

    +
      +
    • +
      code: string
      +
    • +
    • +
      issued: boolean
      +
    • +
    • +
      redemptionCount: number
      +
    • +
    +

    Static CouponCodeRedemptionRequest

    -
    CouponCodeRedemptionRequest: { code: string; customerEmail?: string; orderNo: string } & {}
    +
    CouponCodeRedemptionRequest: { code: string; customerEmail?: string; orderNo: string }
    +
    +

    Type declaration

    +
      +
    • +
      code: string
      +
    • +
    • +
      Optional customerEmail?: string
      +
    • +
    • +
      orderNo: string
      +
    • +
    +

    Static CouponCodes

    -
    CouponCodes: { data: Array<CouponCode>; limit?: number; offset?: any; total: number } & {}
    +
    CouponCodes: { data: Array<CouponCode>; limit?: number; offset?: any; total: number }
    +
    +

    Type declaration

    +
      +
    • +
      data: Array<CouponCode>
      +
    • +
    • +
      Optional limit?: number
      +
    • +
    • +
      Optional offset?: any
      +
    • +
    • +
      total: number
      +
    • +
    +

    Static CouponMultiCodesRequest

    -
    CouponMultiCodesRequest: { codes: Array<string> } & {}
    +
    CouponMultiCodesRequest: { codes: Array<string> }
    +
    +

    Type declaration

    +
      +
    • +
      codes: Array<string>
      +
    • +
    +
    @@ -417,7 +511,7 @@

    Static CouponNotFound<
    CouponNotFound: {}
    @@ -429,12 +523,35 @@

    Type declaration

    Static CouponRedemption

    -
    CouponRedemption: { code: string; couponId: string; creationDate: any; customerEmail: string; orderNo: string; viewOrderUrl: string } & {}
    +
    CouponRedemption: { code: string; couponId: string; creationDate: any; customerEmail: string; orderNo: string; viewOrderUrl: string }
    +
    +

    Type declaration

    +
      +
    • +
      code: string
      +
    • +
    • +
      couponId: string
      +
    • +
    • +
      creationDate: any
      +
    • +
    • +
      customerEmail: string
      +
    • +
    • +
      orderNo: string
      +
    • +
    • +
      viewOrderUrl: string
      +
    • +
    +
    @@ -452,19 +569,30 @@

    Static CouponSearchRes
    CouponSearchResult: { hits: Array<Coupon>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}

    Static CouponSystemCodeConfig

    -
    CouponSystemCodeConfig: { codePrefix: string; numberOfCodes: number } & {}
    +
    CouponSystemCodeConfig: { codePrefix: string; numberOfCodes: number }
    +
    +

    Type declaration

    +
      +
    • +
      codePrefix: string
      +
    • +
    • +
      numberOfCodes: number
      +
    • +
    +
    @@ -472,7 +600,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -487,7 +615,7 @@

    Static DateRangeFilter
    DateRangeFilter: {}
    @@ -502,7 +630,7 @@

    Static DatetimeRangeFi
    DatetimeRangeFilter: {}
    @@ -517,7 +645,7 @@

    Static Error

    Error: { detail?: string; instance?: string; title?: string; type: string } & {}

    @@ -527,7 +655,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}

    @@ -537,7 +665,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -552,7 +680,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -567,7 +695,7 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}
    @@ -577,7 +705,7 @@

    Static FilteredQuery

    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -587,7 +715,7 @@

    Static IntegerRangeFil
    IntegerRangeFilter: {}
    @@ -602,7 +730,7 @@

    Static L10nString

    L10nString: {} & {}
    @@ -612,7 +740,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -622,7 +750,7 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    @@ -632,7 +760,7 @@

    Static Money

    Money: { currencyMnemonic?: string; value?: number } & {}
    @@ -642,7 +770,7 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}
    @@ -652,7 +780,7 @@

    Static NestedQuery

    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -662,7 +790,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -677,7 +805,7 @@

    Static NumericRangeFil
    NumericRangeFilter: {}
    @@ -692,7 +820,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -707,7 +835,7 @@

    Static OpenObject

    OpenObject: {} & {}
    @@ -717,7 +845,7 @@

    Static PaginatedSearch
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -727,7 +855,7 @@

    Static PaginatedSearch
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -737,7 +865,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -747,7 +875,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -777,7 +905,7 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}
    @@ -787,7 +915,7 @@

    Static QueryFilter

    QueryFilter: { query: Query } & {}
    @@ -797,7 +925,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -812,7 +940,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -827,7 +955,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -837,7 +965,7 @@

    Static RangeFilter

    RangeFilter: {}
    @@ -852,7 +980,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -867,7 +995,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -882,7 +1010,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -897,7 +1025,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -912,7 +1040,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -924,22 +1052,47 @@

    Type declaration

    Static RedemptionLimitPerPeriod

    -
    RedemptionLimitPerPeriod: { limit: number; redemptionTimeFrame: number } & {}
    +
    RedemptionLimitPerPeriod: { limit: number; redemptionTimeFrame: number }
    +
    +

    Type declaration

    +
      +
    • +
      limit: number
      +
    • +
    • +
      redemptionTimeFrame: number
      +
    • +
    +
    - +

    Static RedemptionLimits

    -
    RedemptionLimits: { limitPerCode: number; limitPerCustomer: number; limitPerTimeFrame: RedemptionLimitPerPeriod } & {}
    +
    RedemptionLimits: { limitPerCode: number; limitPerCustomer: number; limitPerTimeFrame: RedemptionLimitPerPeriod }
    +
    +

    Type declaration

    + +
    @@ -947,7 +1100,7 @@

    Static SearchRequest

    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -957,7 +1110,7 @@

    Static SearchRequestBa
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -967,7 +1120,7 @@

    Static Selectable

    Selectable: {}
    @@ -982,7 +1135,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -992,7 +1145,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -1002,7 +1155,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -1017,7 +1170,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -1027,7 +1180,7 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}
    @@ -1037,7 +1190,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -1052,7 +1205,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -1062,7 +1215,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -1072,7 +1225,7 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    @@ -1090,7 +1243,7 @@

    constructor

    Parameters

    @@ -1131,7 +1284,7 @@

    couponRedemptionsSearch

  • @@ -1207,7 +1360,7 @@

    Returns Promise
    @@ -1306,7 +1459,7 @@

    couponsSearch

  • @@ -1381,7 +1534,7 @@

    Returns Promise
    @@ -1479,7 +1632,7 @@

    createCoupon

  • @@ -1528,7 +1681,7 @@

    Returns Promise
    @@ -1600,7 +1753,7 @@

    deleteCoupon

  • @@ -1645,7 +1798,7 @@

    Returns Promise
    @@ -1713,7 +1866,7 @@

    getCoupon

  • @@ -1759,7 +1912,7 @@

    Returns Promise
    @@ -1828,7 +1981,7 @@

    getCouponCodes

  • @@ -1874,7 +2027,7 @@

    Returns Promise
    @@ -1943,7 +2096,7 @@

    redeemCoupon

  • @@ -1992,7 +2145,7 @@

    Returns Promise
    @@ -2064,7 +2217,7 @@

    updateCoupon

  • @@ -2112,7 +2265,7 @@

    Returns Promise
    @@ -2183,7 +2336,7 @@

    updateCouponCodes

  • @@ -2231,7 +2384,7 @@

    Returns Promise
    @@ -2507,7 +2660,7 @@

    Returns PromiseRedemptionLimitPerPeriod

  • - RedemptionLimits + RedemptionLimits
  • SearchRequest diff --git a/docs/classes/pricing.giftcertificates.html b/docs/classes/pricing.giftcertificates.html index bc781933..23c897d0 100644 --- a/docs/classes/pricing.giftcertificates.html +++ b/docs/classes/pricing.giftcertificates.html @@ -97,7 +97,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const giftCertificatesClient = new Pricing.GiftCertificates(clientConfig); - API Version: 1.0.29
    + API Version: 1.0.30
    Last Updated:

  • @@ -220,12 +220,29 @@

    Type aliases

    Static AccountTransaction

    -
    AccountTransaction: { amount: Money; orderNo: string; timestamp: any; typeCode: string } & {}
    +
    AccountTransaction: { amount: Money; orderNo: string; timestamp: any; typeCode: string }
    +
    +

    Type declaration

    +
      +
    • +
      amount: Money
      +
    • +
    • +
      orderNo: string
      +
    • +
    • +
      timestamp: any
      +
    • +
    • +
      typeCode: string
      +
    • +
    +
    @@ -233,7 +250,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -248,7 +265,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -323,7 +340,7 @@

    Static BoolFilter

    BoolFilter: { filters?: Array<Filter>; operator: string } & {}

    @@ -333,7 +350,7 @@

    Static BoolQuery

    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -343,7 +360,7 @@

    Static ChangeControlled

    ChangeControlled: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

    @@ -353,7 +370,7 @@

    Static ChangeControlledChangeControlledDataType: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

  • @@ -363,7 +380,7 @@

    Static ClosedObject

    ClosedObject: {} & {}
    @@ -373,7 +390,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -388,7 +405,7 @@

    Static DateRangeFilter
    DateRangeFilter: {}
    @@ -403,7 +420,7 @@

    Static DatetimeRangeFi
    DatetimeRangeFilter: {}
    @@ -418,7 +435,7 @@

    Static Error

    Error: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -428,7 +445,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -438,7 +455,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -453,7 +470,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -468,7 +485,7 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}
    @@ -478,7 +495,7 @@

    Static FilteredQuery

    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -488,7 +505,7 @@

    Static GiftCertificate

    GiftCertificate: { amount?: Money; balance?: Money; creationDate?: any; description?: string; enabled?: boolean; lastModified?: any; maskedGiftCertificateCode?: string; merchantId?: string; message?: string; orderNo?: string; recipientEmail?: string; recipientName?: string; senderName?: string; status?: string; transactions?: Array<AccountTransaction> } & {}
    @@ -498,7 +515,7 @@

    Static GiftCertificate
    GiftCertificateAmountOutOfRangeException: {}
    @@ -513,7 +530,7 @@

    Static GiftCertificate
    GiftCertificateCreateMerchantIdNotUniqueException: {}
    @@ -528,7 +545,7 @@

    Static GiftCertificate
    GiftCertificateNotFound: {}
    @@ -543,19 +560,36 @@

    Static GiftCertificate
    GiftCertificateSearchResult: { hits: Array<GiftCertificate>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}

    Static GiftCertificates

    -
    GiftCertificates: { data?: Array<GiftCertificate>; limit: number; offset: any; total?: number } & {}
    +
    GiftCertificates: { data?: Array<GiftCertificate>; limit: number; offset: any; total?: number }
    +
    +

    Type declaration

    +
      +
    • +
      Optional data?: Array<GiftCertificate>
      +
    • +
    • +
      limit: number
      +
    • +
    • +
      offset: any
      +
    • +
    • +
      Optional total?: number
      +
    • +
    +
    @@ -563,7 +597,7 @@

    Static IntegerRangeFil
    IntegerRangeFilter: {}
    @@ -578,7 +612,7 @@

    Static InvalidGiftCert
    InvalidGiftCertificateException: {}
    @@ -593,7 +627,7 @@

    Static InvalidGiftCert
    InvalidGiftCertificateStatus: {}
    @@ -608,7 +642,7 @@

    Static InvalidRecipientInvalidRecipientEmail: {}

    @@ -623,7 +657,7 @@

    Static L10nString

    L10nString: {} & {}

    @@ -633,7 +667,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -643,7 +677,7 @@

    Static MalformedQuery

    MalformedQuery: {}
    @@ -658,19 +692,30 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    Static Money

    -
    Money: { currencyMnemonic: string; value: number } & {}
    +
    Money: { currencyMnemonic: string; value: number }
    +
    +

    Type declaration

    +
      +
    • +
      currencyMnemonic: string
      +
    • +
    • +
      value: number
      +
    • +
    +
    @@ -678,7 +723,7 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}
    @@ -688,7 +733,7 @@

    Static NestedQuery

    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -698,7 +743,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -713,7 +758,7 @@

    Static NumericRangeFil
    NumericRangeFilter: {}
    @@ -728,7 +773,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -743,7 +788,7 @@

    Static OpenObject

    OpenObject: {} & {}
    @@ -753,7 +798,7 @@

    Static PaginatedSearch
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -763,7 +808,7 @@

    Static PaginatedSearch
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -773,7 +818,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -783,7 +828,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -813,7 +858,7 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}
    @@ -823,7 +868,7 @@

    Static QueryFilter

    QueryFilter: { query: Query } & {}
    @@ -833,7 +878,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -848,7 +893,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -863,7 +908,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -873,7 +918,7 @@

    Static RangeFilter

    RangeFilter: {}
    @@ -888,7 +933,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -903,7 +948,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -918,7 +963,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -933,7 +978,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -948,7 +993,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -963,7 +1008,7 @@

    Static SearchRequest

    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -973,7 +1018,7 @@

    Static SearchRequestBa
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -983,7 +1028,7 @@

    Static Selectable

    Selectable: {}
    @@ -998,7 +1043,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -1008,7 +1053,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -1018,7 +1063,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -1033,7 +1078,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -1043,7 +1088,7 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}
    @@ -1053,7 +1098,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -1068,7 +1113,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -1078,7 +1123,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -1088,7 +1133,7 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    @@ -1098,7 +1143,7 @@

    Static UnqueryableField

    UnqueryableField: {}
    @@ -1121,7 +1166,7 @@

    constructor

    Parameters

    @@ -1162,7 +1207,7 @@

    createGiftCertificate

  • @@ -1211,7 +1256,7 @@

    Returns Promise
    @@ -1283,7 +1328,7 @@

    deleteGiftCertificate

  • @@ -1328,7 +1373,7 @@

    Returns Promise
    @@ -1396,7 +1441,7 @@

    getGiftCertificate

  • @@ -1441,7 +1486,7 @@

    Returns Promise
    @@ -1509,7 +1554,7 @@

    giftCertificatesSearch

  • @@ -1634,7 +1679,7 @@

    Returns Promise
    @@ -1782,7 +1827,7 @@

    updateGiftCertificate

  • @@ -1830,7 +1875,7 @@

    Returns Promise
    diff --git a/docs/classes/pricing.promotions.html b/docs/classes/pricing.promotions.html index 8a05c5fe..f6cc17b9 100644 --- a/docs/classes/pricing.promotions.html +++ b/docs/classes/pricing.promotions.html @@ -97,7 +97,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const promotionsClient = new Pricing.Promotions(clientConfig); - API Version: 1.0.23
    + API Version: 1.0.24
    Last Updated:

    @@ -173,7 +173,7 @@

    Type aliases

  • RateLimited4
  • RateLimited5
  • Recurrence
  • -
  • Schedule
  • +
  • Schedule
  • SearchRequest
  • SearchRequestBase
  • Selectable
  • @@ -187,7 +187,7 @@

    Type aliases

  • TermFilter
  • TermQuery
  • TextQuery
  • -
  • TimeOfDay
  • +
  • TimeOfDay
  • @@ -223,7 +223,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -238,7 +238,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -313,7 +313,7 @@

    Static BoolFilter

    BoolFilter: { filters?: Array<Filter>; operator: string } & {}

    @@ -323,7 +323,7 @@

    Static BoolQuery

    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -333,7 +333,7 @@

    Static Campaign

    Campaign: { campaignId: string; coupons?: Array<string>; creationDate?: any; customerGroups?: Array<string>; description?: string; enabled?: boolean; endDate?: any; lastModified?: any; sourceCodeGroups?: Array<string>; startDate?: any } & {}
    @@ -343,7 +343,7 @@

    Static ChangeControlled

    ChangeControlled: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

    @@ -353,7 +353,7 @@

    Static ChangeControlledChangeControlledDataType: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

  • @@ -363,7 +363,7 @@

    Static ClosedObject

    ClosedObject: {} & {}
    @@ -373,7 +373,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -388,7 +388,7 @@

    Static DateRangeFilter
    DateRangeFilter: {}
    @@ -403,7 +403,7 @@

    Static DatetimeRangeFi
    DatetimeRangeFilter: {}
    @@ -418,7 +418,7 @@

    Static Error

    Error: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -428,7 +428,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -438,7 +438,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -453,7 +453,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -468,7 +468,7 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}
    @@ -478,7 +478,7 @@

    Static FilteredQuery

    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -488,7 +488,7 @@

    Static IntegerRangeFil
    IntegerRangeFilter: {}
    @@ -503,7 +503,7 @@

    Static L10nString

    L10nString: {} & {}
    @@ -513,7 +513,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -523,7 +523,7 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    @@ -533,7 +533,7 @@

    Static Money

    Money: { currencyMnemonic?: string; value?: number } & {}
    @@ -543,7 +543,7 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}
    @@ -553,7 +553,7 @@

    Static NestedQuery

    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -563,7 +563,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -578,7 +578,7 @@

    Static NumericRangeFil
    NumericRangeFilter: {}
    @@ -593,7 +593,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -608,7 +608,7 @@

    Static OpenObject

    OpenObject: {} & {}
    @@ -618,7 +618,7 @@

    Static PaginatedSearch
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -628,7 +628,7 @@

    Static PaginatedSearch
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -638,39 +638,144 @@

    Static Promotion

    Promotion: { archived?: boolean; assignmentInformation?: PromotionAssignmentInformation; creationDate?: any; currencyCode?: string; disableGloballyExcluded?: boolean; enabled?: boolean; exclusivity?: string; id?: string; lastModified?: any; name?: {} & {}; promotionClass?: string; siteId?: string; tags?: Array<Tag> } & {}

    Static PromotionAbtestGroupAssignment

    -
    PromotionAbtestGroupAssignment: { abtestDescription: string; abtestId: string; enabled: boolean; schedule: Schedule; segmentDescription: string; segmentId: string } & {}
    +
    PromotionAbtestGroupAssignment: { abtestDescription: string; abtestId: string; enabled: boolean; schedule: Schedule; segmentDescription: string; segmentId: string }
    +
    +

    Type declaration

    +
      +
    • +
      abtestDescription: string
      +
    • +
    • +
      abtestId: string
      +
    • +
    • +
      enabled: boolean
      +
    • +
    • +
      schedule: Schedule
      +
    • +
    • +
      segmentDescription: string
      +
    • +
    • +
      segmentId: string
      +
    • +
    +

    Static PromotionAssignmentInformation

    -
    PromotionAssignmentInformation: { abtestId?: string; abtestSegmentId?: string; active: boolean; activeAbtestAssignments?: Array<PromotionAbtestGroupAssignment>; activeCampaignAssignments: Array<PromotionCampaignAssignment>; campaignId: string; enabled: boolean; endDate?: any; schedule: Schedule; scheduleType: string; startDate?: any; upcomingAbtestAssignments?: Array<PromotionAbtestGroupAssignment>; upcomingCampaignAssignments?: Array<PromotionCampaignAssignment> } & {}
    +
    PromotionAssignmentInformation: { abtestId?: string; abtestSegmentId?: string; active: boolean; activeAbtestAssignments?: Array<PromotionAbtestGroupAssignment>; activeCampaignAssignments: Array<PromotionCampaignAssignment>; campaignId: string; enabled: boolean; endDate?: any; schedule: Schedule; scheduleType: string; startDate?: any; upcomingAbtestAssignments?: Array<PromotionAbtestGroupAssignment>; upcomingCampaignAssignments?: Array<PromotionCampaignAssignment> }
    +
    +

    Type declaration

    + +

    Static PromotionCampaignAssignment

    -
    PromotionCampaignAssignment: { campaign?: Campaign; campaignId: string; coupons?: Array<string>; customerGroups?: Array<string>; description: string; enabled: boolean; promotion?: Promotion; promotionId: string; rank?: number; schedule: Schedule; sourceCodeGroups?: Array<string> } & {}
    +
    PromotionCampaignAssignment: { campaign?: Campaign; campaignId: string; coupons?: Array<string>; customerGroups?: Array<string>; description: string; enabled: boolean; promotion?: Promotion; promotionId: string; rank?: number; schedule: Schedule; sourceCodeGroups?: Array<string> }
    +
    +

    Type declaration

    +
      +
    • +
      Optional campaign?: Campaign
      +
    • +
    • +
      campaignId: string
      +
    • +
    • +
      Optional coupons?: Array<string>
      +
    • +
    • +
      Optional customerGroups?: Array<string>
      +
    • +
    • +
      description: string
      +
    • +
    • +
      enabled: boolean
      +
    • +
    • +
      Optional promotion?: Promotion
      +
    • +
    • +
      promotionId: string
      +
    • +
    • +
      Optional rank?: number
      +
    • +
    • +
      schedule: Schedule
      +
    • +
    • +
      Optional sourceCodeGroups?: Array<string>
      +
    • +
    +
    @@ -678,7 +783,7 @@

    Static PromotionIdConflict<
    PromotionIdConflict: {}
    @@ -693,7 +798,7 @@

    Static PromotionNotFou
    PromotionNotFound: {}
    @@ -718,7 +823,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -728,7 +833,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -758,7 +863,7 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}
    @@ -768,7 +873,7 @@

    Static QueryFilter

    QueryFilter: { query: Query } & {}
    @@ -778,7 +883,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -793,7 +898,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -808,7 +913,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -818,7 +923,7 @@

    Static RangeFilter

    RangeFilter: {}
    @@ -833,7 +938,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -848,7 +953,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -863,7 +968,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -878,7 +983,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -893,7 +998,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -905,22 +1010,47 @@

    Type declaration

    Static Recurrence

    -
    Recurrence: { dayOfWeek: Array<string>; timeOfDay: TimeOfDay } & {}
    +
    Recurrence: { dayOfWeek: Array<string>; timeOfDay: TimeOfDay }
    +
    +

    Type declaration

    +
      +
    • +
      dayOfWeek: Array<string>
      +
    • +
    • +
      timeOfDay: TimeOfDay
      +
    • +
    +
    - +

    Static Schedule

    -
    Schedule: { endDate?: any; recurrence?: Recurrence; startDate?: any } & {}
    +
    Schedule: { endDate?: any; recurrence?: Recurrence; startDate?: any }
    +
    +

    Type declaration

    +
      +
    • +
      Optional endDate?: any
      +
    • +
    • +
      Optional recurrence?: Recurrence
      +
    • +
    • +
      Optional startDate?: any
      +
    • +
    +
    @@ -928,7 +1058,7 @@

    Static SearchRequest

    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -938,7 +1068,7 @@

    Static SearchRequestBa
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -948,7 +1078,7 @@

    Static Selectable

    Selectable: {}
    @@ -963,7 +1093,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -973,7 +1103,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -983,7 +1113,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -998,7 +1128,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -1008,7 +1138,7 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}
    @@ -1018,7 +1148,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -1030,12 +1160,20 @@

    Type declaration

    Static Tag

    -
    Tag: { tagId: string } & {}
    +
    Tag: { tagId: string }
    +
    +

    Type declaration

    +
      +
    • +
      tagId: string
      +
    • +
    +
    @@ -1043,7 +1181,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -1053,7 +1191,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -1063,19 +1201,30 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    - +

    Static TimeOfDay

    -
    TimeOfDay: { timeFrom: string; timeTo: string } & {}
    +
    TimeOfDay: { timeFrom: string; timeTo: string }
    +
    +

    Type declaration

    +
      +
    • +
      timeFrom: string
      +
    • +
    • +
      timeTo: string
      +
    • +
    +
    @@ -1091,7 +1240,7 @@

    constructor

    Parameters

    @@ -1132,7 +1281,7 @@

    createPromotion

  • @@ -1180,7 +1329,7 @@

    Returns Promise
    @@ -1251,7 +1400,7 @@

    deletePromotion

  • @@ -1296,7 +1445,7 @@

    Returns Promise
    @@ -1364,7 +1513,7 @@

    getPromotion

  • @@ -1409,7 +1558,7 @@

    Returns Promise
    @@ -1477,7 +1626,7 @@

    promotionsSearch

  • @@ -1570,7 +1719,7 @@

    Returns Promise
    @@ -1686,7 +1835,7 @@

    updatePromotion

  • @@ -1734,7 +1883,7 @@

    Returns Promise
    @@ -2010,7 +2159,7 @@

    Returns PromiseRecurrence

  • - Schedule + Schedule
  • SearchRequest @@ -2052,7 +2201,7 @@

    Returns PromiseTextQuery

  • - TimeOfDay + TimeOfDay
  • constructor diff --git a/docs/classes/pricing.shoppergiftcertificates.html b/docs/classes/pricing.shoppergiftcertificates.html index eb55fb46..917963f7 100644 --- a/docs/classes/pricing.shoppergiftcertificates.html +++ b/docs/classes/pricing.shoppergiftcertificates.html @@ -99,7 +99,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const shopperGiftCertificatesClient = new Pricing.ShopperGiftCertificates(clientConfig); - API Version: 1.0.16
    + API Version: 1.0.17
    Last Updated:

  • @@ -212,7 +212,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -227,7 +227,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -302,7 +302,7 @@

    Static BoolFilter

    BoolFilter: { filters?: Array<Filter>; operator: string } & {}

  • @@ -312,7 +312,7 @@

    Static BoolQuery

    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -322,7 +322,7 @@

    Static ChangeControlled

    ChangeControlled: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}
    @@ -332,7 +332,7 @@

    Static ChangeControlledChangeControlledDataType: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

    @@ -342,7 +342,7 @@

    Static ClosedObject

    ClosedObject: {} & {}
    @@ -352,7 +352,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -367,7 +367,7 @@

    Static DateRangeFilter
    DateRangeFilter: {}
    @@ -382,7 +382,7 @@

    Static DatetimeRangeFi
    DatetimeRangeFilter: {}
    @@ -397,7 +397,7 @@

    Static Error

    Error: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -407,7 +407,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -417,7 +417,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -432,7 +432,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -447,7 +447,7 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}
    @@ -457,7 +457,7 @@

    Static FilteredQuery

    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -474,12 +474,20 @@

    Static GiftCertificate

    Static GiftCertificateRequest

    -
    GiftCertificateRequest: { giftCertificateCode: string } & {}
    +
    GiftCertificateRequest: { giftCertificateCode: string }
    +
    +

    Type declaration

    +
      +
    • +
      giftCertificateCode: string
      +
    • +
    +
    @@ -487,7 +495,7 @@

    Static IntegerRangeFil
    IntegerRangeFilter: {}
    @@ -502,7 +510,7 @@

    Static L10nString

    L10nString: {} & {}

    @@ -512,7 +520,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -522,7 +530,7 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    @@ -532,7 +540,7 @@

    Static Money

    Money: { currencyMnemonic?: string; value?: number } & {}
    @@ -542,7 +550,7 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}
    @@ -552,7 +560,7 @@

    Static NestedQuery

    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -562,7 +570,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -577,7 +585,7 @@

    Static NotFound

    NotFound: {}
    @@ -592,7 +600,7 @@

    Static NumericRangeFil
    NumericRangeFilter: {}
    @@ -607,7 +615,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -622,7 +630,7 @@

    Static OpenObject

    OpenObject: {} & {}
    @@ -632,7 +640,7 @@

    Static PaginatedSearch
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -642,7 +650,7 @@

    Static PaginatedSearch
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -652,7 +660,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -662,7 +670,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -692,7 +700,7 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}
    @@ -702,7 +710,7 @@

    Static QueryFilter

    QueryFilter: { query: Query } & {}
    @@ -712,7 +720,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -727,7 +735,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -742,7 +750,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -752,7 +760,7 @@

    Static RangeFilter

    RangeFilter: {}
    @@ -767,7 +775,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -782,7 +790,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -797,7 +805,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -812,7 +820,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -827,7 +835,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -842,7 +850,7 @@

    Static SearchRequest

    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -852,7 +860,7 @@

    Static SearchRequestBa
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -862,7 +870,7 @@

    Static Selectable

    Selectable: {}
    @@ -877,7 +885,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -887,7 +895,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -897,7 +905,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -912,7 +920,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -922,7 +930,7 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}
    @@ -932,7 +940,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -947,7 +955,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -957,7 +965,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -967,7 +975,7 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    @@ -985,7 +993,7 @@

    constructor

    Parameters

    @@ -1026,7 +1034,7 @@

    getGiftCertificate

  • @@ -1074,7 +1082,7 @@

    Returns Promise
    diff --git a/docs/classes/pricing.shopperpromotions.html b/docs/classes/pricing.shopperpromotions.html index 8428242c..d61bee20 100644 --- a/docs/classes/pricing.shopperpromotions.html +++ b/docs/classes/pricing.shopperpromotions.html @@ -99,7 +99,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const shopperPromotionsClient = new Pricing.ShopperPromotions(clientConfig); - API Version: 1.0.26
    + API Version: 1.0.27
    Last Updated:

    @@ -214,7 +214,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -229,7 +229,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -304,7 +304,7 @@

    Static BoolFilter

    BoolFilter: { filters?: Array<Filter>; operator: string } & {}
    @@ -314,7 +314,7 @@

    Static BoolQuery

    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -324,7 +324,7 @@

    Static ChangeControlled

    ChangeControlled: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}
    @@ -334,7 +334,7 @@

    Static ChangeControlledChangeControlledDataType: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

    @@ -344,7 +344,7 @@

    Static ClosedObject

    ClosedObject: {} & {}
    @@ -354,7 +354,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -369,7 +369,7 @@

    Static DateRangeFilter
    DateRangeFilter: {}
    @@ -384,7 +384,7 @@

    Static DatetimeRangeFi
    DatetimeRangeFilter: {}
    @@ -399,7 +399,7 @@

    Static Error

    Error: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -409,7 +409,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -419,7 +419,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -434,7 +434,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -449,7 +449,7 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}
    @@ -459,7 +459,7 @@

    Static FilteredQuery

    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -469,7 +469,7 @@

    Static IntegerRangeFil
    IntegerRangeFilter: {}
    @@ -484,7 +484,7 @@

    Static L10nString

    L10nString: {} & {}
    @@ -494,7 +494,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -504,7 +504,7 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    @@ -514,7 +514,7 @@

    Static Money

    Money: { currencyMnemonic?: string; value?: number } & {}
    @@ -524,7 +524,7 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}
    @@ -534,7 +534,7 @@

    Static NestedQuery

    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -544,7 +544,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -559,7 +559,7 @@

    Static NumericRangeFil
    NumericRangeFilter: {}
    @@ -574,7 +574,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -589,7 +589,7 @@

    Static OpenObject

    OpenObject: {} & {}
    @@ -599,7 +599,7 @@

    Static PaginatedSearch
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -609,7 +609,7 @@

    Static PaginatedSearch
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -629,7 +629,7 @@

    Static PromotionNotFou
    PromotionNotFound: {}
    @@ -641,12 +641,26 @@

    Type declaration

    Static PromotionResult

    -
    PromotionResult: { data: Array<Promotion>; limit: number; total: number } & {}
    +
    PromotionResult: { data: Array<Promotion>; limit: number; total: number }
    +
    +

    Type declaration

    +
      +
    • +
      data: Array<Promotion>
      +
    • +
    • +
      limit: number
      +
    • +
    • +
      total: number
      +
    • +
    +
    @@ -654,7 +668,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -664,7 +678,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -694,7 +708,7 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}
    @@ -704,7 +718,7 @@

    Static QueryFilter

    QueryFilter: { query: Query } & {}
    @@ -714,7 +728,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -729,7 +743,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -744,7 +758,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -754,7 +768,7 @@

    Static RangeFilter

    RangeFilter: {}
    @@ -769,7 +783,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -784,7 +798,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -799,7 +813,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -814,7 +828,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -829,7 +843,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -844,7 +858,7 @@

    Static SearchRequest

    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -854,7 +868,7 @@

    Static SearchRequestBa
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -864,7 +878,7 @@

    Static Selectable

    Selectable: {}
    @@ -879,7 +893,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -889,7 +903,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -899,7 +913,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -914,7 +928,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -924,7 +938,7 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}
    @@ -934,7 +948,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -949,7 +963,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -959,7 +973,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -969,7 +983,7 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    @@ -979,7 +993,7 @@

    Static badrequest

    badrequest: {}
    @@ -1002,7 +1016,7 @@

    constructor

    Parameters

    @@ -1043,7 +1057,7 @@

    getPromotions

  • @@ -1088,7 +1102,7 @@

    Returns Promise
    @@ -1156,7 +1170,7 @@

    getPromotionsForCampaign

  • @@ -1205,7 +1219,7 @@

    Returns Promise
    diff --git a/docs/classes/pricing.sourcecodegroups.html b/docs/classes/pricing.sourcecodegroups.html index 0c650264..8f4f1492 100644 --- a/docs/classes/pricing.sourcecodegroups.html +++ b/docs/classes/pricing.sourcecodegroups.html @@ -97,7 +97,7 @@

    'authorization'] = `Bearer ${token.access_token}`; const sourceCodeGroupsClient = new Pricing.SourceCodeGroups(clientConfig); - API Version: 1.0.27
    + API Version: 1.0.28
    Last Updated:

    @@ -219,7 +219,7 @@

    Static AsyncCreated

    AsyncCreated: {}
    @@ -234,7 +234,7 @@

    Static AttributeDefinition<
    AttributeDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean }
    @@ -309,7 +309,7 @@

    Static BoolFilter

    BoolFilter: { filters?: Array<Filter>; operator: string } & {}
    @@ -319,7 +319,7 @@

    Static BoolQuery

    BoolQuery: { must?: Array<Query>; mustNot?: Array<Query>; should?: Array<Query> } & {}
    @@ -329,7 +329,7 @@

    Static ChangeControlled

    ChangeControlled: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}
    @@ -339,7 +339,7 @@

    Static ChangeControlledChangeControlledDataType: { createdBy?: string; creationDate?: any; lastModifiedBy?: string; modificationDate?: any } & {}

    @@ -349,7 +349,7 @@

    Static ClosedObject

    ClosedObject: {} & {}
    @@ -359,7 +359,7 @@

    Static DateConditional
    DateConditionalRequest: {}
    @@ -374,7 +374,7 @@

    Static DateRangeFilter
    DateRangeFilter: {}
    @@ -389,7 +389,7 @@

    Static DatetimeRangeFi
    DatetimeRangeFilter: {}
    @@ -404,7 +404,7 @@

    Static Error

    Error: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -414,7 +414,7 @@

    Static ErrorResponse

    ErrorResponse: { detail?: string; instance?: string; title?: string; type: string } & {}
    @@ -424,7 +424,7 @@

    Static EtagConditional
    EtagConditionalRequest: {}
    @@ -439,7 +439,7 @@

    Static EtagResponse

    EtagResponse: {}
    @@ -454,7 +454,7 @@

    Static Filter

    Filter: { boolFilter?: BoolFilter; queryFilter?: QueryFilter; range2Filter?: Range2Filter; rangeFilter?: RangeFilter; termFilter?: TermFilter } & {}
    @@ -464,7 +464,7 @@

    Static FilteredQuery

    FilteredQuery: { filter: Filter; query: Query } & {}
    @@ -474,7 +474,7 @@

    Static IdConflict

    IdConflict: {}
    @@ -489,7 +489,7 @@

    Static IntegerRangeFil
    IntegerRangeFilter: {}
    @@ -504,7 +504,7 @@

    Static InvalidQuery

    InvalidQuery: {}
    @@ -519,7 +519,7 @@

    Static L10nString

    L10nString: {} & {}
    @@ -529,7 +529,7 @@

    Static LocalizedString

    LocalizedString: {} & {}
    @@ -539,7 +539,7 @@

    Static MatchAllQueryMatchAllQuery: {} & {}

    @@ -549,7 +549,7 @@

    Static Money

    Money: { currencyMnemonic?: string; value?: number } & {}
    @@ -559,7 +559,7 @@

    Static MoneyMnemonic

    MoneyMnemonic: { currencyMnemonic?: string; value?: number } & {}
    @@ -569,7 +569,7 @@

    Static NestedQuery

    NestedQuery: { path: string; query: Query; scoreMode?: string } & {}
    @@ -579,7 +579,7 @@

    Static NoPropertiesAll
    NoPropertiesAllowed: {}
    @@ -594,7 +594,7 @@

    Static NumericRangeFil
    NumericRangeFilter: {}
    @@ -609,7 +609,7 @@

    Static OffsetPaginated

    OffsetPaginated: {}
    @@ -624,7 +624,7 @@

    Static OpenObject

    OpenObject: {} & {}
    @@ -634,7 +634,7 @@

    Static PaginatedSearch
    PaginatedSearchResult: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -644,7 +644,7 @@

    Static PaginatedSearch
    PaginatedSearchResultBase: { hits?: Array<object>; limit: number; offset: any; query: Query; sorts?: Array<Sort>; total: any } & {}
    @@ -654,7 +654,7 @@

    Static PropertyDefinitionPropertyDefinition: { defaultValue?: PropertyValueDefinition; description: L10nString; id?: string; key?: boolean; localizable?: boolean; mandatory?: boolean; max?: number; min?: number; minLength?: number; multiValueType?: boolean; name: L10nString; possibleValues?: Array<PropertyValueDefinition>; regularExpression?: string; scale?: number; searchable?: boolean; siteSpecific?: boolean; system?: boolean; type: string; unit?: L10nString; visible?: boolean } & {}

    @@ -664,7 +664,7 @@

    Static PropertyValueDe
    PropertyValueDefinition: { description: L10nString; displayValue: L10nString; id: string; position?: number; value: string }
    @@ -694,7 +694,7 @@

    Static Query

    Query: { boolQuery?: BoolQuery; filteredQuery?: FilteredQuery; matchAllQuery?: MatchAllQuery; nestedQuery?: NestedQuery; termQuery?: TermQuery; textQuery?: TextQuery } & {}
    @@ -704,7 +704,7 @@

    Static QueryFilter

    QueryFilter: { query: Query } & {}
    @@ -714,7 +714,7 @@

    Static QueryParamsLimi
    QueryParamsLimit: {}
    @@ -729,7 +729,7 @@

    Static QueryParamsOffs
    QueryParamsOffset: {}
    @@ -744,7 +744,7 @@

    Static Range2Filter

    Range2Filter: { filterMode?: string; fromField: string; fromInclusive?: boolean; fromValue?: any; toField: string; toInclusive?: boolean; toValue?: any } & {}
    @@ -754,7 +754,7 @@

    Static RangeFilter

    RangeFilter: {}
    @@ -769,7 +769,7 @@

    Static RateLimited

    RateLimited: {}
    @@ -784,7 +784,7 @@

    Static RateLimited2

    RateLimited2: {}
    @@ -799,7 +799,7 @@

    Static RateLimited3

    RateLimited3: {}
    @@ -814,7 +814,7 @@

    Static RateLimited4

    RateLimited4: {}
    @@ -829,7 +829,7 @@

    Static RateLimited5

    RateLimited5: {}
    @@ -844,7 +844,7 @@

    Static SearchRequest

    SearchRequest: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -854,7 +854,7 @@

    Static SearchRequestBa
    SearchRequestBase: { limit?: number; offset?: any; query: Query; sorts?: Array<Sort> } & {}
    @@ -864,7 +864,7 @@

    Static Selectable

    Selectable: {}
    @@ -879,7 +879,7 @@

    Static SimpleSearchRes
    SimpleSearchResult: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -889,7 +889,7 @@

    Static SimpleSearchRes
    SimpleSearchResultBase: { hits?: Array<object>; limit: number; offset: any; total: any } & {}
    @@ -899,7 +899,7 @@

    Static SiteSpecific

    SiteSpecific: {}
    @@ -914,7 +914,7 @@

    Static Sort

    Sort: { field: string; sortOrder?: string } & {}
    @@ -934,7 +934,7 @@

    Static SourceCodeGroup
    SourceCodeGroupInvalid: {}
    @@ -949,7 +949,7 @@

    Static SourceCodeGroup
    SourceCodeGroupNotFound: {}
    @@ -971,22 +971,41 @@

    Static SourceCodeGroup

    Static SourceCodeRedirectInfo

    -
    SourceCodeRedirectInfo: { locationType: string } & {}
    +
    SourceCodeRedirectInfo: { location?: string; locationType: string }
    +
    +

    Type declaration

    +
      +
    • +
      Optional location?: string
      +
    • +
    • +
      locationType: string
      +
    • +
    +

    Static SourceCodeSpecification

    -
    SourceCodeSpecification: { expression: string } & {}
    +
    SourceCodeSpecification: { expression: string }
    +
    +

    Type declaration

    +
      +
    • +
      expression: string
      +
    • +
    +
    @@ -994,7 +1013,7 @@

    Static SpecifiedProperties<
    SpecifiedPropertiesAllowed: {} & {}

    @@ -1004,7 +1023,7 @@

    Static SyncCreated

    SyncCreated: {}
    @@ -1019,7 +1038,7 @@

    Static TermFilter

    TermFilter: { field: string; operator: string; values?: Array<any> } & {}
    @@ -1029,7 +1048,7 @@

    Static TermQuery

    TermQuery: { fields: Array<string>; operator: string; values?: Array<any> } & {}
    @@ -1039,7 +1058,7 @@

    Static TextQuery

    TextQuery: { fields: Array<string>; searchPhrase: string } & {}
    @@ -1057,7 +1076,7 @@

    constructor

    Parameters

    @@ -1098,7 +1117,7 @@

    createSourceCodeGroup

  • @@ -1146,7 +1165,7 @@

    Returns Promise
    @@ -1217,7 +1236,7 @@

    deleteSourceCodeGroup

  • @@ -1262,7 +1281,7 @@

    Returns Promise
    @@ -1330,7 +1349,7 @@

    getSourceCodeGroup

  • @@ -1375,7 +1394,7 @@

    Returns Promise
    @@ -1443,7 +1462,7 @@

    sourceCodeGroupsSearch

  • @@ -1559,7 +1578,7 @@

    Returns Promise
    @@ -1698,7 +1717,7 @@

    updateSourceCodeGroup

  • @@ -1746,7 +1765,7 @@

    Returns Promise
    diff --git a/docs/index.html b/docs/index.html index 20b7e7f3..c1b2d7c2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -70,16 +70,19 @@

    commerce-sdk

    The Salesforce Commerce SDK allows easy interaction with the Salesforce B2C Commerce platform APIs on the Node.js runtime. For a more lightweight SDK, which works in a browser and Node.js for the shopper experience, see our Isomorphic SDK

    Visit the Commerce Cloud Developer Center to learn more about Salesforce Commerce. The developer center has API documentation, getting started guides, community forums, and more. ​

    - -

    :warning: Planned future release will contain breaking changes :warning:

    +
    +

    :warning: Planned API Changes :warning:

    -

    Due to an issue with the generation of the type definitions, an upcoming release - of the SDK will change type definitions to include namespaces. As this is a - breaking change, a new major version will be released (v4.0.0). Only the names of - the types will change, not their contents or any of the exported code. If you - only use JavaScript, or if you use TypeScript but only import the client classes, - then your usage will not change. You will likely only need to make changes if - you import the type definitions directly.

    + +

    Shopper Context

    +
    +

    Starting July 31st 2024, all endpoints in the Shopper context API will require the siteId parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. You can read more about the planned change here in the notes section.

    + +

    Shopper Login (SLAS)

    +
    +

    SLAS will soon require new tenants to pass channel_id as an argument for retrieving guest access tokens. You can read more about the planned change here.

    +

    Please be aware that existing tenants are on a temporary allow list and will see no immediate disruption to service. We do ask that all users seek to adhere to the channel_id requirement before the end of August to enhance your security posture before the holiday peak season.

    +

    In practice, we recommend that customers using the SLAS helper functions upgrade to v4.0.0 of the commerce-sdk.

    Prerequisites

    @@ -525,7 +528,7 @@

    Security

    For more information about security considerations related to developing headless commerce applications, see Security Considerations for Headless Commerce on the Commerce Cloud Developer Center.

    -

    If you discover any potential security issues, please report them to security@salesforce.com as soon as possible.

    +

    If you discover any potential security issues, please report them to security@salesforce.com as soon as possible.

    Additional Documentation

    diff --git a/docs/modules/cdn.html b/docs/modules/cdn.html index 11a2d097..11fac8b8 100644 --- a/docs/modules/cdn.html +++ b/docs/modules/cdn.html @@ -94,7 +94,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -104,7 +104,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    diff --git a/docs/modules/helpers.html b/docs/modules/helpers.html index 33a46408..02d3f6c9 100644 --- a/docs/modules/helpers.html +++ b/docs/modules/helpers.html @@ -478,7 +478,7 @@

    loginGuestUser

  • @@ -576,7 +576,7 @@

    loginRegisteredUserB2C

  • @@ -645,7 +645,7 @@

    loginRegisteredUserB2Cprivate

  • @@ -720,7 +720,7 @@

    logout

  • @@ -772,7 +772,7 @@

    refreshAccessToken

  • @@ -818,7 +818,7 @@

    refreshAccessTokenPrivate

  • diff --git a/docs/modules/pricing.html b/docs/modules/pricing.html index 1d66bffc..664ea4dc 100644 --- a/docs/modules/pricing.html +++ b/docs/modules/pricing.html @@ -115,7 +115,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -135,7 +135,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -145,7 +145,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -155,7 +155,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -165,7 +165,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -175,7 +175,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -185,7 +185,7 @@

    Const USER_AGENT_HEADER
    USER_AGENT_HEADER: "user-agent" = "user-agent"
    @@ -195,7 +195,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    @@ -215,7 +215,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    @@ -225,7 +225,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    @@ -235,7 +235,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    @@ -245,7 +245,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    @@ -255,7 +255,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    @@ -265,7 +265,7 @@

    Const USER_AGENT_VALUE<
    USER_AGENT_VALUE: "commerce-sdk@3.1.0;" = "commerce-sdk@3.1.0;"
    diff --git a/package-lock.json b/package-lock.json index 41b7d6fd..4fce99ec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "commerce-sdk", - "version": "3.1.0", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 61fd7da0..ef4993a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "commerce-sdk", - "version": "3.1.0", + "version": "4.0.0", "description": "Salesforce Commerce Cloud SDK", "homepage": "https://developer.salesforce.com/developer-centers/commerce-cloud", "repository": { diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/.metadata.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/.metadata.json index 99d197ad..d0ada386 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/.metadata.json +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/cdn-api-process-apis/1.0.30", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/cdn-api-process-apis/1.0.32", "name": "CDN Zones", "description": "Extend your eCDN beyond Business Manager configuration.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "cdn-api-process-apis", - "version": "1.0.30", + "version": "1.0.32", "categories": { "API layer": [ "Process" diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdn-zones-description.md b/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdn-zones-description.md index 03e64e27..09c3e9e2 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdn-zones-description.md +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdn-zones-description.md @@ -17,6 +17,8 @@ The API client must also have at least one of the following OAuth scopes: `sfcc. For detailed setup instructions, see the [Authorization for Admin APIs](https://developer.salesforce.com/docs/commerce/commerce-api/guide/authorization-for-admin-apis.html) guide. +You must include the relevant scope(s) in the client ID used to generate the token. For details, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + ## Use Cases For detailed usage information, refer to the [CDN Zones Guides.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones.html) \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdnapi-process-api.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdnapi-process-api.raml index 657c7dc2..97340254 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdnapi-process-api.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/cdnapi-process-api.raml @@ -22,7 +22,7 @@ mediaType: application/json uses: ApiStandards: /exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/api-standards/1.1.12/api-standards.raml - CommerceCloudStandards: /exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/commerce-cloud-standards.raml + CommerceCloudStandards: /exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml types: @@ -65,6 +65,12 @@ types: RateLimitingRulesPatchRequest: !include dataTypes/RateLimitingRulesPatchRequest.raml WAFManagedRuleset: !include dataTypes/WAFManagedRuleset.raml WAFManagedRulesetRequest: !include dataTypes/WAFManagedRulesetRequest.raml + WAFManagedRule: !include dataTypes/WAFManagedRule.raml + WAFManagedRuleRequest: !include dataTypes/WAFManagedRuleRequest.raml + WafPackagePatchRequest: !include dataTypes/WafPackagePatchRequest.raml + WAFRulePackage: !include dataTypes/WAFRulePackage.raml + OriginHeaderModification: !include dataTypes/OriginHeaderModification.raml + OriginHeaderModificationPutRequest: !include dataTypes/OriginHeaderModificationPutRequest.raml ZonesEnvelope: type: CollectionResponseEnvelope @@ -76,16 +82,6 @@ types: properties: data: type: Zone - FirewallRulesEnvelope: - type: CollectionResponseEnvelope - properties: - data: - type: FirewallRule[] - FirewallRuleEnvelope: - type: ItemResponseEnvelope - properties: - data: - type: FirewallRule WafGroupsEnvelope: type: CollectionResponseEnvelope properties: @@ -116,6 +112,11 @@ types: properties: data: type: SecuritySetting + WAFRulePackageEnvelope: + type: ItemResponseEnvelope + properties: + data: + type: WAFRulePackage CertificateEnvelope: type: ItemResponseEnvelope properties: @@ -186,6 +187,21 @@ types: properties: data: type: WAFManagedRuleset + WAFManagedRulesEnvelope: + type: CollectionResponseEnvelope + properties: + data: + type: WAFManagedRule[] + WAFManagedRuleEnvelope: + type: ItemResponseEnvelope + properties: + data: + type: WAFManagedRule + OriginHeaderModificationEnvelope: + type: ItemResponseEnvelope + properties: + data: + type: OriginHeaderModification traits: hasUnauthorizedResponse: !include traits/HasUnauthorizedResponse.raml @@ -215,8 +231,7 @@ traits: type: StorefrontZoneCreateEnvelope example: !include /examples/zone/storefront-zone-create-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/info: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -231,8 +246,7 @@ traits: type: ZonesEnvelope example: !include /examples/zone/zones-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /zones/{zoneId}/waf/groups: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -247,8 +261,7 @@ traits: type: WafGroupsEnvelope example: !include /examples/waf/wafgroups-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{groupId}: put: @@ -267,8 +280,7 @@ traits: type: WafGroupEnvelope example: !include /examples/waf/wafgroup-put-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/waf/rules: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] @@ -291,8 +303,7 @@ traits: type: WafRulesEnvelope example: !include /examples/waf/wafrules-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{ruleId}: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -307,8 +318,7 @@ traits: type: WafRuleEnvelope example: !include /examples/waf/wafrule-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } put: is: [hasBadRequestResponse] displayName: updateWafRule @@ -325,87 +335,7 @@ traits: type: WafRuleEnvelope example: !include /examples/waf/wafrule-put-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - - /zones/{zoneId}/firewall/rules: - get: - is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] - displayName: getFirewallRules - description: (DEPRECATED) Retrieves existing firewall rules. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - responses: - '200': - description: Successfully returned back the list of firewall rules requested by the caller. - body: - application/json: - type: FirewallRulesEnvelope - example: !include /examples/firewall/firewall-rules-get-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - - post: - is: [hasBadRequestResponse] - displayName: createFirewallRule - description: (DEPRECATED) Creates a firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - body: - application/json: - type: FirewallRule - example: !include /examples/firewall/firewall-rules-post-request.raml - responses: - '201': - description: Successfully created the firewall rule requested by the caller. - body: - application/json: - type: FirewallRuleEnvelope - example: !include /examples/firewall/firewall-rules-post-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - - /{firewallRuleId}: - get: - is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] - displayName: getFirewallRule - description: (DEPRECATED) Retrieve a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - responses: - '200': - description: Successfully returned back the firewall rule requested by the caller. - body: - application/json: - type: FirewallRuleEnvelope - example: !include /examples/firewall/firewall-rule-get-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - put: - is: [hasBadRequestResponse] - displayName: updateFirewallRule - description: (DEPRECATED) Update a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - body: - application/json: - type: FirewallRule - example: !include /examples/firewall/firewall-rules-put-request.raml - responses: - '200': - description: Successfully updated the firewall rule specified by the caller. - body: - application/json: - type: FirewallRuleEnvelope - example: !include /examples/firewall/firewall-rules-put-response.raml - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 - delete: - is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] - displayName: deleteFirewallRule - description: (DEPRECATED) Delete a specific firewall rule. This endpoint is deprecated. Requests return a 400 Bad Request response. Use [eCDN custom rules](https://developer.salesforce.com/docs/commerce/commerce-api/guide/cdn-zones-custom-rules.html) moving forward. Any existing firewall rules are accessible and can be updated using the custom rule endpoints. - responses: - '204': - description: Successfully deleted the firewall rule specified by the caller. - securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/speed-settings: is: [hasResourceNotFoundResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] @@ -420,8 +350,7 @@ traits: type: SpeedSettingsEnvelope example: !include /examples/zone/speed-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateSpeedSettings @@ -441,8 +370,7 @@ traits: examples: response : !include /examples/zone/speed-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/security-settings: is: [hasBadRequestResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] get: @@ -456,8 +384,7 @@ traits: type: SecuritySettingsEnvelope example: !include /examples/zone/security-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: displayName: updateSecuritySettings description: Update security settings for a zone. @@ -473,8 +400,7 @@ traits: type: SecuritySettingsEnvelope example: !include /examples/zone/security-settings-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/cachepurge: post: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] @@ -490,8 +416,7 @@ traits: application/json: type: CachePurgeResponseEnvelope securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/ocapicachingpagerule: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] patch: @@ -508,8 +433,7 @@ traits: application/json: type: OCAPICachingToggleRequest securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/certificates: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse] get: @@ -526,8 +450,7 @@ traits: Proxy Zone Certificates Response: !include /examples/zone/certificates-get-response1.raml Legacy Zone Certificates Response: !include /examples/zone/certificates-get-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } post: is: [hasBadRequestResponse, hasConflictResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] displayName: addCertificateForZone @@ -545,8 +468,7 @@ traits: Self-Managed Certificate Response: !include /examples/zone/certificate-post-response1.raml eCDN-Managed Certificate Response: !include /examples/zone/certificate-post-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /{certificateId}: is: [ hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse ] delete: @@ -557,8 +479,7 @@ traits: 204: description: Successfully deleted the custom hostname and certificate associated with it. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateCertificate @@ -577,8 +498,7 @@ traits: Self-Managed Certificate Response: !include /examples/zone/certificate-update-response1.raml eCDN-Managed Certificate Response: !include /examples/zone/certificate-update-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /custom-hostnames/{customHostnameId}: patch: is: [ hasBadRequestResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse ] @@ -593,99 +513,100 @@ traits: examples: response : !include /examples/zone/custom-hostnames-patch-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/mrtrules: is: [hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] post: is: [hasBadRequestResponse] displayName: createMrtRules - description: Create MRT rules. + description: Create MRT rules to route to a new MRT environment. body: application/json: type: MRTRulesPostRequest - example: !include /examples/mrtrules/mrt-rules-post-request.raml + examples: + Single Hostname Request: !include /examples/mrtrules/mrt-rules-post-request-single-hostname.raml + Multiple Hostnames Request: !include /examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml responses: 201: - description: Create new MRT rules. + description: Create MRT rules to route to a new MRT environment. body: application/json: type: MRTRulesResponseEnvelope - example: !include /examples/mrtrules/mrt-rules-post-response.raml + examples: + Single Hostname Response: !include /examples/mrtrules/mrt-rules-post-response-single-hostname.raml + Multiple Hostnames Response: !include /examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateMrtRuleset - description: Update the MRT hostname or add MRT rules to the ruleset. + description: Update the MRT environment hostname or add MRT rules to route to an existing MRT environment. body: application/json: type: MRTRulesetPatchRequest - example: !include /examples/mrtrules/mrt-ruleset-patch-request.raml + examples: + Update MRT Hostname Request: !include /examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml + Add Rules for Existing MRT Hostname Request: !include /examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml responses: 200: - description: Update the MRT hostname or add MRT rules to the ruleset. + description: Update the MRT environment hostname or add MRT rules to route to an existing MRT environment. body: application/json: type: MRTRulesResponseEnvelope - example: !include /examples/mrtrules/mrt-ruleset-patch-response.raml + examples: + Update MRT Hostname Response: !include /examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml + Add Rules for Existing MRT Hostname Response: !include /examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: is: [hasBadRequestResponse] displayName: getMrtRules - description: Get MRT rules associated with a zone. + description: Get all MRT rules. responses: 200: - description: Get MRT rules associated with a zone. + description: Get all MRT rules. body: application/json: type: MRTRulesResponseEnvelope example: !include /examples/mrtrules/mrt-rules-get-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{rulesetId}: delete: displayName: deleteMrtRuleset - description: Delete the MRT ruleset specified for that particular zone. + description: Delete the MRT ruleset and all rules within the ruleset. responses: 204: - description: Delete the MRT ruleset specified for that particular zone. + description: Delete the MRT ruleset and all rules within the ruleset. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /rules/{ruleId}: is: [hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] delete: displayName: deleteMrtRule - description: Delete an MRT rule in the specified ruleset. + description: Delete an MRT rule. responses: 204: - description: Delete the MRT rule specified for the particular zone. + description: Delete an MRT rule. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateMrtRule - description: Update the expression and enable or disable an MRT rule. + description: Update an MRT rule. body: application/json: type: MRTRulePatchRequest example: !include /examples/mrtrules/mrt-rule-patch-request.raml responses: 200: - description: Successfully updated the MRT rule. + description: Update an MRT rule. body: application/json: type: MRTRulesResponseEnvelope example: !include /examples/mrtrules/mrt-rule-patch-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/logpush/ownership: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] post: @@ -704,8 +625,7 @@ traits: type: LogpushOwnershipPostResponse example: !include /examples/logpush/logpush-ownership-post-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/logpush/jobs: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] post: @@ -728,8 +648,7 @@ traits: response1 : !include /examples/logpush/logpush-create-response1.raml response2 : !include /examples/logpush/logpush-create-response2.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: is: [ hasBadRequestResponse ] displayName: listLogpushJob @@ -742,8 +661,7 @@ traits: type: LogpushJobsEnvelope example: !include /examples/logpush/logpush-get-list-job.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{jobId}: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] get: @@ -761,8 +679,7 @@ traits: response2: !include /examples/logpush/logpush-get-job-by-id2.raml response3: !include /examples/logpush/logpush-get-job-by-id3.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } put: is: [ hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse ] displayName: updateLogpushJob @@ -779,8 +696,7 @@ traits: type: LogpushEnvelope example: !include /examples/logpush/logpush-update-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } delete: displayName: deleteLogpushJob description: Delete Logpush job by job ID. @@ -788,8 +704,41 @@ traits: 204: description: Delete Logpush job by job ID. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /zones/{zoneId}/firewall/waf/packages/owasp: + is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] + get: + is: [hasBadRequestResponse] + displayName: getOwaspWafPackage + description: Get a OWASP ModSecurity Core Rule Set. + responses: + '200': + description: Successfully retrieved a OWASP ModSecurity Core Rule Set + body: + application/json: + type: WAFRulePackageEnvelope + examples: + response : !include /examples/wafpackages/wafpackages_get_example.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } + patch: + is: [ hasBadRequestResponse ] + displayName: patchOwaspWafPackage + description: Patch a OWASP ModSecurity Core Rule Set. + body: + application/json: + type: WafPackagePatchRequest + examples: !include /examples/wafpackages/wafpackages_patch_example.raml + responses: + '200': + description: Successfully patched a OWASP ModSecurity Core Rule Set + body: + application/json: + type: WAFRulePackageEnvelope + examples: + response: !include /examples/wafpackages/wafpackages_get_example.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/firewall-custom/rules: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] post: @@ -808,8 +757,7 @@ traits: type: CustomRuleEnvelope example: !include /examples/customrules/custom-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: is: [ApiStandards.OffsetPaginated: {maxLimit: 50, defaultSize: 25}] displayName: getCustomRules @@ -822,8 +770,7 @@ traits: type: CustomRulesEnvelope example: !include /examples/customrules/custom-rules-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateOrderOfCustomRules @@ -839,8 +786,7 @@ traits: type: CustomRulesEnvelope example: !include /examples/customrules/custom-rules-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /{ruleId}: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] get: @@ -854,8 +800,7 @@ traits: type: CustomRuleEnvelope example: !include /examples/customrules/custom-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateCustomRule @@ -871,8 +816,7 @@ traits: type: CustomRuleEnvelope example: !include /examples/customrules/custom-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } delete: displayName: deleteCustomRule description: Deletes a specific custom rule. @@ -880,8 +824,7 @@ traits: '204': description: Successfully deleted the custom rule requested by the caller. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/rate-limiting/rules: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] post: @@ -900,8 +843,7 @@ traits: type: RateLimitingRuleEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } get: displayName: getRateLimitingRules description: Retrieves existing rate limiting rules. @@ -913,8 +855,7 @@ traits: type: RateLimitingRulesEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rules-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{ruleId}: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] get: @@ -928,8 +869,7 @@ traits: type: RateLimitingRuleEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } patch: is: [hasBadRequestResponse] displayName: updateRateLimitingRule @@ -945,8 +885,7 @@ traits: type: RateLimitingRuleEnvelope example: !include /examples/ratelimitingrules/rate-limiting-rule-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } delete: displayName: deleteRateLimitingRule description: Deletes a specific rate limiting rule. @@ -954,8 +893,7 @@ traits: '204': description: Successfully deleted the rate limiting rule requested by the caller. securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } /zones/{zoneId}/firewall-managed/rulesets: is: [hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] get: @@ -969,8 +907,7 @@ traits: type: WAFManagedRulesetsEnvelope example: !include /examples/wafmanagedrulesets/waf-managed-rulesets-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } /{rulesetId}: is: [hasBadRequestResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] patch: @@ -988,5 +925,94 @@ traits: type: WAFManagedRulesetEnvelope example: !include /examples/wafmanagedrulesets/waf-managed-rulesets-update-response.raml securedBy: - - CommerceCloudStandards.BearerToken: { scopes: [ sfcc.cdn-zones.rw ] } - - CommerceCloudStandards.AmOAuth2 + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /rules: + get: + displayName: getWafManagedRulesInRuleset + description: Retrieves all rules in the specified WAFv2 managed ruleset. + responses: + '200': + description: Successfully returned the rules in the WAFv2 managed ruleset. + body: + application/json: + type: WAFManagedRulesEnvelope + example: !include /examples/wafmanagedrulesets/waf-managed-rules-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } + /{ruleId}: + patch: + displayName: updateWafManagedRuleInRuleset + description: Updates a WAF managed rule in the specified WAFv2 managed ruleset. + body: + application/json: + type: WAFManagedRuleRequest + example: !include /examples/wafmanagedrulesets/waf-managed-rules-update-request.raml + responses: + '200': + description: Successfully returned the updated WAF managed rule. + body: + application/json: + type: WAFManagedRuleEnvelope + example: !include /examples/wafmanagedrulesets/waf-managed-rules-update-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /zones/{zoneId}/firewall-managed/migration: + is: [hasBadRequestResponse, hasUnauthorizedResponse, hasForbiddenAccessResponse, hasInternalServerErrorResponse, hasResourceNotFoundResponse] + put: + displayName: migrateZoneToWafV2 + description: Migrates a zone to WAFv2. Only applicable for existing zones using WAFv1. + responses: + '200': + description: Successfully migrated the zone to WAFv2 and returned the updated WAF managed rulesets. + body: + application/json: + type: WAFManagedRulesetsEnvelope + example: !include /examples/wafmanagedrulesets/waf-managed-rulesets-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + /zones/{zoneId}/origin-header-modification/{type}: + is: [hasResourceNotFoundResponse, hasInternalServerErrorResponse, hasForbiddenAccessResponse, hasUnauthorizedResponse] + put: + is: [hasBadRequestResponse] + displayName: upsertOriginHeaderModification + description: Upsert origin header modification. + body: + application/json: + type: OriginHeaderModificationPutRequest + example: !include /examples/originheadermodification/mrt-put-request.raml + responses: + 201: + description: Successfully created the origin header modification. + body: + application/json: + type: OriginHeaderModificationEnvelope + example: !include /examples/originheadermodification/mrt-put-create-response.raml + 200: + description: Successfully updated the origin header modification. + body: + application/json: + type: OriginHeaderModificationEnvelope + example: !include /examples/originheadermodification/mrt-put-update-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } + get: + is: [hasBadRequestResponse] + displayName: getOriginHeaderModification + description: Get origin header modification associated with a zone. + responses: + 200: + description: Successfully returned the origin header modification associated with a zone. + body: + application/json: + type: OriginHeaderModificationEnvelope + example: !include /examples/originheadermodification/mrt-get-response.raml + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones, sfcc.cdn-zones.rw ] } + delete: + displayName: deleteOriginHeaderModification + description: Delete the origin header modification associated with a zone. + responses: + 204: + description: Successfully deleted the origin header modification associated with a zone. + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.cdn-zones.rw ] } diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml index 6606d68f..3ea5068d 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/MRTRulesetPatchRequest.raml @@ -1,5 +1,5 @@ #%RAML 1.0 DataType -description: Patch request for updating the mrtHostname pointing to an environment. +description: PATCH request for updating the MRT environment hostname or adding MRT rules to route to an existing MRT environment. type: object properties: oldMrtHostname: diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModification.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModification.raml new file mode 100644 index 00000000..e274c876 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModification.raml @@ -0,0 +1,16 @@ +#%RAML 1.0 DataType +description: An origin header modification rule. +type: object +properties: + headerName: + description: The name of the header forwarded to the origin. + type: string + example: x-sfdc-access-control + headerValue: + description: The masked value of the header forwarded to the origin. + type: string + example: '****************789' + lastUpdated: + description: Date when the rule was last updated. + type: datetime + example: 2022-01-01T05:20:00Z \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModificationPutRequest.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModificationPutRequest.raml new file mode 100644 index 00000000..48dcf5cf --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/OriginHeaderModificationPutRequest.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +description: Put request for creating/updating the origin header modification. +type: object +properties: + headerValue: + description: The value of the header forwarded to the origin. + type: string + example: "123456789" + required: true + headerName: + description: The name of the header forwarded to the origin. Cannot be modified for the MRT origin. + type: string + required: false \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml index 6456dbc2..df3f1a86 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/SpeedSetting.raml @@ -48,6 +48,27 @@ properties: default: off enum: ["on", "off"] example: off + earlyHints: + type: string + description: Early Hints for a zone. + required: false + default: off + enum: [ "on", "off" ] + example: off + http3: + type: string + description: Http3 for a zone. + required: false + default: off + enum: [ "on", "off" ] + example: off + http2ToOrigin: + type: string + description: Http2 to Origin for a zone. + required: false + default: off + enum: [ "on", "off" ] + example: off examples: brotliCompressionExample: @@ -63,4 +84,10 @@ examples: minfyHtmlExample: minfyHtml: off minifyCssExample: - minifyCss: off \ No newline at end of file + minifyCss: off + earlyHintsExample: + earlyHints: off + http3Example: + http3: off + http2ToOriginExample: + http2ToOrigin: off \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRule.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRule.raml new file mode 100644 index 00000000..e37161cb --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRule.raml @@ -0,0 +1,28 @@ +#%RAML 1.0 DataType +description: A WAF managed rule. +type: object +properties: + ruleId: + description: The ID of the WAF managed rule. + type: string + example: 5de7edfa648c4d6891dc3e7f84534ffa + action: + description: The action applied by the WAF managed rule. + type: string + example: block + categories: + description: A list of categories describing the function of the WAF managed rule. + type: string[] + example: ["broken-access-control", "wordpress"] + description: + description: The description of the WAF managed rule. + type: string + example: Wordpress - Broken Access Control + lastUpdated: + description: Date when the WAF managed rule was last updated. + type: datetime + example: 2024-01-01T05:20:00Z + enabled: + description: Whether or not the WAF managed rule is enabled. + type: boolean + example: true \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRuleRequest.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRuleRequest.raml new file mode 100644 index 00000000..b79dac3d --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFManagedRuleRequest.raml @@ -0,0 +1,14 @@ +#%RAML 1.0 DataType +description: A PATCH request for updating a WAF managed rule. +type: object +properties: + action: + description: The action applied by the WAF managed rule. + type: string + example: block + required: false + enabled: + description: Whether or not the WAF managed rule is enabled. + type: boolean + example: true + required: false \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFRulePackage.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFRulePackage.raml new file mode 100644 index 00000000..0f7f4325 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WAFRulePackage.raml @@ -0,0 +1,27 @@ +#%RAML 1.0 DataType + +properties: + id: + type: string + example: a25a9a7e9c00afc1fb2e0245519d725b + maxLength: 32 + name: + type: string + description: Name of the firewall package + description: + type: string + description: Summary of purpose/function of firewall package + detection_mode: + type: string + description: How the rules within the package are evaluated during the course of a request. When a package uses anomaly detection, each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined on the package, the action defined on the package is taken. Traditional detection decides which action to take when it is triggered by the request. If multiple rules are triggered, the action with highest protection is used. For example, a block action beats a challenge. + zone_id: + type: string + description: Zone identifier with which this rule package is associated. + sensitivity: + type: string + enum: ["low", "medium", "high", "off"] + description: Sensitivity for traditional (owasp) rule package. + action_mode: + type: string + enum: ["simulate", "challenge", "block"] + description: The default action that is taken for rules under traditional(owasp) firewall package. diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WafPackagePatchRequest.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WafPackagePatchRequest.raml new file mode 100644 index 00000000..1e1f6d97 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/dataTypes/WafPackagePatchRequest.raml @@ -0,0 +1,9 @@ +properties: + sensitivity: + type: string + enum: ["low", "medium", "high", "off"] + description: Sensitivity for traditional (owasp) rule package. + action_mode: + type: string + enum: ["simulate", "challenge", "block"] + description: The default action that is taken for rules under traditional(owasp) firewall package. \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml index e7247e00..e5c13f88 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rule-patch-response.raml @@ -15,7 +15,7 @@ value: "lastUpdated": "2022-09-27T18:32:34.675182Z", "ref": "12345678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-paw-hybrid.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" } ] } diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml index 4a1acb87..53beda7a 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-get-response.raml @@ -15,15 +15,15 @@ value: "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "12345678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-dev.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" }, { "id": "12345678901234asdfasfasdf1234567", - "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "12345678901234asdfasfasdf1233333", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-dev.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" }, { "id": "12345678901234asdfasfasdf1234567", @@ -31,7 +31,7 @@ value: "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "98745678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-prod.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" } ] } diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml new file mode 100644 index 00000000..fe76d6cb --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-multiple-hostnames.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value : + { + "mrtHostname": "customer.mobify-storefront.com", + "expressions": ["(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))"] + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-single-hostname.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-single-hostname.raml new file mode 100644 index 00000000..f60b250c --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request-single-hostname.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value : + { + "mrtHostname": "customer.mobify-storefront.com", + "expressions": ["(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))"] + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml new file mode 100644 index 00000000..fddcaae1 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-multiple-hostnames.raml @@ -0,0 +1,23 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "ruleset": + { + "id": "12345678901234asdfasfasdf1234567", + "name": "MRT Rules", + "lastUpdated": "2022-09-27T18:32:34.675182Z", + "rules": [ + { + "id": "12345678901234asdfasfasdf1234567", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234567", + "enabled": true, + "mrtHostname": "customer.mobify-storefront.com" + } + ] + } + } + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-single-hostname.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-single-hostname.raml new file mode 100644 index 00000000..a75270f0 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response-single-hostname.raml @@ -0,0 +1,23 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "ruleset": + { + "id": "12345678901234asdfasfasdf1234567", + "name": "MRT Rules", + "lastUpdated": "2022-09-27T18:32:34.675182Z", + "rules": [ + { + "id": "12345678901234asdfasfasdf1234567", + "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234567", + "enabled": true, + "mrtHostname": "customer.mobify-storefront.com" + } + ] + } + } + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml similarity index 51% rename from apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request.raml rename to testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml index 7fffa9e1..44f9bdd2 100644 --- a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-request.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-add-rules.raml @@ -1,9 +1,9 @@ #%RAML 1.0 NamedExample value : { - "mrtHostname": "customer-react-projec-production.mobify-storefront.com", + "mrtHostname": "customer.mobify-storefront.com", "expressions": ["(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))", - - "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))" - ] + + "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))" + ] } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml new file mode 100644 index 00000000..1ce2ee6a --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-request-update-hostname.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value : + { + "oldMrtHostname": "old-hostname.mobify-storefront.com", + "mrtHostname": "new-hostname.mobify-storefront.com" + } \ No newline at end of file diff --git a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml similarity index 55% rename from apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response.raml rename to testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml index 7e3a6597..78535c13 100644 --- a/apis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-rules-post-response.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-add-rules.raml @@ -1,9 +1,9 @@ #%RAML 1.0 NamedExample value: { - "data": + "data": { - "ruleset": + "ruleset": { "id": "12345678901234asdfasfasdf1234567", "name": "MRT Rules", @@ -12,18 +12,18 @@ value: { "id": "12345678901234asdfasfasdf1234567", "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))", - "lastUpdated": "2022-09-15T21:14:42.372459Z", + "lastUpdated": "2022-09-15T21:14:42.372459Z", "ref": "12345678901234asdfasfasdf1234567", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-dev.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" }, { - "id": "12345678901234asdfasfasdf1234567", - "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", - "lastUpdated": "2022-09-15T21:14:42.372459Z", - "ref": "12345678901234asdfasfasdf1234567", + "id": "12345678901234asdfasfasdf1234568", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234568", "enabled": true, - "mrtHostname": "customer-pwa-hybrid-dev.mobify-storefront.com" + "mrtHostname": "customer.mobify-storefront.com" } ] } diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml new file mode 100644 index 00000000..f32ca1c1 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/mrtrules/mrt-ruleset-patch-response-update-hostname.raml @@ -0,0 +1,31 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "ruleset": + { + "id": "12345678901234asdfasfasdf1234567", + "name": "MRT Rules", + "lastUpdated": "2022-09-27T18:32:34.675182Z", + "rules": [ + { + "id": "12345678901234asdfasfasdf1234567", + "expression": "(http.host eq \"dev-customer.salesforce.com\" and not ( http.request.uri.path matches \"/on/path1/.*\" or http.request.uri.path matches \"/on/path2/.*\" or http.request.uri.path matches \".*routeDetails=true\" or http.request.uri.path eq \"/path3.txt\" ))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234567", + "enabled": true, + "mrtHostname": "new-hostname.mobify-storefront.com" + }, + { + "id": "12345678901234asdfasfasdf1234568", + "expression": "(http.host in {\"test-customer.salesforce.com\" \"test2-customer.salesforce.com\"} and not ( http.request.uri.path matches \"^/path4/.*\" or http.request.uri.path matches \"^.*/path5/.*/products/.*\"))", + "lastUpdated": "2022-09-15T21:14:42.372459Z", + "ref": "12345678901234asdfasfasdf1234568", + "enabled": true, + "mrtHostname": "new-hostname.mobify-storefront.com" + } + ] + } + } + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-get-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-get-response.raml new file mode 100644 index 00000000..ead58147 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-get-response.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "headerName": "x-sfdc-access-control", + "headerValue": "********789", + "lastUpdated": "2024-04-27T18:32:34.675182Z" + } + } diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-create-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-create-response.raml new file mode 100644 index 00000000..bbe28298 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-create-response.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "headerName": "x-sfdc-access-control", + "headerValue": "********789", + "lastUpdated": "2024-04-27T18:32:34.675182Z" + } + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-request.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-request.raml new file mode 100644 index 00000000..49d4bc6f --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-request.raml @@ -0,0 +1,5 @@ +#%RAML 1.0 NamedExample +value : + { + "headerValue": "123456789" + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-update-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-update-response.raml new file mode 100644 index 00000000..bbe28298 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/originheadermodification/mrt-put-update-response.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 NamedExample +value: + { + "data": + { + "headerName": "x-sfdc-access-control", + "headerValue": "********789", + "lastUpdated": "2024-04-27T18:32:34.675182Z" + } + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-response.raml new file mode 100644 index 00000000..2aec67bc --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-response.raml @@ -0,0 +1,28 @@ +#%RAML 1.0 NamedExample +value: + { + "data": [ + { + "ruleId": "ef9520b6b08b4e279a6bf67286aa4371", + "action": "block", + "categories": [ + "broken-access-control", + "wordpress" + ], + "description": "Wordpress - Broken Access Control", + "lastUpdated": "2024-04-15T16:49:28.423829Z", + "enabled": true + }, + { + "ruleId": "20e34d3164a340dbb5c5d29203ccff90", + "action": "block", + "categories": [ + "broken-access-control", + "wordpress" + ], + "description": "Wordpress - Broken Access Control - Update Script", + "lastUpdated": "2024-04-15T16:49:28.423829Z", + "enabled": true + } + ] + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-request.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-request.raml new file mode 100644 index 00000000..7299d0cc --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-request.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 NamedExample +value: + { + "action": "log", + "enabled": true + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-response.raml new file mode 100644 index 00000000..3ea1a36f --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafmanagedrulesets/waf-managed-rules-update-response.raml @@ -0,0 +1,15 @@ +#%RAML 1.0 NamedExample +value: + { + "data": { + "ruleId": "ef9520b6b08b4e279a6bf67286aa4371", + "action": "log", + "categories": [ + "broken-access-control", + "wordpress" + ], + "description": "Wordpress - Broken Access Control", + "lastUpdated": "2024-04-15T16:49:28.423829Z", + "enabled": true + } + } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_get_example.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_get_example.raml new file mode 100644 index 00000000..9fb6a21f --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_get_example.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 NamedExample +{ + "data" : + { + "id": "c504870194831cd12c3fc0284f294abb", + "name": "OWASP ModSecurity Core Rule Set", + "description": "OWASP Core Ruleset (2013) provides protection against common attack categories, including SQL Injection and Cross-Site Scripting.", + "zone_id": "56702a674281951f541f9f304f7431f0", + "detection_mode": "anomaly", + "sensitivity": "low", + "action_mode": "simulate" + } +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_patch_example.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_patch_example.raml new file mode 100644 index 00000000..0b043467 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/examples/wafpackages/wafpackages_patch_example.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 NamedExample +{ + "data" : + { + "sensitivity": "low", + "action_mode": "simulate" + } +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange.json index b7a4775b..863d6a9a 100644 --- a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange.json +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange.json @@ -1,24 +1,25 @@ { - "main": "cdnapi-process-api.raml", - "name": "CDN API - Process APIs", - "classifier": "raml", - "tags": [], "dependencies": [ { - "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "version": "1.1.12", "assetId": "api-standards", - "version": "1.1.12" + "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" }, { - "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "version": "2.0.1", "assetId": "commerce-cloud-standards", - "version": "1.0.17" + "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], + "version": "1.0.32", + "originalFormatVersion": "1.0", + "apiVersion": "v1", + "descriptorVersion": "0.1.0", + "classifier": "raml", + "main": "cdnapi-process-api.raml", + "assetId": "cdn-api-process-apis", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "organizationId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", - "assetId": "cdn-api-process-apis", - "version": "1.0.30", - "apiVersion": "v1", - "originalFormatVersion": "1.0" + "name": "CDN API - Process APIs", + "tags": [] } \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/ErrorResponseMapping.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/ErrorResponseMapping.raml new file mode 100644 index 00000000..d42c875f --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/ErrorResponseMapping.raml @@ -0,0 +1,37 @@ +#%RAML 1.0 DocumentationItem +title: Error Response Mapping from OCAPI to Mulesoft + +content: |- + + # NOTE: this documentation does not belong here any may be moved in the future. + + - ErrorResponse defined in [API Standards RAML library](https://anypoint.mulesoft.com/exchange/893f605e-10e2-423a-bdb4-f952f56eb6d8/api-standards/) *MUST* be used in case of error. Teams MAY derive their own error response types from ErrorResponse. + - ErrorResponse.type *MUST* be unique CommerceCloud-wide. This is an unequivocal identification of the error and therefore should be unique. + - Work to write a common data weave that will transform the OCAPI Fault to [RFC 7807](https://tools.ietf.org/html/rfc7807) compliant messages + - Content-Type: `application/problem+json` + - `type`: URI in the format of https://api.commercecloud.salesforce.com/documentation/error/v1/errors/, with the word “Exception” removed from the last segment. + - `title`: the `fault.type`, Upper Space Case, with the word “Exception” removed. + - `detail`: the content of fault.message + - Any attributes in `fault.arguments` just map to extra attributes of the same name, following all camelCase conventions. + + ## Example Mapping: + + ### OCAPI Fault Response + { + "_v" : "20.2", + "fault": { + "arguments": { + "target_cartridge": "core" + }, + "type": "InvalidOperationException", + "message": "Invalid operation on cartridge 'core'. The operation is only allowed on existing custom cartridge." + } + } + + ### Mapped ErrorResponse + { + "type": "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/invalid-operation", + "title": "Invalid Operation", + "detail": "Invalid operation on cartridge 'core'. The operation is only allowed on existing custom cartridge.", + "targetCartridge": "core" + } diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/baseUri.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/baseUri.raml new file mode 100644 index 00000000..d2d991d0 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Documentation/baseUri.raml @@ -0,0 +1,23 @@ +#%RAML 1.0 DocumentationItem +title: baseUri Standards +content: | + + # NOTE: this is internal documentation. + + The baseUri has been standardized as the following. You should use the below snippet in your RAML definitions: + + baseUri: https://{shortCode}.api.commercecloud.salesforce.com/api-family/api-name/{version} + version: v1 + baseUriParameters: + shortCode: + description: A region-specific merchant identifier. + example: 0dnz6oep + pattern: ^([a-z0-9]+)(-[a-z0-9]+)*$ + + Of note: + - the baseUri is templated URL that is templated for constency, all URLs accross commerce cloud will have the same baseUrl + - you MUST set the values of the api-family and api-name in the URI to your api-family and api-name. These shouldn't ever change and should be in lower case kebab case + - Api-family is also known as bounded context + - Api-name is also known as root aggregate + - the only baseUriParameter that will change between calls is `shortCode`. + - `version` is special and will use the version of the API. diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolFilter.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolFilter.json new file mode 100644 index 00000000..3c0eafb5 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolFilter.json @@ -0,0 +1,23 @@ +{ + "operator": "and", + "filters": [ + { + "termFilter": { + "field": "id", + "operator": "is", + "values": [ + "myId" + ] + } + }, + { + "termFilter": { + "field": "couponId", + "operator": "is", + "values": [ + "couponOne" + ] + } + } + ] +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.json new file mode 100644 index 00000000..a8e49428 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.json @@ -0,0 +1,33 @@ +{ + "must": [ + { + "textQuery": { + "fields": [ + "couponId" + ], + "searchPhrase": "DEAL" + } + }, + { + "textQuery": { + "fields": [ + "description" + ], + "searchPhrase": "Big bargain deal" + } + } + ], + "mustNot": [ + { + "termQuery": { + "fields": [ + "enabled" + ], + "operator": "is", + "values": [ + false + ] + } + } + ] +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.raml new file mode 100644 index 00000000..5ae2189b --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/BoolQuery.raml @@ -0,0 +1,57 @@ +#%RAML 1.0 NamedExample +MultipleOperatorExample: + must: + - textQuery: + fields: + - couponId + searchPhrase: DEAL + should: + - textQuery: + fields: + - couponId + searchPhrase: DEAL + - textQuery: + fields: + - couponId + - description + searchPhrase: sale + must_not: + - textQuery: + fields: + - description + searchPhrase: Big bargain +AndOperatorExample: + must: + - textQuery: + fields: + - couponId + searchPhrase: DEAL + - termQuery: + fields: + - enabled + operator: is + values: + - true +OrOperatorExample: + should: + - textQuery: + fields: + - couponId + searchPhrase: DEAL + - textQuery: + fields: + - couponId + - description + searchPhrase: sale +NotOperatorExample: + must_not: + - textQuery: + fields: + - description + searchPhrase: Big bargain + - termQuery: + fields: + - enabled + operator: is + values: + - false \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Filter.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Filter.json new file mode 100644 index 00000000..e8b22fe6 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Filter.json @@ -0,0 +1,9 @@ +{ + "termFilter": { + "field": "enabled", + "operator": "is", + "values": [ + false + ] + } +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/FilteredQuery.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/FilteredQuery.json new file mode 100644 index 00000000..59688122 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/FilteredQuery.json @@ -0,0 +1,19 @@ +{ + "query": { + "textQuery": { + "fields": [ + "couponId" + ], + "searchPhrase": "disabled" + } + }, + "filter": { + "termFilter": { + "field": "enabled", + "operator": "is", + "values": [ + false + ] + } + } +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/NestedQuery.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/NestedQuery.json new file mode 100644 index 00000000..bbc7f39e --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/NestedQuery.json @@ -0,0 +1,44 @@ +{ + "path": "order.shippingAddresses", + "query": { + "boolQuery": { + "must": [ + { + "boolQuery": { + "must": [ + { + "termQuery": { + "fields": [ + "order.shippingAddresses.firstName" + ], + "operator": "is", + "values": [ + "John" + ] + } + } + ] + } + }, + { + "boolQuery": { + "must": [ + { + "termQuery": { + "fields": [ + "order.shippingAddresses.lastName" + ], + "operator": "is", + "values": [ + "Doe" + ] + } + } + ] + } + } + ] + } + }, + "scoreMode": "avg" +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/PaginatedSearchResultBase.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/PaginatedSearchResultBase.json new file mode 100644 index 00000000..9d0f4db0 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/PaginatedSearchResultBase.json @@ -0,0 +1,35 @@ +{ + "limit" : 1, + "hits" : [ + { + "couponId": "MyCoupon", + "creationDate": "2019-10-20T12:00:00Z", + "description": "This coupon is used to give 10% off stuff.", + "enabled": false, + "exportedCodeCount": 0, + "lastModified": "2019-10-30T04:23:59Z", + "redemptionCount": 3, + "redemptionLimits": { + "limitPerCode": 1, + "limitPerCustomer": 1, + "limitPerTimeFrame": { + "limit": 2, + "redemptionTimeFrame": 24 + } + }, + "singleCode": "MyCode", + "systemCodesConfig": { + "codePrefix": "SG", + "numberOfCodes": 500000 + }, + "totalCodesCount": 50, + "type": "single_code" + } + ], + "query" : { "textQuery": { "fields": ["id", "description"], "searchPhrase": "stuff" } }, + "sorts" : [ + { "field": "couponId", "sortOrder": "desc" } + ], + "offset" : 2, + "total" : 8 +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Query.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Query.json new file mode 100644 index 00000000..8057c0f9 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Query.json @@ -0,0 +1,21 @@ +{ + "filteredQuery": { + "query": { + "textQuery": { + "fields": [ + "couponId" + ], + "searchPhrase": "disabled" + } + }, + "filter": { + "termFilter": { + "field": "enabled", + "operator": "is", + "values": [ + false + ] + } + } + } +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/QueryFilter.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/QueryFilter.json new file mode 100644 index 00000000..28785856 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/QueryFilter.json @@ -0,0 +1,14 @@ +{ + "query": { + "termQuery": { + "fields": [ + "enabled", + "active" + ], + "operator": "is", + "values": [ + false + ] + } + } +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Range2Filter.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Range2Filter.json new file mode 100644 index 00000000..e351bb9f --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/Range2Filter.json @@ -0,0 +1,7 @@ +{ + "fromField": "validFrom", + "toField": "validTo", + "filterMode": "overlap", + "fromValue": "2007-01-01T00:00:00.000Z", + "toValue": "2017-01-01T00:00:00.000Z" +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/RangeFilter.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/RangeFilter.json new file mode 100644 index 00000000..033e34cb --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/RangeFilter.json @@ -0,0 +1,6 @@ +{ + "field": "redemptionCount", + "from": 0, + "to": 10, + "fromInclusive": false +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SearchRequestBase.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SearchRequestBase.json new file mode 100644 index 00000000..a0f8aa8d --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SearchRequestBase.json @@ -0,0 +1,10 @@ +{ + "limit" : 4, + "query" : { + "textQuery": { + "fields": ["id", "description"], + "searchPhrase": "campaign" + } + }, + "offset" : 2 +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SimpleSearchResultBase.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SimpleSearchResultBase.json new file mode 100644 index 00000000..4aa969bc --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/SimpleSearchResultBase.json @@ -0,0 +1,31 @@ +{ + "limit" : 1, + "hits" : [ + { + "couponId": "MyCoupon", + "creationDate": "2019-10-20T12:00:00Z", + "description": "This coupon is used to give 10% off stuff.", + "enabled": false, + "exportedCodeCount": 0, + "lastModified": "2019-10-30T04:23:59Z", + "redemptionCount": 3, + "redemptionLimits": { + "limitPerCode": 1, + "limitPerCustomer": 1, + "limitPerTimeFrame": { + "limit": 2, + "redemptionTimeFrame": 24 + } + }, + "singleCode": "MyCode", + "systemCodesConfig": { + "codePrefix": "SG", + "numberOfCodes": 500000 + }, + "totalCodesCount": 50, + "type": "single_code" + } + ], + "offset" : 2, + "total" : 8 +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermFilter.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermFilter.json new file mode 100644 index 00000000..56a40325 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermFilter.json @@ -0,0 +1,7 @@ +{ + "field": "id", + "operator": "is", + "values": [ + "myId" + ] +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermQuery.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermQuery.json new file mode 100644 index 00000000..419f69c5 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TermQuery.json @@ -0,0 +1,9 @@ +{ + "fields": [ + "enabled" + ], + "operator": "is", + "values": [ + false + ] +} \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TextQuery.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TextQuery.json new file mode 100644 index 00000000..357e1d43 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Examples/TextQuery.json @@ -0,0 +1,6 @@ +{ + "fields": [ + "couponId" + ], + "searchPhrase": "limit" +} diff --git a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/shopper-token.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/am-oauth-2.raml similarity index 51% rename from apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/shopper-token.raml rename to testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/am-oauth-2.raml index 2a172e2b..2a4c8589 100644 --- a/apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/1.0.17/SecuritySchemes/shopper-token.raml +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/am-oauth-2.raml @@ -1,43 +1,46 @@ #%RAML 1.0 SecurityScheme description: | - Shopper token Authentication. -type: x-custom -displayName: ShopperToken + AccountManager OAuth 2.0 bearer token Authentication. +type: OAuth 2.0 uses: - + describedBy: headers: Authorization: description: | - Bearer token + OAuth 2.0 access token in Bearer scheme type: string pattern: "Bearer .*" examples: authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f responses: 401: - description: Unauthorized. Your access-token is invalid or expired and could not be used to identify an user. + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify an API client or user. headers: WWW-Authenticate: example: | WWW-Authenticate: Bearer realm="servers", error="invalid_token", - error_description="The token expired" + error_description="The access token expired" body: application/json: type: !include ../Types/error-response.raml example: type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" title: Unauthorized - detail: Your access-token is invalid or expired and could not be used to identify an user. + detail: Your access token is invalid and can’t be used to identify an API client or user. 403: - description: Forbidden. Your token is valid, but you have no permissions to access the resource. + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. body: application/json: type: !include ../Types/error-response.raml example: type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" title: Forbidden - detail: Your token is valid, but you have no permissions to access the resource. \ No newline at end of file + detail: Your access token is valid, but you don’t have the required permissions to access the resource. +settings: + authorizationUri: https://account.demandware.com/dwsso/oauth2/authorize + accessTokenUri: https://account.demandware.com/dwsso/oauth2/access_token + authorizationGrants: [authorization_code, client_credentials] \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-taob.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-taob.raml new file mode 100644 index 00000000..e6754c16 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-taob.raml @@ -0,0 +1,51 @@ +#%RAML 1.0 SecurityScheme + +description: | + `ShopperTokenTaob` (Taob = trusted agent on behalf) is a child of the `ShopperToken` security scheme and extends the functionality of `ShopperToken` for specific use cases. + A token of type `ShopperTokenTaob` allows you to access Shopper API endpoints, including OCAPI and Salesforce Commerce API for headless applications. Besides endpoints that require this specific subtype, all other endpoints secured by the `ShopperToken` parent scheme can be accessed with a `ShopperTokenTaob`. + To get a `ShopperTokenTaob` token, a `Taob` session needs to be created first (see [getTrustedAgentAuthorizationToken](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-login?meta=getTrustedAgentAuthorizationToken)). Afterwards the `ShopperTokenTaob` token can be gained (see [getTrustedAgentAccessToken](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-login?meta=getTrustedAgentAccessToken)). + For more information regarding the `Taob` flow see also [Trusted Agent Authorization](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-trusted-agent.html). + +type: OAuth 2.0 +displayName: ShopperTokenTaob + +uses: + +describedBy: + headers: + Authorization: + description: | + OAuth 2.0 access token in Bearer scheme + type: string + pattern: "Bearer .*" + examples: + authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f + responses: + 401: + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify an API client or user. + headers: + WWW-Authenticate: + example: | + WWW-Authenticate: Bearer realm="servers", + error="invalid_token", + error_description="The access token expired" + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" + title: Unauthorized + detail: Your access token is invalid and can’t be used to identify an API client or user. + 403: + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" + title: Forbidden + detail: Your access token is valid, but you don’t have the required permissions to access the resource. +settings: + accessTokenUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/trusted-agent/token + authorizationGrants: [client_credentials] + \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-tsob.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-tsob.raml new file mode 100644 index 00000000..a8248865 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token-tsob.raml @@ -0,0 +1,50 @@ +#%RAML 1.0 SecurityScheme + +description: | + `ShopperTokenTsob` (Tsob = trusted system on behalf) is a child of the `ShopperToken` security scheme and extends the functionality of `ShopperToken` for specific use cases. + A token of type `ShopperTokenTsob` allows you to access Shopper API endpoints, including OCAPI and Salesforce Commerce API for headless applications. Besides endpoints that require this specific subtype, all other endpoints secured by the `ShopperToken` parent scheme can be accessed with a `ShopperTokenTsob`. + To learn how to get a `ShopperTokenTsob` token, see [getTrustedSystemAccessToken](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:getTrustedSystemAccessToken). + +type: OAuth 2.0 +displayName: ShopperTokenTsob + +uses: + +describedBy: + headers: + Authorization: + description: | + OAuth 2.0 access token in Bearer scheme + type: string + pattern: "Bearer .*" + examples: + authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f + responses: + 401: + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify an API client or user. + headers: + WWW-Authenticate: + example: | + WWW-Authenticate: Bearer realm="servers", + error="invalid_token", + error_description="The access token expired" + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" + title: Unauthorized + detail: Your access token is invalid and can’t be used to identify an API client or user. + 403: + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" + title: Forbidden + detail: Your access token is valid, but you don’t have the required permissions to access the resource. +settings: + accessTokenUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/trusted-system/token + authorizationGrants: [client_credentials] + \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token.raml new file mode 100644 index 00000000..f211a3c0 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/SecuritySchemes/shopper-token.raml @@ -0,0 +1,50 @@ +#%RAML 1.0 SecurityScheme + +description: | + `ShopperToken` authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. For a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary). + A shopper token allows you to access the Shopper API endpoints of both OCAPI and the B2C Commerce API. These endpoints can be used to build headless storefronts and other applications. + The `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token. + +type: OAuth 2.0 +displayName: ShopperToken + +uses: + +describedBy: + headers: + Authorization: + description: | + Bearer token + type: string + pattern: "Bearer .*" + examples: + authenticatedUser: Bearer b325e95c-2cd7-11e5-b345-feff819cdc9f + responses: + 401: + description: Unauthorized. Your access token is invalid or expired and can’t be used to identify a user. + headers: + WWW-Authenticate: + example: | + WWW-Authenticate: Bearer realm="servers", + error="invalid_token", + error_description="The token expired" + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized" + title: Unauthorized + detail: Your access token is invalid or expired and can’t be used to identify a user. + 403: + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. + body: + application/json: + type: !include ../Types/error-response.raml + example: + type: "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden" + title: Forbidden + detail: Your access token is valid, but you don’t have the required permissions to access the resource. +settings: + authorizationUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize + accessTokenUri: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + authorizationGrants: [authorization_code,client_credentials] \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/ISO-standards.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/ISO-standards.raml new file mode 100644 index 00000000..cb15c1c0 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/ISO-standards.raml @@ -0,0 +1,85 @@ +#%RAML 1.0 Library +usage: |- + This data type library holds fields that have data types that conform to well established standards, such as ISOs. Each should link to the appropriate standards document. + +types: + ISOCurrency: + description: |- + A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. + type: string + pattern: ^[A-Z][A-Z][A-Z]$ + example: + USD + NoValue: + description: A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number. + type: string + example: N/A + default: N/A + enum: + - N/A + Currency: + description: |- + A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. +# type: ISOCurrency | NoValue + type: string + example: + USD + MoneyMnemonic: + description: |- + A combination of a Currency and an amount of that Currency. + type: object + properties: + currencyMnemonic?: Currency + value?: + description: The amount of money for the given currency. + type: number + format: double + example: 1234.56 + Country: + description: |- + A two letter uppercase country code conforming to the [ISO 3166-1](https://www.iso.org/iso-3166-country-codes.html) alpha-2 standard. + type: string + pattern: ^[A-Z][A-Z]$ + example: + US + Language: + description: |- + A two letter lowercase language code conforming to the [ISO 639-1](https://www.iso.org/iso-639-language-codes.html) standard. Additionally, this may be used to submit requests with the header parameter `Accept-Language`, following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). + type: string + pattern: ^[a-z][a-z]$ + example: + en + LanguageCountry: + description: |- + A concatenated version of the standard Language and Country codes, combined with a hyphen '`-`'. + type: string + pattern: ^[a-z][a-z]-[A-Z][A-Z]$ + example: en-US + Locale: + description: |- + A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. +# type: LanguageCountry | Language | DefaultFallback + type: string + DefaultFallback: + description: A specialized value indicating the system default values for locales. + type: string + example: default + default: default + enum: + - default + L10nString: + description: |- + A string with content that can differ by locale. Rather than being stored as an individual value, it is stored as a map of a LocaleCode and the translated value in that locale. + + Acceptable keys are two-character language codes, the language code followed by a hyphen and a two-character country code, or the term default, representing a fallback locale if no other locale could be resolved. + type: object + properties: + /^(default|[a-z]{2}|[a-z]{2}-[A-Za-z]{2})$/: + type: string + required: false + example: + default: The quick brown fox jumps over the lazy dog. + en: The quick brown fox jumps over the lazy dog. + en-US: The quick brown fox jumps over the lazy dog. + en-CA: The quick brown fox jumps over the lazy dog. + es: El rápido zorro marrón salta sobre el perro perezoso. diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/additional-properties.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/additional-properties.raml new file mode 100644 index 00000000..1460ec83 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/additional-properties.raml @@ -0,0 +1,24 @@ +#%RAML 1.0 Library +usage: |- + Data Types that don't fit into any specific category like error responses or search related types can be entered into this catch-all library. +types: + NoPropertiesAllowed: + type: object + additionalProperties: false + description: |- + This type is intended as an abstract super type that indicates that no additional properties are supported for this type and its sub types. All types that do not support any additional properties should inherit from this type. This type is not allowed to be used directly in any API and should always be extended. + SpecifiedPropertiesAllowed: + type: object + description: |- + This type is intended as an abstract super type that indicates that additional properties are supported for this type and its sub types (unless one of those subtypes inherits from `ClosedObject`). All types that support any additional properties should inherit from this type. This type is not allowed to be used directly in any API and should always be extended. + + To indicate that the properties were defined and expected to be handled as additional properties, they are expected to be prefixed with a `c_`. The type will reject any property that does not fit this pattern, only allowing additional properties beginning with the known prefix. + additionalProperties: true + properties: + /^c_.+$/?: + displayName: Additional Property Support + description: |- + This type supports additional properties passed along with the defined properties of this API. To indicate that the properties were defined and expected to be handled as additional properties, they are expected to be prefixed with a `c_`. The type will reject any property that does not fit this pattern, only allowing additional properties beginning with the known prefix. + example: + c_faxNumber + type: any \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/attribute-definition-types.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/attribute-definition-types.raml new file mode 100644 index 00000000..e1b98575 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/attribute-definition-types.raml @@ -0,0 +1,177 @@ +#%RAML 1.0 Library +usage: A common set of types used for describing the metadata of properties of types in the system, including both system and custom properties. + +uses: + AdditionalProperties: additional-properties.raml + ISO: ISO-standards.raml + +types: + AttributeDefinition: + description: A collection of metadata describing the properties of a type. This can include properties that are provided by the system, and properties that are defined by the merchant to extend the base types. + type: + AdditionalProperties.NoPropertiesAllowed + properties: + defaultValue: + description: 'The optional default value of this property.' + type: PropertyValueDefinition + required: false + id: + description: The unique identifier for the property. + type: string + example: color + required: false + pattern: ^[A-Za-z0-9]+$ + name: + description: The short, localized name of the definition, suitable for use in simple identifiers such as labels. + type: ISO.L10nString + properties: + example: + default: color + de: fabre + description: + description: A localized description of the property, describing the property in detail. + type: ISO.L10nString + example: + default: The color of the product. + de: Die Farbe des Produkts. + key: + description: A flag indicating if this property is part of the primary unique identifier of this type. + type: boolean + required: false + default: false + example: false + localizable: + description: A flag indicating if this property supports localization. + type: boolean + required: false + default: false + example: false + mandatory: + description: A flag indicating if this property must be passed when creating or updating the type. + type: boolean + required: false + default: false + example: false + max: + description: If numeric, the maximum possible value for this property. + type: number + format: double + required: false + example: 100 + minLength: + description: The minimum length of a value required when passing this property. + type: integer + format: int32 + required: false + example: 5 + min: + description: If numeric, the minimum possible value for this property. + type: number + format: double + required: false + example: 10 + multiValueType: + description: A flag indicating if the property supports multiple values. Most property valueTypes only support one value. The valueTypes `int`, `double`, `string`,`enum_of_int` and `enum_of_string` may set this property to support multiple values. + type: boolean + required: false + default: false + example: false + regularExpression: + description: A regular expression that defines the valid values for this property. The exact regular expression syntax is determined by the implementation of the API. + type: string + required: false + example: ".*[a-zA-Z]{2,}+.*" + scale: + description: If the property supports floating point numbers, the number of decimal digits for a numeric value of this property. + type: integer + format: int32 + required: false + default: 2 + example: 2 + searchable: + description: A flag indicating if this property is intended to be indexed for searching in the customer facing storefront. + type: boolean + required: false + default: false + example: true + siteSpecific: + description: A flag indicating if this property supports different values for each storefront. + type: boolean + required: false + default: false + example: false + system: + description: A flag indicating if this property is provided by the system. + type: boolean + required: false + default: false + example: true + unit: + description: If numeric, identifes what unit of measure the value of this property is measured by. + type: ISO.L10nString + required: false + example: + default: inches + de: Zoll + possibleValues: + description: A set of values that are possible for this property. + type: PropertyValueDefinition[] + required: false + type: + description: The data type of this property. + type: string + enum: + - string + - int + - double + - text + - html + - date + - image + - boolean + - money + - quantity + - datetime + - email + - password + - enum_of_string + - enum_of_int + example: "string" + visible: + description: A flag indicating that this property is visible. + type: boolean + required: false + default: true + example: true + PropertyValueDefinition: + description: Represents an actual or possible value for a property + type: + AdditionalProperties.NoPropertiesAllowed + properties: + description: + description: A description of the property value. + type: ISO.L10nString + example: + default: Rose Red + de: Rosenrot + displayValue: + description: |- + A display name that can be used to present this value in the user interface. For example, if the property is 'color', the value might be '1' but the display might be 'Red'. + type: ISO.L10nString + example: + default: Red + de: Rot + id: + description: The unique id of the property value. + type: string + example: "1" + position: + description: The position of the property value within the collection of possible property values. + type: number + format: double + required: false + example: 0.0 + value: + description: The value of the property. + type: string + example: "1" \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/error-response.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/error-response.raml new file mode 100644 index 00000000..2e59aeff --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/error-response.raml @@ -0,0 +1,45 @@ +#%RAML 1.0 DataType + +# Defines a "problem detail" as a way to carry machine- +# readable details of errors in a HTTP response to avoid the need to +# define new error response formats for HTTP APIs, it follows the [IETF rfc7807](https://tools.ietf.org/html/rfc7807). + +properties: + type: + description: | + A URI reference [RFC3986] that identifies the + problem type. This specification encourages that, when + dereferenced, it provide human-readable documentation for the + problem type (e.g., using HTML [W3C.REC-html5-20141028]). When + this member is not present, its value is assumed to be + "about:blank". It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + required: true + example: https://example.com/probs/out-of-credit + title: + description: | + A short, human-readable summary of the problem + type. It will not change from occurrence to occurrence of the + problem, except for purposes of localization. + type: string + required: false + example: You do not have enough credit. + detail: + description: | + A human-readable explanation specific to this + occurrence of the problem. + type: string + required: false + example: Your current balance is 30, but that costs 50. + instance: + description: | + A URI reference that identifies the specific + occurrence of the problem. It may or may not yield further + information if dereferenced. It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + required: false + example: "/account/12345/msgs/abc" \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/pagination-types.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/pagination-types.raml new file mode 100644 index 00000000..cd64852a --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/pagination-types.raml @@ -0,0 +1,25 @@ +#%RAML 1.0 Library + +# To be applied on endpoints that use offset and limit pagination controls as described in [pagination controls](https://confluence.internal.salesforce.com/display/ENG/RESTful+APIs+Conventions+and+Standards+v1.1). +# +# These are available separately as data types as they are sometimes referenced in the body of requests. In that case, it is recommended to override the maximum and the description of the limit to display the actual maximum allowed, possibly with a parameter as done in the offset-paginated trait. + +types: + Offset: + description: Used to retrieve the results based on a particular resource offset. + type: integer + format: int64 + default: 0 + minimum: 0 + Limit: + description: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria). + type: integer + format: int32 + default: 10 + minimum: 1 + Total: + description: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated. + type: integer + format: int64 + default: 0 + minimum: 0 \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/search-types.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/search-types.raml new file mode 100644 index 00000000..93accaf6 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/Types/search-types.raml @@ -0,0 +1,360 @@ +#%RAML 1.0 Library +usage: A common set of search-related request types and response types for OCAPI Data resources. Data resources are expected to use the search request directly and extend the search response in their definition. + +uses: + Pagination: pagination-types.raml + +types: + BoolFilter: + description: Allows you to combine other filters into (possibly recursive) logical expression trees. A boolean filter is composed of a logical operator (`AND`, `OR`, `NOT`) and a list of filters that the operator relates to. Multiple filters can be negated with a single `NOT` operator, even when the filters are combined with the `AND` operator. + type: object + example: !include ../Examples/BoolFilter.json + properties: + filters: + description: A list of filters that are logically combined by an operator. + type: Filter[] + required: false + operator: + description: The logical operator that is used to combine the filters. + type: string + enum: + - and + - or + - not + BoolQuery: + description: | + A boolean query allows construction of full logical expression trees that are composed of other queries (usually term queries and text queries). A boolean query has three sets of clauses: + + - `must`, which combines as an `AND` operator. + - `should`, which combines as an `OR` operator. + - `must_not`, which combines as a `NOT` operator. + + If `must`, `mustNot`, or `should` appear in the same boolean query, they are combined logically using the `AND` operator. For example: + + (must-1 AND must-1 AND ...) + AND (should-1 OR should-2 OR ...) + AND NOT (must_not-1 OR must_not-2 OR ...) + + type: object + examples: !include ../Examples/BoolQuery.raml + properties: + must?: + description: List of queries to be evaluated as an `AND` operator. + type: Query[] + mustNot?: + description: List of queries to be evaluated as a `NOT` operator. + type: Query[] + should?: + description: List of queries to be evaluated as an `OR` operator. + type: Query[] + Filter: + description: |- + Contains a set of objects that define criteria used to select records. A filter can contain one of the following: + * `TermFilter` + - Matches records where a field (or fields) exactly matches some simple value (including `null`). + * `RangeFilter` + - Matches records where a field value lies within a specified range. + * `Range2Filter` + - Matches records in a specified range across fields. + * `QueryFilter` + - Matches records based on a query. + * `BoolFilter` + - Provides filtering of records using a set of filters combined using a logical operator. + type: object + example: !include ../Examples/Filter.json + minProperties: 1 + maxProperties: 1 + properties: + boolFilter?: BoolFilter + queryFilter?: QueryFilter + range2Filter?: Range2Filter + rangeFilter?: RangeFilter + termFilter?: TermFilter + FilteredQuery: + description: Allows to filter the result of a possibly complex query using a possibly complex filter. + type: object + example: !include ../Examples/FilteredQuery.json + properties: + filter: + description: The possibly complex filter object. + type: Filter + query: + description: The query object. + type: Query + MatchAllQuery: + description: Matches all documents (namespace and document type). This query comes in handy if you just want to filter a search result or really do not have any constraints. + type: object + NestedQuery: + description: | + Allows you to query nested documents that are part of a larger document. Say, for example, that you have a main product with variations in one big document, and you want to constrain a search to main products that have variations that match multiple constraints. + + A `NestedQuery` is only supported by some Commerce APIs. For more details, see the endpoint descriptions in the API documentation. + type: object + example: !include ../Examples/NestedQuery.json + properties: + path: + description: The path to the nested document. + type: string + query: + description: The query to run on the nested document. + type: Query + scoreMode: + description: |- + Indicates how scores for matching child objects affect the root parent document’s relevance score. + type: string + enum: + - avg + - total + - max + - none + required: false + Query: + description: |- + A set of objects that define criteria used to select records. A query can contain one of the following: + * `MatchAllQuery` + - Matches all documents. + * `TermQuery` + - Matches one or more documents against one or more document fields. + * `TextQuery` + - Matches text against one or more fields. + * `BoolQuery` + - Allows construction of a logical expression of multiple queries. + * `FilteredQuery` + - Allows a filter to be applied to a query. + * `NestedQuery` + - Allows you to query on nested documents. + - _Only supported by some Commerce APIs. For more details, see the endpoint descriptions in the API documentation._ + type: object + maxProperties: 1 + minProperties: 1 + example: !include ../Examples/Query.json + properties: + boolQuery?: BoolQuery + filteredQuery?: FilteredQuery + matchAllQuery?: MatchAllQuery + nestedQuery?: NestedQuery + termQuery?: TermQuery + textQuery?: TextQuery + QueryFilter: + description: |- + Wraps any query and allows it to be used as a filter. + type: object + example: !include ../Examples/QueryFilter.json + properties: + query: + description: The query to use as a filter. + type: Query + Range2Filter: + description: |- + Allows you to restrict a search result to hits where a range defined by specified attributes has a certain relationship to a specified range. + + The first range (R1) is defined by a pair of attributes (`fromField` and `toField`) that specify the extent of a range, such as attributes `validFrom` and `validTo`. + + The second range (R2) is defined by `fromValue` and `toValue`. + + The filter mode specifies the method used to compare the two ranges: + + * `overlap`: R1 overlaps fully or partially with R2. + * `containing`: R1 contains R2. + * `contained`: R1 is contained in R2. + + The range filter supports several value types, and relies on the natural sorting of the value type for range interpretation. Value ranges can be open-ended, but only at one end of the range. You can configure whether the lower bounds and upper bounds are inclusive or exclusive. + + A range 2 filter is useful for general restrictions that can be shared between searches (like a static date range) because the filter result is cached in memory. Range filters are not appropriate if the range is expected to be different for every query (for example, if the user controls the date range down to the hour via a UI control). Range filters are inclusive by default. + + type: object + example: !include ../Examples/Range2Filter.json + properties: + filterMode: + description: 'Compare mode: overlap, containing, or contained.' + type: string + enum: + - overlap + - containing + - contained + default: overlap + required: false + fromField: + description: The field name of the field that starts the first range. + type: string + fromInclusive: + description: A flag indicating if the lower bound of the second range is inclusive. To make the lower bound exclusive, set to `false`. + type: boolean + required: false + default: true + fromValue: + description: The lower bound of the second range. If not specified, the range is open-ended with respect to the lower bound. You can't leave both the lower and upper bounds open-ended. + type: any + required: false + toField: + description: The field name of the field that ends the first range. + type: string + toInclusive: + description: A flag indicating if the upper bound of the second range is inclusive. To make the lower bound exclusive, set to `false`. + type: boolean + required: false + default: true + toValue: + description: The upper bound of the second range. If not specified, the range is open-ended with respect to the upper bound. You can't leave both the upper and lower bounds open-ended. + type: any + required: false + RangeFilter: + description: |- + Allows you to restrict a search result to hits that have values for a given attribute that fall within a given value range. The range filter supports several value types and relies on the natural sorting of the value type for range interpretation. Value ranges can be open-ended, but only at one end of the range. You can configure whether the lower bounds and upper bounds are inclusive or exclusive. + + A range filter is useful for general restrictions that can be shared between searches (like a static date range) because the filter result is cached in memory. Range filters are not appropriate if the range is expected to be different for every query (for example, if the user controls the date range down to the hour via a UI control). Range filters are inclusive by default. + type: object + example: !include ../Examples/RangeFilter.json + properties: + field: + description: The search field. + type: string + from: + description: The lower bound of the filter range. If not specified, the range is open-ended with respect to the lower bound. You can't leave both the lower and upper bounds open-ended. + type: any + required: false + fromInclusive: + description: A flag indicating if the lower bound of the range is inclusive. To make the lower bound exclusive, set to `false`. + type: boolean + required: false + default: true + to: + description: The upper bound of the filter range. If not specified, the range is open-ended with respect to the upper bound. You can't leave both the upper and lower bounds open-ended. + type: any + required: false + toInclusive: + description: A flag indicating if the upper bound of the range is inclusive. To make the upper bound exclusive, set to `false`. + type: boolean + required: false + default: true + SearchRequestBase: + description: Document representing a search request for retrieving items within the Data API. The query is a potentially complex set of expressions. The fields and expands that each query supports are defined within the search resource. + type: object + example: !include ../Examples/SearchRequestBase.json + properties: + limit?: + type: Pagination.Limit + maximum: 200 + description: Maximum records to retrieve per request, not to exceed 200. + query: + description: | + The search query. See the description of the search endpoint for a list of queryable attributes. + type: Query + sorts: + description: The list of sort clauses configured for the search request. Sort clauses are optional. See the description of the search endpoint for details on the default sorting behavior that is used when explicit sorts are not passed. + type: Sort[] + required: false + offset?: Pagination.Offset + PaginatedSearchResultBase: + description: Document representing a generic search result. Each search resource should extend this to define what is returned in the `hits`. + type: SimpleSearchResultBase + example: !include ../Examples/PaginatedSearchResultBase.json + properties: + query: + description: The query that is passed into the search. + type: Query + sorts: + description: The sorting that was applied to the result. + type: Sort[] + required: false + SimpleSearchResultBase: + description: Document representing a generic search result. Each search resource should extend this to define what is returned in the `hits`. + type: object + example: !include ../Examples/SimpleSearchResultBase.json + properties: + limit: + type: Pagination.Limit + maximum: 200 + description: Maximum records to retrieve per request, not to exceed 200. + hits: + description: The sorted array of search hits. Can be empty. + type: object[] + required: false + offset: Pagination.Offset + total: Pagination.Total + + Sort: + description: Document representing a sort request. Each API has a different default sort configuration that can be modified in the request. + type: object + example: { "field": "couponId", "sortOrder": "desc" } + properties: + field: + description: The name of the field to sort on. + type: string + sortOrder: + description: The sort order to be applied when sorting. When omitted, the default sort order (asc) is used. + type: string + default: asc + enum: + - asc + - desc + required: false + TermFilter: + description: |- + Allows you to restrict a search result to hits that match exactly one of the values configured for the filter. A term filter is useful for general restrictions that can be shared between searches. Use term filters whenever the criteria you filter on is a shared property of multiple searches (for example, like filtering by an order status). Use term filters for fields that have a discrete and small set of values only. + type: object + example: !include ../Examples/TermFilter.json + properties: + field: + description: The filter field. + type: string + operator: + description: The operator used to compare the field's values with the given values. + type: string + enum: + - is + - one_of + - is_null + - is_not_null + - less + - greater + - not_in + - neq + values: + description: The filter values. + type: any[] + required: false + TermQuery: + description: |- + A term query matches one or more values against one or more document fields. A document is considered a hit if one of the values matches exactly with at least one of the given fields. The operator `is` can only take one value, while `one_of` can take multiple values. If multiple fields are specified, they are combined using a logical `OR` operator. + + **Limitations:** + + * The `greater` and `less` operators are not supported under certain conditions. Both operators are permitted unless the API documentation states otherwise. + * A subset of Commerce APIs handle queries with multiple fields differently. If the query has multiple fields, the query is internally handled as a logical `OR` of `DisjointMaxQueries` (with the dismax matching a value against all fields). The dismax makes sure that a document carrying a single term in multiple fields does not get higher scores than a document matching multiple terms in multiple fields. + type: object + example: !include ../Examples/TermQuery.json + properties: + fields: + description: The document fields that the values are matched against, combined with the operator. + minItems: 1 + type: string[] + operator: + description: Returns the operator to use for the term query. + type: string + enum: + - is + - one_of + - is_null + - is_not_null + - less + - greater + - not_in + - neq + values: + description: The values that the fields are compared against, combined with the operator. + type: any[] + required: false + TextQuery: + description: |- + A text query is used to match some text (for example, a search phrase possibly consisting of multiple terms) against one or more fields. When multiple fields are provided, the phrase conceptually forms a logical `OR` over the fields. In this case, the terms of the phrase basically have to match within the text, that would result in concatenating all given fields. + type: object + example: !include ../Examples/TextQuery.json + properties: + fields: + description: The document fields that the search phrase matches against. + minItems: 1 + type: string[] + searchPhrase: + description: A search phrase, which can include multiple terms separated by spaces. + type: string \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml new file mode 100644 index 00000000..90ec2324 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml @@ -0,0 +1,118 @@ +#%RAML 1.0 Library +usage: |- + + The Commerce Cloud API Standards is a collection of types, traits, security schemes, and more that follows the standards that are defined for the B2C Commerce APIs. Use this standard library in conjunction with the Salesforce API Standards library, via the `uses` property. See the main RAML file for any of the B2C Commerce APIs for example usage. + + The goal of this library is to expose only the importable objects and keep other, internal details as private. If you have suggestions for adding to the standard, contact the C4E team with your proposal. + + # Security Schemes + + This library provides the following reusable security schemes. Except in rare circumstances, avoid defining a custom security scheme for a single API. The security schemes provided here or in the Salesforce API Standards are designed to meet the needs of most applications. + + Security schemes included in Commerce Cloud Standards: + + - `AmOAuth2`: for endpoints authenticated against [Account Manager](https://account.demandware.com/dw/account/Home#/) OAuth 2.0. + - `ShopperToken`: for endpoints authenticated via Shopper JWTs. + + ## Types + + This library provides the following reusable types. These types are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. + + - `SiteId`: a type that describes the storefront context for requests by a Shopper. If you need to have a siteId queryParam, use the trait `SiteSpecific`. + + ## Search Specific + + - `SearchRequest`: a type commonly used for searching that takes a query in a body. + - `PaginatedSearchResult`: a type commonly used for a search response that took a query in a body. + - `SimpleSearchResult`: a type used for a search response that takes a query in a body, but does not return a paginated result. + + ## Standards Followed + + - `CurrencyCode`: ISO 4217 compliant currency code. + - `Money`: A combination of a CurrencyCode and a number. + - `LanguageCode`: ISO 639-1 compliant language code. + - `CountryCode`: ISO 3166-1 compliant country code. + - `LocaleCode`: A combination of LanguageCode and CountryCode. + + ## Resource Types + + This project provides the following reusable resource types. These resource types are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. + + - `Organization`: a type that describes the `organizationId` URI parameter that the majority of Commerce Cloud APIs require in the resource path after the `version`. The beginning of all API resource paths is expected to be `/organizations/{organizationId}`. This resource type provides the documentation and validation of the `organizationId`. + + ## Traits + + This project provides the following reusable traits. These traits are referenced in a plurality of APIs, to the point where it makes sense to have a common definition where the documentation, validation, and usage of them can be well documented. + + - `Selectable`: adds a query parameter called `select` of type `Select` to the request. + - `SiteSpecific`: adds a query parameter called `siteId` of type `SiteId` to the request. + - `QueryParamsLimit`: adds an offset query parameter without the limit query parameter. Some Commerce Cloud use cases do not currently require both. Prefer the use of `ApiStandards.OffsetPaginated` because this trait will be deprecated in the future if there is no use case for it. + - `QueryParamsOffset`: adds a limit query parameter without the offset query parameter. Some Commerce Cloud use cases do not currently require both. Prefer the use of `ApiStandards.OffsetPaginated` because this trait will be deprecated in the future if there is no use case for it. + +uses: + AdditionalProperties: Types/additional-properties.raml + Search: Types/search-types.raml + Pagination: Types/pagination-types.raml + ISO: Types/ISO-standards.raml + AttributeDefinitions: Types/attribute-definition-types.raml + +securitySchemes: + AmOAuth2: !include SecuritySchemes/am-oauth-2.raml + ShopperToken: !include SecuritySchemes/shopper-token.raml + ShopperTokenTsob: !include SecuritySchemes/shopper-token-tsob.raml + ShopperTokenTaob: !include SecuritySchemes/shopper-token-taob.raml + +types: + SiteId: + description: The identifer of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites + example: + SiteGenesis + type: string + minLength: 1 + Select: + description: The property selector declaring which fields are included into the response payload. You can specify a single field name, a comma-separated list of names or work with wildcards. You can also specify array operations and filter expressions. The actual selector value must be enclosed within parentheses. + example: + (name,id,variationAttributes.(**)) + type: string + minLength: 1 + SearchRequest: Search.SearchRequestBase + PaginatedSearchResult: Search.PaginatedSearchResultBase + SimpleSearchResult: Search.SimpleSearchResultBase + + CurrencyCode: ISO.Currency + Money: ISO.MoneyMnemonic + LanguageCode: ISO.Language + CountryCode: ISO.Country + LocaleCode: ISO.Locale + LocalizedString: ISO.L10nString + + PropertyDefinition: AttributeDefinitions.AttributeDefinition + + ClosedObject: AdditionalProperties.NoPropertiesAllowed + OpenObject: AdditionalProperties.SpecifiedPropertiesAllowed + +resourceTypes: + Organization: + uriParameters: + organizationId: + description: An identifier for the organization the request is being made by. + example: + f_ecom_zzxy_prd + +traits: + QueryParamsLimit: + usage: This trait should not be used unless there is no requirement for QueryParamsOffset. Prefer the usage of ApiStandards.OffsetPaginated. + queryParameters: + limit?: Pagination.Limit + QueryParamsOffset: + usage: This trait should not be used unless there is no requirement for QueryParamsLimit. Prefer the usage of ApiStandards.OffsetPaginated. + queryParameters: + offset?: Pagination.Offset + SiteSpecific: + usage: This trait should be used whenever a resource has the context of a site assoicated with its request. This will add a siteId query parameter + queryParameters: + siteId: SiteId + Selectable: + usage: This trait should be used whenever a resource supports generic property selection. This will add a select query parameter. + queryParameters: + select?: Select \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/example.raml b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/example.raml new file mode 100644 index 00000000..0a12252c --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/example.raml @@ -0,0 +1,68 @@ +#%RAML 1.0 +title: Example API +version: v1 +mediaType: + - application/json +protocols: + - HTTPS +description: An example file demonstrating the usage of the commerce cloud standards library. + +# Copied from the documentation section. +baseUri: https://{shortCode}.api.commercecloud.salesforce.com/standards/example/{version} +baseUriParameters: + shortCode: + description: A region-specific merchant identifier. + example: 0dnz6oep + pattern: ^([a-z0-9]+)(-[a-z0-9]+)*$ + +uses: + CommerceCloudStandards: commerce-cloud-standards.raml + tmp: Types/search-types.raml + +/organizations/{organizationId}/foo: + type: CommerceCloudStandards.Organization + description: An example Endpoint + get: + displayName: getFoo + description: Example get Method + securedBy: + - CommerceCloudStandards.AmOAuth2: { scopes: [example]} + + is: + - CommerceCloudStandards.QueryParamsOffset: + - CommerceCloudStandards.QueryParamsLimit: + - CommerceCloudStandards.SiteSpecific: + objectType: SiteId + objectId: SiteGenesis + - CommerceCloudStandards.Selectable + responses: + 200: + description: an example response + body: + type: CommerceCloudStandards.LocaleCode | CommerceCloudStandards.Money + +/organizations/{organizationId}/bar: + type: CommerceCloudStandards.Organization + description: Another example endpoint + get: + displayName: getBar + description: |- + Another example get method + + ## Scopes + + This endpoint requires that you have access to the following scopes: shopper-example + securedBy: + - CommerceCloudStandards.ShopperToken: { scopes: [shopper-example]} + + is: + - CommerceCloudStandards.SiteSpecific: + objectType: SiteId + objectId: SiteGenesis + body: + type: CommerceCloudStandards.SearchRequest + responses: + 200: + description: another example response + body: + type: CommerceCloudStandards.PaginatedSearchResult \ No newline at end of file diff --git a/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/exchange.json b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/exchange.json new file mode 100644 index 00000000..99686e80 --- /dev/null +++ b/testIntegration/stagingApis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/exchange.json @@ -0,0 +1,10 @@ +{ + "main": "commerce-cloud-standards.raml", + "name": "Commerce Cloud Standards", + "classifier": "raml-fragment", + "tags": [], + "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "assetId": "commerce-cloud-standards", + "version": "2.0.1", + "organizationId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" +} \ No newline at end of file diff --git a/testIntegration/stagingApis/customer/shopper-context/.metadata.json b/testIntegration/stagingApis/customer/shopper-context/.metadata.json index ea34ea38..1ba8e672 100644 --- a/testIntegration/stagingApis/customer/shopper-context/.metadata.json +++ b/testIntegration/stagingApis/customer/shopper-context/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-context/0.0.28", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-context/0.0.29", "name": "Shopper Context", "description": "The Shopper Context API enables developers to build highly contextualized shopping experiences for shoppers.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-context", - "version": "0.0.28", + "version": "0.0.29", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/customer/shopper-context/exchange.json b/testIntegration/stagingApis/customer/shopper-context/exchange.json index 8bfb6be6..d80be78f 100644 --- a/testIntegration/stagingApis/customer/shopper-context/exchange.json +++ b/testIntegration/stagingApis/customer/shopper-context/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "0.0.28", + "version": "0.0.29", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/customer/shopper-context/shopper-context.raml b/testIntegration/stagingApis/customer/shopper-context/shopper-context.raml index a397ec92..429eacaa 100644 --- a/testIntegration/stagingApis/customer/shopper-context/shopper-context.raml +++ b/testIntegration/stagingApis/customer/shopper-context/shopper-context.raml @@ -102,11 +102,14 @@ types: type: CommerceCloudStandards.Organization /shopper-context/{usid}: get: - description: Gets the shopper's context based on the shopperJWT. + description: |- + Gets the shopper's context based on the shopperJWT. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: getShopperContext queryParameters: siteId: - description: The identifier of the site to which the request is being sent. With B2C Commerce release 24.5, all new implementations of Shopper Context require the `siteId` query parameter to be passed. Existing customers with Shopper Context implementations should start including `siteId` going forward. Starting July 31 2024, `siteId` will be required for all customers, and a bad request response code will be returned for requests without a `siteId`. + description: The identifier of the site to which the request is being sent. With B2C Commerce release 24.5, all new implementations of Shopper Context require the `siteId` query parameter to be passed. Existing customers with Shopper Context implementations should start including `siteId` going forward. Starting January 2025, `siteId` will be required for all customers, and a bad request response code will be returned for requests without a `siteId`. example: SiteGenesis type: string @@ -147,7 +150,10 @@ types: securedBy: - CommerceCloudStandards.ShopperToken: { scopes: [sfcc.shopper-context, sfcc.shopper-context.rw] } put: - description: Creates the shopper's context based on shopperJWT. + description: |- + Creates the shopper's context based on shopperJWT. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: createShopperContext queryParameters: siteId: @@ -200,7 +206,10 @@ types: securedBy: - CommerceCloudStandards.ShopperToken: { scopes: [sfcc.shopper-context.rw] } delete: - description: Gets the shopper's context based on the shopperJWT. + description: |- + Gets the shopper's context based on the shopperJWT. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: deleteShopperContext queryParameters: siteId: @@ -240,7 +249,10 @@ types: securedBy: - CommerceCloudStandards.ShopperToken: { scopes: [sfcc.shopper-context.rw] } patch: - description: Updates the shopper's context based on the Shopper JWT. If the shopper context exists, it's updated with the patch body. If a `custom qualifier/assignment qualifer` or an `effectiveDateTime` or a `sourceCode` or a `customerGroupIds` is already present in the existing shopper context, its value is replaced by the corresponding value from the patch body. If a `custom qualifers'` or a `assignment qualifiers'` value is set to `null`, it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to an empty string (""), it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to `null`, it's ignored. If an `effectiveDateTime` or `sourceCode` or `custom/assignment qualifiiers'` value is new, it's added to the existing Shopper context. If `customerGroupIds` is set to empty array `[]` the existing value in shopper context is deleted. + description: |- + Updates the shopper's context based on the Shopper JWT. If the shopper context exists, it's updated with the patch body. If a `custom qualifier/assignment qualifer` or an `effectiveDateTime` or a `sourceCode` or a `customerGroupIds` is already present in the existing shopper context, its value is replaced by the corresponding value from the patch body. If a `custom qualifers'` or a `assignment qualifiers'` value is set to `null`, it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to an empty string (""), it's deleted from existing shopper context. If `effectiveDateTime` or `sourceCode` value is set to `null`, it's ignored. If an `effectiveDateTime` or `sourceCode` or `custom/assignment qualifiiers'` value is new, it's added to the existing Shopper context. If `customerGroupIds` is set to empty array `[]` the existing value in shopper context is deleted. + + With B2C Commerce release 24.5, all endpoints in the Shopper context API will require the `siteId` parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. displayName: updateShopperContext queryParameters: siteId: diff --git a/testIntegration/stagingApis/pricing/assignments/.metadata.json b/testIntegration/stagingApis/pricing/assignments/.metadata.json index 85032e8e..d6a658fc 100644 --- a/testIntegration/stagingApis/pricing/assignments/.metadata.json +++ b/testIntegration/stagingApis/pricing/assignments/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/assignments/1.0.25", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/assignments/1.0.26", "name": "Assignments", "description": "Search for promotions associated with campaigns.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "assignments", - "version": "1.0.25", + "version": "1.0.26", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/assignments/assignments.raml b/testIntegration/stagingApis/pricing/assignments/assignments.raml index 293b0459..3b059a7a 100644 --- a/testIntegration/stagingApis/pricing/assignments/assignments.raml +++ b/testIntegration/stagingApis/pricing/assignments/assignments.raml @@ -17,7 +17,10 @@ uses: types: Campaign: - description: Document representing a campaign. + description: |- + Document representing a campaign. + type: + CommerceCloudStandards.OpenObject properties: campaignId: description: The ID of the campaign. @@ -70,7 +73,9 @@ types: Promotion: description: |- Document representing a promotion. Unless otherwise stated, attributes of this document are not supported when using - the Open Commerce API to update multiple promotions at once. + the Open Commerce API to update multiple promotions at once. + type: + CommerceCloudStandards.OpenObject properties: archived: description: |- @@ -89,7 +94,7 @@ types: currencyCode: description: |- The ISO 4217 mnemonic code of the currency this promotion is restricted to. If not populated, then there is no - currency restriction on the promotion. + currency restriction on the promotion. maxLength: 3 type: string required: false @@ -145,6 +150,8 @@ types: type: Tag required: false PromotionAbtestGroupAssignment: + type: + CommerceCloudStandards.ClosedObject properties: abtestDescription: type: string @@ -159,6 +166,8 @@ types: segmentId: type: string PromotionAssignmentInformation: + type: + CommerceCloudStandards.ClosedObject properties: abtestId: description: |- @@ -227,7 +236,10 @@ types: items: type: PromotionCampaignAssignment PromotionCampaignAssignment: - description: Document representing a promotion campaign assignment. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a promotion campaign assignment. properties: campaign: description: The campaign. @@ -277,7 +289,10 @@ types: items: type: string Schedule: - description: Document representing a time schedule for slots. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a time schedule for slots. properties: endDate: description: 'The date to end of validity. ISO8601 date time format: yyyy-MM-dd''T''HH:mm:ssZ.' @@ -289,7 +304,10 @@ types: description: 'The date to start validity. ISO8601 date time format: yyyy-MM-dd''T''HH:mm:ssZ.' type: datetime Recurrence: - description: Document representing a schedule recurrence. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a schedule recurrence. properties: dayOfWeek: description: The days of week for recurrence. @@ -308,7 +326,10 @@ types: description: The time of the day for recurrence. type: TimeOfDay TimeOfDay: - description: Document representing a time schedule within a single day. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a time schedule within a single day. properties: timeFrom: description: |- @@ -321,7 +342,10 @@ types: are ignored and set to 0. type: string Tag: - description: Document representing a tag. + type: + CommerceCloudStandards.ClosedObject + description: |- + Document representing a tag. properties: tagId: description: The ID of the tag. diff --git a/testIntegration/stagingApis/pricing/assignments/exchange.json b/testIntegration/stagingApis/pricing/assignments/exchange.json index d567c46d..97de630c 100644 --- a/testIntegration/stagingApis/pricing/assignments/exchange.json +++ b/testIntegration/stagingApis/pricing/assignments/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.25", + "version": "1.0.26", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/campaigns/.metadata.json b/testIntegration/stagingApis/pricing/campaigns/.metadata.json index 5b63e0c1..910d60f8 100644 --- a/testIntegration/stagingApis/pricing/campaigns/.metadata.json +++ b/testIntegration/stagingApis/pricing/campaigns/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/campaigns/1.0.27", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/campaigns/1.0.28", "name": "Campaigns", "description": "Utilize campaign experiences for your customers.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "campaigns", - "version": "1.0.27", + "version": "1.0.28", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/campaigns/campaigns.raml b/testIntegration/stagingApis/pricing/campaigns/campaigns.raml index cac250db..89fa50ce 100644 --- a/testIntegration/stagingApis/pricing/campaigns/campaigns.raml +++ b/testIntegration/stagingApis/pricing/campaigns/campaigns.raml @@ -25,7 +25,10 @@ types: description: The sorted array of campaign search hits. Can be empty. type: Campaign[] Campaign: - description: Document representing a campaign. + description: |- + Document representing a campaign. + type: + CommerceCloudStandards.OpenObject properties: campaignId: description: The ID of the campaign. diff --git a/testIntegration/stagingApis/pricing/campaigns/exchange.json b/testIntegration/stagingApis/pricing/campaigns/exchange.json index 6e393ce3..c88f93f9 100644 --- a/testIntegration/stagingApis/pricing/campaigns/exchange.json +++ b/testIntegration/stagingApis/pricing/campaigns/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.27", + "version": "1.0.28", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/coupons/.metadata.json b/testIntegration/stagingApis/pricing/coupons/.metadata.json index cfdcb4b0..4cd68e46 100644 --- a/testIntegration/stagingApis/pricing/coupons/.metadata.json +++ b/testIntegration/stagingApis/pricing/coupons/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/coupons/1.0.27", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/coupons/1.0.28", "name": "Coupons", "description": "Manage coupons for use in your storefront.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "coupons", - "version": "1.0.27", + "version": "1.0.28", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml b/testIntegration/stagingApis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml index 93b905f6..b76b8806 100644 --- a/testIntegration/stagingApis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml +++ b/testIntegration/stagingApis/pricing/coupons/Examples/get_sites_siteid_coupons_couponid_codes.raml @@ -2,10 +2,6 @@ value: { "limit": 3, - "expand": - [ - "stats" - ], "offset": 0, "total": 50, "data": [ diff --git a/testIntegration/stagingApis/pricing/coupons/coupons.raml b/testIntegration/stagingApis/pricing/coupons/coupons.raml index 7e75841c..138cd615 100644 --- a/testIntegration/stagingApis/pricing/coupons/coupons.raml +++ b/testIntegration/stagingApis/pricing/coupons/coupons.raml @@ -20,7 +20,10 @@ uses: types: Coupon: - description: Document representing a coupon. + description: |- + Document representing a coupon. + type: + CommerceCloudStandards.ClosedObject properties: couponId: description: The ID of the coupon. @@ -101,7 +104,10 @@ types: - system_codes example: single_code CouponCode: - description: A coupon code with accompanying stats for redemptions and issues. + description: |- + A coupon code with accompanying stats for redemptions and issues. + type: + CommerceCloudStandards.ClosedObject properties: code: description: The code used to redeem the coupon. @@ -117,7 +123,10 @@ types: format: int32 example: 1 CouponCodes: - description: Document representing a set of coupon codes. + description: |- + Document representing a set of coupon codes. + type: + CommerceCloudStandards.ClosedObject properties: limit?: ApiStandards.Limit data: @@ -133,7 +142,10 @@ types: format: int32 example: 50 CouponMultiCodesRequest: - description: A request object to add and remove coupon codes from a document. + description: |- + A request object to add and remove coupon codes from a document. + type: + CommerceCloudStandards.ClosedObject properties: codes: description: The list of coupon codes to add or delete. @@ -142,6 +154,8 @@ types: items: type: string CouponSystemCodeConfig: + type: + CommerceCloudStandards.ClosedObject properties: codePrefix: description: The code prefix for system-generated coupon codes. @@ -153,7 +167,10 @@ types: format: int32 example: 50000 RedemptionLimitPerPeriod: - description: Document representing a coupon redemption limit. + description: |- + Document representing a coupon redemption limit. + type: + CommerceCloudStandards.ClosedObject properties: limit: description: The limit on the number of times a coupon can be redeemed for a specified redemption time period. @@ -169,7 +186,10 @@ types: format: int32 example: 24 RedemptionLimits: - description: Document representing a coupon. + description: |- + Document representing a coupon. + type: + CommerceCloudStandards.ClosedObject properties: limitPerCode: description: The redemption limit per code. @@ -190,7 +210,10 @@ types: redemptionTimeFrame: 24 limit: 1 CouponRedemption: - description: A redemption record returned from the coupon redemption resources. + description: |- + A redemption record returned from the coupon redemption resources. + type: + CommerceCloudStandards.ClosedObject properties: code: description: The coupon code that was redeemed. @@ -225,7 +248,10 @@ types: description: The array of coupon redemption search hits. Can be empty. type: CouponRedemption[] CouponCodeRedemptionRequest: - description: Document representing a request to redeem a coupon. + description: |- + Document representing a request to redeem a coupon. + type: + CommerceCloudStandards.ClosedObject properties: code: description: The coupon code to redeem. diff --git a/testIntegration/stagingApis/pricing/coupons/exchange.json b/testIntegration/stagingApis/pricing/coupons/exchange.json index ee049b7f..ef10aa9c 100644 --- a/testIntegration/stagingApis/pricing/coupons/exchange.json +++ b/testIntegration/stagingApis/pricing/coupons/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.27", + "version": "1.0.28", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/gift-certificates/.metadata.json b/testIntegration/stagingApis/pricing/gift-certificates/.metadata.json index a28b0888..1f0800ec 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/.metadata.json +++ b/testIntegration/stagingApis/pricing/gift-certificates/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/gift-certificates/1.0.29", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/gift-certificates/1.0.30", "name": "Gift Certificates", "description": "Manage your gift certificates.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "gift-certificates", - "version": "1.0.29", + "version": "1.0.30", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-result-example.raml b/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-result-example.raml index 71aea187..b0838c3c 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-result-example.raml +++ b/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-result-example.raml @@ -1,38 +1,33 @@ #%RAML 1.0 NamedExample -value: - { - "amount" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "balance" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "creationDate" : "2015-07-31T14:56:38.936Z", - "description" : "Birthday Gift", - "enabled" : true, - "maskedGiftCertificateCode" : "************LKWJ", - "merchantId" : "NorthernTrailOutfitters", - "message" : "A birthday gift for you", - "orderNo" : "CA17293", - "recipientName" : "John Doe", - "recipientEmail" : "john.doe@gmail.com", - "senderName" : "Jane Doe", - "status" : "issued", - "transactions" : - [ - { - "amount" : - { - "currencyMnemonic" : "EUR", - "value" : 80.00 - }, - "orderNo" : "CA17293", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" - } - ] +{ + "amount": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "balance": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "creationDate": "2015-07-31T14:56:38.936Z", + "description": "Birthday Gift", + "enabled": true, + "maskedGiftCertificateCode": "************LKWJ", + "merchantId": "NorthernTrailOutfitters", + "message": "A birthday gift for you", + "orderNo": "CA17293", + "recipientName": "John Doe", + "recipientEmail": "john.doe@gmail.com", + "senderName": "Jane Doe", + "status": "issued", + "transactions": [ + { + "amount": { + "currencyMnemonic": "EUR", + "value": 80.00 + }, + "orderNo": "CA17293", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" + } + ] } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-results-example.raml b/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-results-example.raml index 825a861d..bb2d539f 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-results-example.raml +++ b/testIntegration/stagingApis/pricing/gift-certificates/Examples/get-results-example.raml @@ -1,119 +1,113 @@ #%RAML 1.0 NamedExample -value: - { - "limit" : 3, - "hits" : - [ +{ + "limit": 3, + "hits": [ { - "amount" : + "amount": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "balance" : + "balance": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "creationDate" : "2015-07-31T15:10:25.192Z", - "description" : "Birthday Gift", - "enabled" : true, - "maskedGiftCertificateCode" : "************HHHZ", - "merchantId" : "NorthernTrailOutfitters", - "orderNo" : "CA17293", - "status" : "pending", - "transactions" : - [ + "creationDate": "2015-07-31T15:10:25.192Z", + "description": "Birthday Gift", + "enabled": true, + "maskedGiftCertificateCode": "************HHHZ", + "merchantId": "NorthernTrailOutfitters", + "orderNo": "CA17293", + "status": "pending", + "transactions": [ { - "amount" : + "amount": { - "currencyMnemonic" : "EUR", - "value" : 80.00 + "currencyMnemonic": "EUR", + "value": 80.00 }, - "orderNo" : "CA17293", - "timestamp" : "2015-01-09T17:16:12.066Z", - "typeCode" : "create" + "orderNo": "CA17293", + "timestamp": "2015-01-09T17:16:12.066Z", + "typeCode": "create" } ] }, - { - "amount" : + "amount": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "balance" : + "balance": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "creationDate" : "2015-07-31T15:03:21.988Z", - "enabled" : true, - "maskedGiftCertificateCode" : "************DOIZ", - "merchantId" : "my-merchant_id", - "orderNo" : "00000002", - "status" : "pending", - "transactions" : + "creationDate": "2015-07-31T15:03:21.988Z", + "enabled": true, + "maskedGiftCertificateCode": "************DOIZ", + "merchantId": "my-merchant_id", + "orderNo": "00000002", + "status": "pending", + "transactions": [ { - "amount" : + "amount": { - "currencyMnemonic" : "EUR", - "value" : 80.00 + "currencyMnemonic": "EUR", + "value": 80.00 }, - "orderNo" : "00000002", - "timestamp" : "2015-02-09T17:16:12.066Z", - "typeCode" : "create" + "orderNo": "00000002", + "timestamp": "2015-02-09T17:16:12.066Z", + "typeCode": "create" } ] }, - { - "amount" : + "amount": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "balance" : + "balance": { - "currencyMnemonic" : "USD", - "value" : 100.00 + "currencyMnemonic": "USD", + "value": 100.00 }, - "creationDate" : "2015-07-31T15:10:00.659Z", - "description" : "Promotion Gift", - "enabled" : true, - "maskedGiftCertificateCode" : "************GSPZ", - "merchantId" : "NorthernTrailOutfitters", - "orderNo" : "00000003", - "status" : "pending", - "transactions" : + "creationDate": "2015-07-31T15:10:00.659Z", + "description": "Promotion Gift", + "enabled": true, + "maskedGiftCertificateCode": "************GSPZ", + "merchantId": "NorthernTrailOutfitters", + "orderNo": "00000003", + "status": "pending", + "transactions": [ { - "amount" : + "amount": { - "currencyMnemonic" : "EUR", - "value" : 80.00 + "currencyMnemonic": "EUR", + "value": 80.00 }, - "orderNo" : "00000003", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" + "orderNo": "00000003", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" } ] } ], - "query" : - { - "TextQuery" : + "query": { + "TextQuery": { - "fields" : + "fields": [ "status" ], - "searchPhrase" : "pending" + "searchPhrase": "pending" } }, - "select" : "(**)", - "offset" : 0, - "total" : 3 + "select": "(**)", + "offset": 0, + "total": 3 } diff --git a/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml b/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml index 1d134823..40359705 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml +++ b/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-create-success-example.raml @@ -1,38 +1,33 @@ #%RAML 1.0 NamedExample -value: - { - "amount" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "balance" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "creationDate" : "2015-07-31T14:36:17.544Z", - "description" : "Birthday gift", - "enabled" : false, - "maskedGiftCertificateCode" : "************KTIP", - "merchantId" : "NorthernTrailOutfitters", - "message" : "A birthday gift for you", - "orderNo" : "CA17293", - "recipientName" : "John Doe", - "recipientEmail" : "john.doe@gmail.com", - "senderName" : "Jane Doe", - "status" : "issued", - "transactions" : - [ - { - "amount" : - { - "currencyMnemonic" : "EUR", - "value" : 80.00 - }, - "orderNo" : "my-order_no", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" - } - ] +{ + "amount": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "balance": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "creationDate": "2015-07-31T14:36:17.544Z", + "description": "Birthday gift", + "enabled": false, + "maskedGiftCertificateCode": "************KTIP", + "merchantId": "NorthernTrailOutfitters", + "message": "A birthday gift for you", + "orderNo": "CA17293", + "recipientName": "John Doe", + "recipientEmail": "john.doe@gmail.com", + "senderName": "Jane Doe", + "status": "issued", + "transactions": [ + { + "amount": { + "currencyMnemonic": "EUR", + "value": 80.00 + }, + "orderNo": "my-order_no", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" + } + ] } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml b/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml index a5d268fe..2ce8e821 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml +++ b/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-example.raml @@ -1,9 +1,8 @@ #%RAML 1.0 NamedExample -value: - { - "description" : "Birthday Gift", - "enabled" :false, - "message" : "A birthday gift for you", +{ + "description": "Birthday Gift", + "enabled": false, + "message": "A birthday gift for you", "recipientEmail": "john.doe@gmail.com", "recipientName": "John Doe", "senderName": "Jane Doe", diff --git a/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml b/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml index 2fa7654d..373433c6 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml +++ b/testIntegration/stagingApis/pricing/gift-certificates/Examples/gift-certificate-update-success-example.raml @@ -1,38 +1,33 @@ #%RAML 1.0 NamedExample -value: - { - "amount" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "balance" : - { - "currencyMnemonic" : "USD", - "value" : 100.00 - }, - "creationDate" : "2015-07-31T15:05:52.311Z", - "description" : "Birthday Gift", - "enabled" : false, - "maskedGiftCertificateCode" : "***********cate", - "merchantId" : "NorthernTrailOutfitters", - "message" : "A birthday gift for you", - "orderNo" : "CA17293", - "recipientEmail" : "john.doe@gmail.com", - "recipientName" : "John Doe", - "senderName" : "Jane Doe", - "status" : "pending", - "transactions" : - [ - { - "amount" : - { - "currencyMnemonic" : "EUR", - "value" : 80.00 - }, - "orderNo" : "CA17293", - "timestamp" : "2015-09-09T17:16:12.066Z", - "typeCode" : "create" - } - ] +{ + "amount": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "balance": { + "currencyMnemonic": "USD", + "value": 100.00 + }, + "creationDate": "2015-07-31T15:05:52.311Z", + "description": "Birthday Gift", + "enabled": false, + "maskedGiftCertificateCode": "***********cate", + "merchantId": "NorthernTrailOutfitters", + "message": "A birthday gift for you", + "orderNo": "CA17293", + "recipientEmail": "john.doe@gmail.com", + "recipientName": "John Doe", + "senderName": "Jane Doe", + "status": "pending", + "transactions": [ + { + "amount": { + "currencyMnemonic": "EUR", + "value": 80.00 + }, + "orderNo": "CA17293", + "timestamp": "2015-09-09T17:16:12.066Z", + "typeCode": "create" + } + ] } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/gift-certificates/exchange.json b/testIntegration/stagingApis/pricing/gift-certificates/exchange.json index e34d1de2..23e14b9a 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/exchange.json +++ b/testIntegration/stagingApis/pricing/gift-certificates/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.29", + "version": "1.0.30", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/gift-certificates/gift-certificates.raml b/testIntegration/stagingApis/pricing/gift-certificates/gift-certificates.raml index 9e0a01ff..2447b15d 100644 --- a/testIntegration/stagingApis/pricing/gift-certificates/gift-certificates.raml +++ b/testIntegration/stagingApis/pricing/gift-certificates/gift-certificates.raml @@ -15,7 +15,10 @@ uses: GiftCertificateTraits: gift-certificate-traits-library.raml types: AccountTransaction: - description: Document representing an account transaction. + description: |- + Document representing an account transaction. + type: + CommerceCloudStandards.ClosedObject properties: amount: description: The amount of the gift certificate. @@ -40,7 +43,10 @@ types: - disable example: redeem GiftCertificate: - description: Document representing a gift certificate. + description: |- + Document representing a gift certificate. + type: + CommerceCloudStandards.OpenObject properties: amount: description: |- @@ -158,7 +164,10 @@ types: } ] GiftCertificates: - description: Document representing an unfiltered list of gift certificates. + description: |- + Document representing an unfiltered list of gift certificates. + type: + CommerceCloudStandards.ClosedObject properties: offset: ApiStandards.Offset data: @@ -176,12 +185,15 @@ types: required: false example: 25 GiftCertificateSearchResult: - description: Document representing a gift certificate search result. + description: |- + Document representing a gift certificate search result. type: CommerceCloudStandards.PaginatedSearchResult properties: hits: type: GiftCertificate[] Money: + type: + CommerceCloudStandards.ClosedObject properties: currencyMnemonic: description: The mnemonic for the money. @@ -215,7 +227,7 @@ types: application/json: type: GiftCertificate example: - gift_certificate: !include Examples/gift-certificate-create-success-example.raml + !include Examples/gift-certificate-create-success-example.raml '400': description: If the gift certificate passed in is not valid (the argument indicates the field that was invalid), the amount specified is out of range, the merchant ID is not unique, the recipient email address is invalid, or the gift certificate status specified is invalid. body: @@ -260,8 +272,8 @@ types: body: application/json: type: GiftCertificateSearchResult - examples: - giftCertificates: !include Examples/get-results-example.raml + example: + !include Examples/get-results-example.raml '400': description: Thrown if the query is ill-formed. body: @@ -300,8 +312,8 @@ types: body: application/json: type: GiftCertificate - examples: - giftCertificate: !include Examples/get-result-example.raml + example: + !include Examples/get-result-example.raml '404': description: Thrown in case the gift certificate does not exist matching the given merchant ID. securedBy: @@ -320,7 +332,7 @@ types: application/json: type: GiftCertificate example: - gift_certificate: !include Examples/gift-certificate-update-success-example.raml + !include Examples/gift-certificate-update-success-example.raml '400': description: If recipient email address or gift certificate status specified is invalid. '404': @@ -329,6 +341,6 @@ types: application/json: type: GiftCertificate example: - patchGiftCertificate: !include Examples/gift-certificate-update-example.raml + !include Examples/gift-certificate-update-example.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.gift-certificates.rw ] } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/promotions/.metadata.json b/testIntegration/stagingApis/pricing/promotions/.metadata.json index 45424269..625845cf 100644 --- a/testIntegration/stagingApis/pricing/promotions/.metadata.json +++ b/testIntegration/stagingApis/pricing/promotions/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/promotions/1.0.23", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/promotions/1.0.24", "name": "Promotions", "description": "Launch and manage promotions across your storefront.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "promotions", - "version": "1.0.23", + "version": "1.0.24", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/promotions/Examples/get-promotion-response.raml b/testIntegration/stagingApis/pricing/promotions/Examples/get-promotion-response.raml index e442a74c..15fd7e12 100644 --- a/testIntegration/stagingApis/pricing/promotions/Examples/get-promotion-response.raml +++ b/testIntegration/stagingApis/pricing/promotions/Examples/get-promotion-response.raml @@ -3,18 +3,37 @@ get-promotion-example: { "archived": false, "assignmentInformation": { - "active": false, + "active": true, + "activeCampaignAssignments": [ + { + "campaignId": "coupon-campaign", + "coupons": [ + "shipping-promotion-coupon" + ], + "description": "Coupon Shipping Promotion", + "enabled": true, + "promotionId": "my-shipping-promotion", + "schedule": { + + } + } + ], + "campaignId": "coupon-campaign", "enabled": true, + "schedule": { + + }, "scheduleType": "none" }, "creationDate": "2020-01-09T16:50:32.000Z", "disableGloballyExcluded": false, "enabled": true, - "exclusivity": "class", - "id": "my-promotion", + "exclusivity": "no", + "id": "my-shipping-promotion", "lastModified": "2020-01-09T16:50:32.000Z", "name": { - "default": "__PROMOTION_ID__" + "default": "Coupon Shipping Promotion" }, - "promotionClass": "order" + "promotionClass": "shipping", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-request.raml b/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-request.raml index b7609823..93f774f7 100644 --- a/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-request.raml +++ b/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-request.raml @@ -6,5 +6,6 @@ patch-promotion-request: "default" : "__PROMOTION_ID__" }, "exclusivity" : "class", - "promotionClass" : "order" + "promotionClass" : "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-response.raml b/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-response.raml index 9708f71c..a44f692a 100644 --- a/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-response.raml +++ b/testIntegration/stagingApis/pricing/promotions/Examples/patch-promotion-response.raml @@ -4,7 +4,14 @@ patch-promotion-response: "archived": false, "assignmentInformation": { "active": false, + "activeCampaignAssignments": [ + + ], + "campaignId": "coupon-campaign", "enabled": false, + "schedule": { + + }, "scheduleType": "none" }, "creationDate": "2020-01-13T20:22:09.189Z", @@ -16,5 +23,6 @@ patch-promotion-response: "name": { "default": "__PROMOTION_ID__" }, - "promotionClass": "order" + "promotionClass": "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-request.raml b/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-request.raml index 66e1583a..872ccbc1 100644 --- a/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-request.raml +++ b/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-request.raml @@ -6,5 +6,6 @@ put-promotion-request: "default" : "__PROMOTION_ID__" }, "exclusivity" : "class", - "promotionClass" : "order" + "promotionClass" : "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-response.raml b/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-response.raml index 81ef12fe..85d323fc 100644 --- a/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-response.raml +++ b/testIntegration/stagingApis/pricing/promotions/Examples/put-promotion-response.raml @@ -4,7 +4,14 @@ put-promotion-response: "archived": false, "assignmentInformation": { "active": false, + "activeCampaignAssignments": [ + + ], + "campaignId": "coupon-campaign", "enabled": true, + "schedule": { + + }, "scheduleType": "none" }, "creationDate": "2020-01-13T20:22:09.189Z", @@ -16,5 +23,6 @@ put-promotion-response: "name": { "default": "__PROMOTION_ID__" }, - "promotionClass": "order" + "promotionClass": "order", + "c_customString": "Custom Value" } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/promotions/exchange.json b/testIntegration/stagingApis/pricing/promotions/exchange.json index 10bcfcff..495490b2 100644 --- a/testIntegration/stagingApis/pricing/promotions/exchange.json +++ b/testIntegration/stagingApis/pricing/promotions/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.23", + "version": "1.0.24", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/promotions/promotions.raml b/testIntegration/stagingApis/pricing/promotions/promotions.raml index 2db8fa33..44217eaf 100644 --- a/testIntegration/stagingApis/pricing/promotions/promotions.raml +++ b/testIntegration/stagingApis/pricing/promotions/promotions.raml @@ -18,7 +18,10 @@ uses: types: Campaign: - description: Document representing a campaign. + description: |- + Document representing a campaign. + type: + CommerceCloudStandards.OpenObject properties: campaignId: description: The ID of the campaign. @@ -71,7 +74,9 @@ types: Promotion: description: |- Document representing a promotion. Unless otherwise stated, attributes of this document are not supported when using - the Open Commerce API to update multiple promotions at once. + the Open Commerce API to update multiple promotions at once. + type: + CommerceCloudStandards.OpenObject properties: archived: description: |- @@ -150,6 +155,8 @@ types: required: false siteId?: CommerceCloudStandards.SiteId PromotionAbtestGroupAssignment: + type: + CommerceCloudStandards.ClosedObject properties: abtestDescription: type: string @@ -164,11 +171,13 @@ types: segmentId: type: string PromotionAssignmentInformation: + type: + CommerceCloudStandards.ClosedObject properties: abtestId: description: |- If there is only one assignment, and that assignment is an A/B test segment, the ID of the A/B test the segment - belongs to. Otherwise, empty. + belongs to. Otherwise, empty. type: string required: false abtestSegmentId: @@ -239,7 +248,10 @@ types: type: PromotionCampaignAssignment required: false PromotionCampaignAssignment: - description: Document representing a promotion campaign assignment. + description: |- + Document representing a promotion campaign assignment. + type: + CommerceCloudStandards.ClosedObject properties: campaign: description: The campaign. @@ -293,14 +305,18 @@ types: type: string required: false PromotionSearchResult: - description: Document representing a promotion search result. + description: |- + Document representing a promotion search result. type: CommerceCloudStandards.PaginatedSearchResult properties: hits: description: The sorted array of promotion search hits. Can be empty. type: Promotion[] Recurrence: - description: Document representing a schedule recurrence. + description: |- + Document representing a schedule recurrence. + type: + CommerceCloudStandards.ClosedObject properties: dayOfWeek: description: The days of week for recurrence. @@ -319,7 +335,10 @@ types: description: The time of the day for recurrence. type: TimeOfDay Schedule: - description: Document representing a time schedule for slots. + description: |- + Document representing a time schedule for slots. + type: + CommerceCloudStandards.ClosedObject properties: endDate: description: 'The date to end of validity. ISO8601 date time format: yyyy-MM-dd''T''HH:mm:ssZ.' @@ -334,13 +353,19 @@ types: type: datetime required: false Tag: - description: Document representing a tag + description: |- + Document representing a tag + type: + CommerceCloudStandards.ClosedObject properties: tagId: description: The ID of the tag. type: string TimeOfDay: - description: Document representing a time schedule within a single day. + description: |- + Document representing a time schedule within a single day. + type: + CommerceCloudStandards.ClosedObject properties: timeFrom: description: |- @@ -425,7 +450,7 @@ types: application/json: type: Promotion examples: - promotionGetResponse: !include Examples/get-promotion-response.raml + !include Examples/get-promotion-response.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.promotions, sfcc.promotions.rw ] } patch: @@ -443,12 +468,12 @@ types: application/json: type: Promotion examples: - promotionPatchResponse: !include Examples/patch-promotion-response.raml + !include Examples/patch-promotion-response.raml body: application/json: type: Promotion examples: - promotionPatchRequest: !include Examples/patch-promotion-request.raml + !include Examples/patch-promotion-request.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.promotions.rw ] } put: @@ -463,11 +488,11 @@ types: application/json: type: Promotion examples: - promotionPutResponse: !include Examples/put-promotion-response.raml + !include Examples/put-promotion-response.raml body: application/json: type: Promotion examples: - promotionPutRequest: !include Examples/put-promotion-request.raml + !include Examples/put-promotion-request.raml securedBy: - CommerceCloudStandards.AmOAuth2: { scopes: [ sfcc.promotions.rw ] } \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/shopper-gift-certificates/.metadata.json b/testIntegration/stagingApis/pricing/shopper-gift-certificates/.metadata.json index 48185dbd..333e8479 100644 --- a/testIntegration/stagingApis/pricing/shopper-gift-certificates/.metadata.json +++ b/testIntegration/stagingApis/pricing/shopper-gift-certificates/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-gift-certificates/1.0.16", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-gift-certificates/1.0.17", "name": "Shopper Gift Certificates", "description": "Obtain details about a gift certificate.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-gift-certificates", - "version": "1.0.16", + "version": "1.0.17", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/shopper-gift-certificates/exchange.json b/testIntegration/stagingApis/pricing/shopper-gift-certificates/exchange.json index 7ac952da..2fd857a0 100644 --- a/testIntegration/stagingApis/pricing/shopper-gift-certificates/exchange.json +++ b/testIntegration/stagingApis/pricing/shopper-gift-certificates/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.16", + "version": "1.0.17", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml b/testIntegration/stagingApis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml index 801a8375..05ee900f 100644 --- a/testIntegration/stagingApis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml +++ b/testIntegration/stagingApis/pricing/shopper-gift-certificates/shopper-gift-certificates.raml @@ -18,7 +18,10 @@ uses: CommerceCloudStandards: exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/commerce-cloud-standards/2.0.1/commerce-cloud-standards.raml types: GiftCertificate: - description: Document representing a gift certificate. + description: |- + Document representing a gift certificate. + type: + CommerceCloudStandards.OpenObject examples: gift-certificate: !include Examples/gift-certificate-example.raml properties: @@ -63,7 +66,10 @@ types: - partially_redeemed - redeemed GiftCertificateRequest: - description: Document representing a gift certificate request data. + description: |- + Document representing a gift certificate request data. + type: + CommerceCloudStandards.ClosedObject properties: giftCertificateCode: description: The gift certificate code. diff --git a/testIntegration/stagingApis/pricing/shopper-promotions/.metadata.json b/testIntegration/stagingApis/pricing/shopper-promotions/.metadata.json index 8efd5ba7..10510223 100644 --- a/testIntegration/stagingApis/pricing/shopper-promotions/.metadata.json +++ b/testIntegration/stagingApis/pricing/shopper-promotions/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-promotions/1.0.26", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-promotions/1.0.27", "name": "Shopper Promotions", "description": "View details for active promotions.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-promotions", - "version": "1.0.26", + "version": "1.0.27", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/shopper-promotions/exchange.json b/testIntegration/stagingApis/pricing/shopper-promotions/exchange.json index 8d6fbe06..7fecf183 100644 --- a/testIntegration/stagingApis/pricing/shopper-promotions/exchange.json +++ b/testIntegration/stagingApis/pricing/shopper-promotions/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.26", + "version": "1.0.27", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/shopper-promotions/shopper-promotions.raml b/testIntegration/stagingApis/pricing/shopper-promotions/shopper-promotions.raml index 1f47e1ca..f2b9bc94 100644 --- a/testIntegration/stagingApis/pricing/shopper-promotions/shopper-promotions.raml +++ b/testIntegration/stagingApis/pricing/shopper-promotions/shopper-promotions.raml @@ -17,7 +17,10 @@ uses: types: Promotion: - description: Document representing a promotion. + description: |- + Document representing a promotion. + type: + CommerceCloudStandards.OpenObject properties: calloutMsg: description: The localized call-out message of the promotion. @@ -64,7 +67,10 @@ types: required: false example: 2015-07-04T21:00:00Z PromotionResult: - description: Result document containing an array of promotions. + description: |- + Result document containing an array of promotions. + type: + CommerceCloudStandards.ClosedObject examples: promotion: !include Examples/promotions_result.raml properties: diff --git a/testIntegration/stagingApis/pricing/source-code-groups/.metadata.json b/testIntegration/stagingApis/pricing/source-code-groups/.metadata.json index 6ca47f6d..d8becdf4 100644 --- a/testIntegration/stagingApis/pricing/source-code-groups/.metadata.json +++ b/testIntegration/stagingApis/pricing/source-code-groups/.metadata.json @@ -1,10 +1,10 @@ { - "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/source-code-groups/1.0.27", + "id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/source-code-groups/1.0.28", "name": "Source Code Groups", "description": "Create, update, delete, and search for source code groups.", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "source-code-groups", - "version": "1.0.27", + "version": "1.0.28", "categories": { "API layer": [ "System" diff --git a/testIntegration/stagingApis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml b/testIntegration/stagingApis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml index 19df308b..2a343a49 100644 --- a/testIntegration/stagingApis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml +++ b/testIntegration/stagingApis/pricing/source-code-groups/Examples/patch_source_code_group_id.raml @@ -1,20 +1,19 @@ #%RAML 1.0 NamedExample -value: - { - "active": false, - "activeRedirect": { - "location": "urlString", - "locationType": "url" - }, - "creationDate": "2019-11-25T15:24:25.317Z", - "description": "description for source code group test2", - "enabled": false, - "endTime": "2030-10-01T00:00:00.000Z", - "id": "20% off (£30) New Customer", - "inactiveRedirect": { - "location": "urlString", - "locationType": "url" - }, - "lastModified": "2019-11-25T15:28:55.175Z", - "startTime": "2014-10-01T00:00:00.000Z" - } \ No newline at end of file +{ + "active": false, + "activeRedirect": { + "location": "urlString", + "locationType": "url" + }, + "creationDate": "2019-11-25T15:24:25.317Z", + "description": "description for source code group test2", + "enabled": false, + "endTime": "2030-10-01T00:00:00.000Z", + "id": "20% off (£30) New Customer", + "inactiveRedirect": { + "location": "urlString", + "locationType": "url" + }, + "lastModified": "2019-11-25T15:28:55.175Z", + "startTime": "2014-10-01T00:00:00.000Z" +} \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/source-code-groups/Examples/put_source_code_group_id.raml b/testIntegration/stagingApis/pricing/source-code-groups/Examples/put_source_code_group_id.raml index d7114fe4..14fb1383 100644 --- a/testIntegration/stagingApis/pricing/source-code-groups/Examples/put_source_code_group_id.raml +++ b/testIntegration/stagingApis/pricing/source-code-groups/Examples/put_source_code_group_id.raml @@ -1,23 +1,19 @@ #%RAML 1.0 NamedExample -value: - { - "active": false, - "active_redirect": { - "_type": "source_code_redirect_info", - "location": "https://production-functional23-qa.demandware.net/s/-/dw/data/v18_7/sites/SiteGenesis/source_code_groups/20%25%20off%20%28%C2%A330%29%20New%20Customer", - "location_type": "url" - }, - "creation_date": "2019-11-25T15:24:25.317Z", - "description": "description for source code group test", - "enabled": false, - "end_time": "2030-10-01T00:00:00.000Z", - "id": "20% off (£30) New Customer", - "inactive_redirect": { - "_type": "source_code_redirect_info", - "location": "https://production-functional23-qa.demandware.net/on/demandware.store/Sites-Site/default/ViewApplication-DisplayWelcomePage", - "location_type": "url" - }, - "last_modified": "2019-11-25T15:24:25.320Z", - "link": "https://production-functional23-qa.demandware.net/s/-/dw/data/v18_7/sites/SiteGenesis/source_code_groups/20%25%20off%20%28%C2%A330%29%20New%20Customer", - "start_time": "2014-10-01T00:00:00.000Z" - } \ No newline at end of file +{ + "active": false, + "activeRedirect": { + "location": "urlString", + "locationType": "url" + }, + "creationDate": "2019-11-25T15:24:25.317Z", + "description": "description for source code group test", + "enabled": false, + "endTime": "2030-10-01T00:00:00.000Z", + "id": "20% off (£30) New Customer", + "inactiveRedirect": { + "location": "urlString", + "locationType": "url" + }, + "lastModified": "2019-11-25T15:24:25.320Z", + "startTime": "2014-10-01T00:00:00.000Z" +} \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/source-code-groups/Examples/source-code-result-example.raml b/testIntegration/stagingApis/pricing/source-code-groups/Examples/source-code-result-example.raml index f4917b1f..2280f809 100644 --- a/testIntegration/stagingApis/pricing/source-code-groups/Examples/source-code-result-example.raml +++ b/testIntegration/stagingApis/pricing/source-code-groups/Examples/source-code-result-example.raml @@ -1,35 +1,34 @@ #%RAML 1.0 NamedExample -value: - { - "limit": 1, - "hits": [ - { - "active": false, - "activeRedirect": { - "location": "nintendo-wii-console", - "locationType": "product" - }, - "creationDate": "2020-01-06T15:30:26.000Z", - "description": "Email promoting save 20% of WII game when buying system", - "enabled": true, - "endTime": "2009-12-20T00:00:00.000Z", - "id": "gaming-email", - "inactiveRedirect": { - "location": "inactive-source-code", - "locationType": "page" - }, - "lastModified": "2020-01-06T15:30:26.000Z", - "startTime": "2009-11-01T00:00:00.000Z" - } - ], - "query": { - "TextQuery": { - "fields": [ - "id" - ], - "searchPhrase": "gaming" - } - }, - "offset": 0, - "total": 1 - } \ No newline at end of file +{ + "limit": 1, + "hits": [ + { + "active": false, + "activeRedirect": { + "location": "nintendo-wii-console", + "locationType": "product" + }, + "creationDate": "2020-01-06T15:30:26.000Z", + "description": "Email promoting save 20% of WII game when buying system", + "enabled": true, + "endTime": "2009-12-20T00:00:00.000Z", + "id": "gaming-email", + "inactiveRedirect": { + "location": "inactive-source-code", + "locationType": "page" + }, + "lastModified": "2020-01-06T15:30:26.000Z", + "startTime": "2009-11-01T00:00:00.000Z" + } + ], + "query": { + "TextQuery": { + "fields": [ + "id" + ], + "searchPhrase": "gaming" + } + }, + "offset": 0, + "total": 1 +} \ No newline at end of file diff --git a/testIntegration/stagingApis/pricing/source-code-groups/exchange.json b/testIntegration/stagingApis/pricing/source-code-groups/exchange.json index 8e6bda0a..2775c342 100644 --- a/testIntegration/stagingApis/pricing/source-code-groups/exchange.json +++ b/testIntegration/stagingApis/pricing/source-code-groups/exchange.json @@ -11,7 +11,7 @@ "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8" } ], - "version": "1.0.27", + "version": "1.0.28", "originalFormatVersion": "1.0", "apiVersion": "v1", "descriptorVersion": "0.1.0", diff --git a/testIntegration/stagingApis/pricing/source-code-groups/source-code-groups.raml b/testIntegration/stagingApis/pricing/source-code-groups/source-code-groups.raml index 89e70344..b5667495 100644 --- a/testIntegration/stagingApis/pricing/source-code-groups/source-code-groups.raml +++ b/testIntegration/stagingApis/pricing/source-code-groups/source-code-groups.raml @@ -18,7 +18,10 @@ uses: types: SourceCodeGroup: - description: Document representing a source code group. + description: |- + Document representing a source code group. + type: + CommerceCloudStandards.OpenObject properties: active: description: The active flag, a computed value based on start and end time. @@ -85,17 +88,22 @@ types: required: false example: 2019-10-20T12:00:00Z SourceCodeGroupSearchResult: - description: Document representing a source code group search result. + description: |- + Document representing a source code group search result. type: CommerceCloudStandards.PaginatedSearchResult properties: hits: description: The sorted array of search hits. Can be empty. type: SourceCodeGroup[] SourceCodeRedirectInfo: - description: Document representing source code redirect info. + description: |- + Document representing source code redirect info. + type: + CommerceCloudStandards.ClosedObject properties: locationType: - description: The type of redirect location, such as product (for a product page), category (a category page), home (for home page), page (for content), or URL (for a URL location). + description: |- + The type of redirect location, such as product (for a product page), category (a category page), home (for home page), page (for content), or URL (for a URL location). type: string enum: - default @@ -105,8 +113,15 @@ types: - page - url example: url + location?: + description: |- + The location of redirect, based on the type, this can be a product location, category location, home page, content page, or just a URL. + type: string SourceCodeSpecification: - description: Document representing a source code specification. + description: |- + Document representing a source code specification. + type: + CommerceCloudStandards.ClosedObject properties: expression: description: |- @@ -236,8 +251,7 @@ types: body: application/json: type: SourceCodeGroupSearchResult - examples: - source-code-group-result: !include Examples/source-code-result-example.raml + example: !include Examples/source-code-result-example.raml '400': description: SearchRequest post body is ill-formed. body: