# this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail

ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail - JavaScript client for this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 18.3.0
- Package version: 18.3.0
- Build package: io.swagger.codegen.languages.JavascriptClientCodegen

## Installation

### For [Node.js](https://nodejs.org/)

#### npm

To publish the library as a [npm](https://www.npmjs.com/),
please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).

Then install it via:

```shell
npm install this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail --save
```

##### Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing 
into the directory containing `package.json` (and this README). Let's call this `JAVASCRIPT_CLIENT_DIR`. Then run:

```shell
npm install
```

Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:

```shell
npm link
```

Finally, switch to the directory you want to use your this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail from, and run:

```shell
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
```

You should now be able to `require('this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail')` in javascript files from the directory you ran the last 
command above from.

#### git
#
If the library is hosted at a git repository, e.g.
https://github.com/GIT_USER_ID/GIT_REPO_ID
then install it via:

```shell
    npm install GIT_USER_ID/GIT_REPO_ID --save
```

### For browser

The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
the above steps with Node.js and installing browserify with `npm install -g browserify`,
perform the following (assuming *main.js* is your entry file, that's to say your javascript file where you actually 
use this library):

```shell
browserify main.js > bundle.js
```

Then include *bundle.js* in the HTML pages.

### Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error:
Cannot resolve module", most certainly you should disable AMD loader. Add/merge
the following section to your webpack config:

```javascript
module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}
```

## Getting Started

Please follow the [installation](#installation) instruction and execute the following JS code:

```javascript
var ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail = require('this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail');

var defaultClient = ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApiClient.instance;

// Configure OAuth2 access token for authorization: gemini_auth
var gemini_auth = defaultClient.authentications['gemini_auth'];
gemini_auth.accessToken = "YOUR ACCESS TOKEN"

var api = new ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi()

var body = new ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationSettingJson(); // {ApplicationSettingJson} The item to insert.

var opts = { 
  'transactionId': "transactionId_example", // {String} A unique transaction ID used for idempotent inserts.
  'shortToken': "shortToken_example" // {String} A temporary short token which can be used as an alternative to the JWT.
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createApplicationSetting(body, opts, callback);

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost/gemini-web/rest*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**createApplicationSetting**](docs/ApplicationApi.md#createApplicationSetting) | **POST** /application/application-settings | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**deleteApplicationSetting**](docs/ApplicationApi.md#deleteApplicationSetting) | **DELETE** /application/application-settings/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**fullUpdateApplication**](docs/ApplicationApi.md#fullUpdateApplication) | **PUT** /application/applications/{id} | full update of an application
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**getAllApplicationSettings**](docs/ApplicationApi.md#getAllApplicationSettings) | **GET** /application/application-settings | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**getAllApplications**](docs/ApplicationApi.md#getAllApplications) | **GET** /application/applications | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**getSingleApplication**](docs/ApplicationApi.md#getSingleApplication) | **GET** /application/applications/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**getSingleApplicationSetting**](docs/ApplicationApi.md#getSingleApplicationSetting) | **GET** /application/application-settings/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**updateApplication**](docs/ApplicationApi.md#updateApplication) | **POST** /application/applications/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**updateApplicationSetting**](docs/ApplicationApi.md#updateApplicationSetting) | **PUT** /application/application-settings/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi* | [**updatePartialApplicationSetting**](docs/ApplicationApi.md#updatePartialApplicationSetting) | **POST** /application/application-settings/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**createBillPaymentCartPosition**](docs/BillPaymentApi.md#createBillPaymentCartPosition) | **POST** /bill-payment/cart-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**createBillPaymentOrderPosition**](docs/BillPaymentApi.md#createBillPaymentOrderPosition) | **POST** /bill-payment/order-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**createBillPaymentProduct**](docs/BillPaymentApi.md#createBillPaymentProduct) | **POST** /bill-payment/products | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**deleteBillPaymentCartPosition**](docs/BillPaymentApi.md#deleteBillPaymentCartPosition) | **DELETE** /bill-payment/cart-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**deleteBillPaymentOrderPosition**](docs/BillPaymentApi.md#deleteBillPaymentOrderPosition) | **DELETE** /bill-payment/order-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**deleteBillPaymentProduct**](docs/BillPaymentApi.md#deleteBillPaymentProduct) | **DELETE** /bill-payment/products/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getAllBillPaymentCartPositions**](docs/BillPaymentApi.md#getAllBillPaymentCartPositions) | **GET** /bill-payment/cart-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getAllBillPaymentOrderPositions**](docs/BillPaymentApi.md#getAllBillPaymentOrderPositions) | **GET** /bill-payment/order-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getAllBillPaymentProducts**](docs/BillPaymentApi.md#getAllBillPaymentProducts) | **GET** /bill-payment/products | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getAllBillPaymentTransactionPositions**](docs/BillPaymentApi.md#getAllBillPaymentTransactionPositions) | **GET** /bill-payment/transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getSingleBillPaymentCartPosition**](docs/BillPaymentApi.md#getSingleBillPaymentCartPosition) | **GET** /bill-payment/cart-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getSingleBillPaymentOrderPosition**](docs/BillPaymentApi.md#getSingleBillPaymentOrderPosition) | **GET** /bill-payment/order-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getSingleBillPaymentProduct**](docs/BillPaymentApi.md#getSingleBillPaymentProduct) | **GET** /bill-payment/products/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**getSingleBillPaymentTransactionPosition**](docs/BillPaymentApi.md#getSingleBillPaymentTransactionPosition) | **GET** /bill-payment/transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**updateBillPaymentCartPosition**](docs/BillPaymentApi.md#updateBillPaymentCartPosition) | **PUT** /bill-payment/cart-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**updateBillPaymentOrderPosition**](docs/BillPaymentApi.md#updateBillPaymentOrderPosition) | **PUT** /bill-payment/order-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**updateBillPaymentProduct**](docs/BillPaymentApi.md#updateBillPaymentProduct) | **PUT** /bill-payment/products/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**updatePartialBillPaymentCartPosition**](docs/BillPaymentApi.md#updatePartialBillPaymentCartPosition) | **POST** /bill-payment/cart-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**updatePartialBillPaymentOrderPosition**](docs/BillPaymentApi.md#updatePartialBillPaymentOrderPosition) | **POST** /bill-payment/order-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi* | [**updatePartialBillPaymentProduct**](docs/BillPaymentApi.md#updatePartialBillPaymentProduct) | **POST** /bill-payment/products/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCart**](docs/CartApi.md#createCart) | **POST** /cart/carts | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCart2BundleOffer**](docs/CartApi.md#createCart2BundleOffer) | **POST** /cart/cart2bundleoffer | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCart2BundlePart**](docs/CartApi.md#createCart2BundlePart) | **POST** /cart/cart2bundlepart | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCart2ProductOffer**](docs/CartApi.md#createCart2ProductOffer) | **POST** /cart/cart2productoffer | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCartAddressData**](docs/CartApi.md#createCartAddressData) | **POST** /cart/address-data | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCartBankAccountData**](docs/CartApi.md#createCartBankAccountData) | **POST** /cart/bank-account-data | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCartCheck**](docs/CartApi.md#createCartCheck) | **POST** /cart/cart-checks | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**createCartCustomerData**](docs/CartApi.md#createCartCustomerData) | **POST** /cart/customer-data | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**deleteCart2BundleOffer**](docs/CartApi.md#deleteCart2BundleOffer) | **DELETE** /cart/cart2bundleoffer/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**deleteCart2BundlePart**](docs/CartApi.md#deleteCart2BundlePart) | **DELETE** /cart/cart2bundlepart/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**deleteCart2ProductOffer**](docs/CartApi.md#deleteCart2ProductOffer) | **DELETE** /cart/cart2productoffer/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**deleteCartAddressData**](docs/CartApi.md#deleteCartAddressData) | **DELETE** /cart/address-data/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**deleteCartBankAccountData**](docs/CartApi.md#deleteCartBankAccountData) | **DELETE** /cart/bank-account-data/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**deleteCartCheck**](docs/CartApi.md#deleteCartCheck) | **DELETE** /cart/cart-checks/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**deleteCartCustomerData**](docs/CartApi.md#deleteCartCustomerData) | **DELETE** /cart/customer-data/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCart2BundleOffer**](docs/CartApi.md#getAllCart2BundleOffer) | **GET** /cart/cart2bundleoffer | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCart2BundlePart**](docs/CartApi.md#getAllCart2BundlePart) | **GET** /cart/cart2bundlepart | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCart2ProductOffer**](docs/CartApi.md#getAllCart2ProductOffer) | **GET** /cart/cart2productoffer | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCartAddressData**](docs/CartApi.md#getAllCartAddressData) | **GET** /cart/address-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCartBankAccountData**](docs/CartApi.md#getAllCartBankAccountData) | **GET** /cart/bank-account-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCartCheckErrors**](docs/CartApi.md#getAllCartCheckErrors) | **GET** /cart/cart-check-errors | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCartCustomerData**](docs/CartApi.md#getAllCartCustomerData) | **GET** /cart/customer-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCartTaxData**](docs/CartApi.md#getAllCartTaxData) | **GET** /cart/tax-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getAllCarts**](docs/CartApi.md#getAllCarts) | **GET** /cart/carts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCart**](docs/CartApi.md#getSingleCart) | **GET** /cart/carts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCart2BundleOffer**](docs/CartApi.md#getSingleCart2BundleOffer) | **GET** /cart/cart2bundleoffer/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCart2BundlePart**](docs/CartApi.md#getSingleCart2BundlePart) | **GET** /cart/cart2bundlepart/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCart2ProductOffer**](docs/CartApi.md#getSingleCart2ProductOffer) | **GET** /cart/cart2productoffer/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCartAddressData**](docs/CartApi.md#getSingleCartAddressData) | **GET** /cart/address-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCartBankAccountData**](docs/CartApi.md#getSingleCartBankAccountData) | **GET** /cart/bank-account-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCartCheck**](docs/CartApi.md#getSingleCartCheck) | **GET** /cart/cart-checks/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCartCheckError**](docs/CartApi.md#getSingleCartCheckError) | **GET** /cart/cart-check-errors/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCartCustomerData**](docs/CartApi.md#getSingleCartCustomerData) | **GET** /cart/customer-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**getSingleCartTaxData**](docs/CartApi.md#getSingleCartTaxData) | **GET** /cart/tax-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updateCart**](docs/CartApi.md#updateCart) | **PUT** /cart/carts/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updateCart2BundleOffer**](docs/CartApi.md#updateCart2BundleOffer) | **PUT** /cart/cart2bundleoffer/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updateCart2BundlePartData**](docs/CartApi.md#updateCart2BundlePartData) | **PUT** /cart/cart2bundlepart/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updateCartAddressData**](docs/CartApi.md#updateCartAddressData) | **PUT** /cart/address-data/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updateCartBankAccountData**](docs/CartApi.md#updateCartBankAccountData) | **PUT** /cart/bank-account-data/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updateCartCustomerData**](docs/CartApi.md#updateCartCustomerData) | **PUT** /cart/customer-data/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updatePartialCart**](docs/CartApi.md#updatePartialCart) | **POST** /cart/carts/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updatePartialCart2BundleOffer**](docs/CartApi.md#updatePartialCart2BundleOffer) | **POST** /cart/cart2bundleoffer/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updatePartialCart2BundlePartData**](docs/CartApi.md#updatePartialCart2BundlePartData) | **POST** /cart/cart2bundlepart/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updatePartialCartAddressData**](docs/CartApi.md#updatePartialCartAddressData) | **POST** /cart/address-data/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updatePartialCartBankAccountData**](docs/CartApi.md#updatePartialCartBankAccountData) | **POST** /cart/bank-account-data/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi* | [**updatePartialCartCustomerData**](docs/CartApi.md#updatePartialCartCustomerData) | **POST** /cart/customer-data/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartRetailApi* | [**createCartTransaction**](docs/CartRetailApi.md#createCartTransaction) | **POST** /cart-retail/cart-transactions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartRetailApi* | [**getAllCartTransactions**](docs/CartRetailApi.md#getAllCartTransactions) | **GET** /cart-retail/cart-transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartRetailApi* | [**getSingleCartTransaction**](docs/CartRetailApi.md#getSingleCartTransaction) | **GET** /cart-retail/cart-transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**createConfiguration**](docs/ConfigurationApi.md#createConfiguration) | **POST** /configuration/configs | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**createConfigurationTypeTemplate**](docs/ConfigurationApi.md#createConfigurationTypeTemplate) | **POST** /configuration/configs/templates/types | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**createSetting**](docs/ConfigurationApi.md#createSetting) | **POST** /configuration/settings | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**createTypeSetting**](docs/ConfigurationApi.md#createTypeSetting) | **POST** /configuration/configs/templates/types/{templateId}/settings | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**deleteConfiguration**](docs/ConfigurationApi.md#deleteConfiguration) | **DELETE** /configuration/configs/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**deleteSetting**](docs/ConfigurationApi.md#deleteSetting) | **DELETE** /configuration/settings/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**fullUpdateConfiguration**](docs/ConfigurationApi.md#fullUpdateConfiguration) | **PUT** /configuration/configs/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**fullUpdateConfigurationTypeTemplate**](docs/ConfigurationApi.md#fullUpdateConfigurationTypeTemplate) | **PUT** /configuration/configs/templates/types/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**fullUpdateSetting**](docs/ConfigurationApi.md#fullUpdateSetting) | **PUT** /configuration/settings/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getAllApplicationConfigurations**](docs/ConfigurationApi.md#getAllApplicationConfigurations) | **GET** /configuration/application-configurations | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getAllConfigurationTypeTemplates**](docs/ConfigurationApi.md#getAllConfigurationTypeTemplates) | **GET** /configuration/configs/templates/types | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getAllConfigurations**](docs/ConfigurationApi.md#getAllConfigurations) | **GET** /configuration/configs | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getAllSettingHistoryEntries**](docs/ConfigurationApi.md#getAllSettingHistoryEntries) | **GET** /configuration/settingshistory | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getAllSettingHistoryMetadataEntries**](docs/ConfigurationApi.md#getAllSettingHistoryMetadataEntries) | **GET** /configuration/settingshistorymetadata | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getAllSettings**](docs/ConfigurationApi.md#getAllSettings) | **GET** /configuration/settings | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getAllTypeSettings**](docs/ConfigurationApi.md#getAllTypeSettings) | **GET** /configuration/configs/templates/types/{templateId}/settings | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getSingleApplicationConfiguration**](docs/ConfigurationApi.md#getSingleApplicationConfiguration) | **GET** /configuration/application-configurations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getSingleConfiguration**](docs/ConfigurationApi.md#getSingleConfiguration) | **GET** /configuration/configs/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getSingleConfigurationSettingHistory**](docs/ConfigurationApi.md#getSingleConfigurationSettingHistory) | **GET** /configuration/settingshistory/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getSingleConfigurationTypeTemplate**](docs/ConfigurationApi.md#getSingleConfigurationTypeTemplate) | **GET** /configuration/configs/templates/types/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getSingleSetting**](docs/ConfigurationApi.md#getSingleSetting) | **GET** /configuration/settings/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**getSingleTypeSetting**](docs/ConfigurationApi.md#getSingleTypeSetting) | **GET** /configuration/configs/templates/types/{templateId}/settings/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**updateApplicationConfiguration**](docs/ConfigurationApi.md#updateApplicationConfiguration) | **PUT** /configuration/application-configurations/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**updateConfiguration**](docs/ConfigurationApi.md#updateConfiguration) | **POST** /configuration/configs/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**updateConfigurationTypeTemplate**](docs/ConfigurationApi.md#updateConfigurationTypeTemplate) | **POST** /configuration/configs/templates/types/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**updatePartialApplicationConfiguration**](docs/ConfigurationApi.md#updatePartialApplicationConfiguration) | **POST** /configuration/application-configurations/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**updateSetting**](docs/ConfigurationApi.md#updateSetting) | **POST** /configuration/settings/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi* | [**updateTypeSetting**](docs/ConfigurationApi.md#updateTypeSetting) | **POST** /configuration/configs/templates/types/{templateId}/settings/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**createConsultingTopic**](docs/ConsultingTopicApi.md#createConsultingTopic) | **POST** /consulting-topic/consulting-topics | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**createConsultingTopicOffer**](docs/ConsultingTopicApi.md#createConsultingTopicOffer) | **POST** /consulting-topic/consulting-topic-offers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**deleteConsultingTopic**](docs/ConsultingTopicApi.md#deleteConsultingTopic) | **DELETE** /consulting-topic/consulting-topics/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**deleteConsultingTopicOffer**](docs/ConsultingTopicApi.md#deleteConsultingTopicOffer) | **DELETE** /consulting-topic/consulting-topic-offers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**getAllConsultingTopicOffers**](docs/ConsultingTopicApi.md#getAllConsultingTopicOffers) | **GET** /consulting-topic/consulting-topic-offers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**getAllConsultingTopics**](docs/ConsultingTopicApi.md#getAllConsultingTopics) | **GET** /consulting-topic/consulting-topics | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**getSingleConsultingTopic**](docs/ConsultingTopicApi.md#getSingleConsultingTopic) | **GET** /consulting-topic/consulting-topics/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**getSingleConsultingTopicOffer**](docs/ConsultingTopicApi.md#getSingleConsultingTopicOffer) | **GET** /consulting-topic/consulting-topic-offers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**updateConsultingTopic**](docs/ConsultingTopicApi.md#updateConsultingTopic) | **PUT** /consulting-topic/consulting-topics/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**updateConsultingTopicOffer**](docs/ConsultingTopicApi.md#updateConsultingTopicOffer) | **PUT** /consulting-topic/consulting-topic-offers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**updatePartialConsultingTopic**](docs/ConsultingTopicApi.md#updatePartialConsultingTopic) | **POST** /consulting-topic/consulting-topics/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi* | [**updatePartialConsultingTopicOffer**](docs/ConsultingTopicApi.md#updatePartialConsultingTopicOffer) | **POST** /consulting-topic/consulting-topic-offers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**createAddress**](docs/CustomerApi.md#createAddress) | **POST** /customer/addresses | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**createBankAccount**](docs/CustomerApi.md#createBankAccount) | **POST** /customer/bank-accounts | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**createCustomer**](docs/CustomerApi.md#createCustomer) | **POST** /customer/customers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**createCustomerContract**](docs/CustomerApi.md#createCustomerContract) | **POST** /customer/contracts | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**deleteAddress**](docs/CustomerApi.md#deleteAddress) | **DELETE** /customer/addresses/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**deleteBankAccount**](docs/CustomerApi.md#deleteBankAccount) | **DELETE** /customer/bank-accounts/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**deleteCustomer**](docs/CustomerApi.md#deleteCustomer) | **DELETE** /customer/customers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**deleteCustomerContract**](docs/CustomerApi.md#deleteCustomerContract) | **DELETE** /customer/contracts/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getAllAddresses**](docs/CustomerApi.md#getAllAddresses) | **GET** /customer/addresses | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getAllBankAccounts**](docs/CustomerApi.md#getAllBankAccounts) | **GET** /customer/bank-accounts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getAllCustomerContracts**](docs/CustomerApi.md#getAllCustomerContracts) | **GET** /customer/contracts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getAllCustomers**](docs/CustomerApi.md#getAllCustomers) | **GET** /customer/customers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getSingleAddress**](docs/CustomerApi.md#getSingleAddress) | **GET** /customer/addresses/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getSingleBankAccount**](docs/CustomerApi.md#getSingleBankAccount) | **GET** /customer/bank-accounts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getSingleCustomer**](docs/CustomerApi.md#getSingleCustomer) | **GET** /customer/customers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**getSingleCustomerContract**](docs/CustomerApi.md#getSingleCustomerContract) | **GET** /customer/contracts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**searchCustomers**](docs/CustomerApi.md#searchCustomers) | **GET** /customer/search | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updateAddress**](docs/CustomerApi.md#updateAddress) | **PUT** /customer/addresses/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updateBankAccount**](docs/CustomerApi.md#updateBankAccount) | **PUT** /customer/bank-accounts/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updateCustomer**](docs/CustomerApi.md#updateCustomer) | **PUT** /customer/customers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updateCustomerContract**](docs/CustomerApi.md#updateCustomerContract) | **PUT** /customer/contracts/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updatePartialAddress**](docs/CustomerApi.md#updatePartialAddress) | **POST** /customer/addresses/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updatePartialBankAccount**](docs/CustomerApi.md#updatePartialBankAccount) | **POST** /customer/bank-accounts/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updatePartialCustomer**](docs/CustomerApi.md#updatePartialCustomer) | **POST** /customer/customers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi* | [**updatePartialCustomerContract**](docs/CustomerApi.md#updatePartialCustomerContract) | **POST** /customer/contracts/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**createCartDiscountData**](docs/DiscountApi.md#createCartDiscountData) | **POST** /cart/discount-data | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**createDiscount**](docs/DiscountApi.md#createDiscount) | **POST** /discount/discounts | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**createDiscount2DiscountOffer**](docs/DiscountApi.md#createDiscount2DiscountOffer) | **POST** /discount/discount-offers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**createDiscountOffer**](docs/DiscountApi.md#createDiscountOffer) | **POST** /discount/offers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**deleteCartDiscountData**](docs/DiscountApi.md#deleteCartDiscountData) | **DELETE** /cart/discount-data/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**deleteDiscount**](docs/DiscountApi.md#deleteDiscount) | **DELETE** /discount/discounts/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**deleteDiscount2DiscountOffer**](docs/DiscountApi.md#deleteDiscount2DiscountOffer) | **DELETE** /discount/discount-offers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**deleteDiscountOffer**](docs/DiscountApi.md#deleteDiscountOffer) | **DELETE** /discount/offers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getAllCartDiscountData**](docs/DiscountApi.md#getAllCartDiscountData) | **GET** /cart/discount-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getAllDiscount2DiscountOffers**](docs/DiscountApi.md#getAllDiscount2DiscountOffers) | **GET** /discount/discount-offers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getAllDiscountOffers**](docs/DiscountApi.md#getAllDiscountOffers) | **GET** /discount/offers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getAllDiscounts**](docs/DiscountApi.md#getAllDiscounts) | **GET** /discount/discounts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getSingleCartDiscountData**](docs/DiscountApi.md#getSingleCartDiscountData) | **GET** /cart/discount-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getSingleDiscount**](docs/DiscountApi.md#getSingleDiscount) | **GET** /discount/discounts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getSingleDiscount2DiscountOffer**](docs/DiscountApi.md#getSingleDiscount2DiscountOffer) | **GET** /discount/discount-offers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**getSingleDiscountOffer**](docs/DiscountApi.md#getSingleDiscountOffer) | **GET** /discount/offers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updateCartDiscountData**](docs/DiscountApi.md#updateCartDiscountData) | **PUT** /cart/discount-data/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updateDiscount**](docs/DiscountApi.md#updateDiscount) | **PUT** /discount/discounts/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updateDiscount2DiscountOffer**](docs/DiscountApi.md#updateDiscount2DiscountOffer) | **PUT** /discount/discount-offers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updateDiscountOffer**](docs/DiscountApi.md#updateDiscountOffer) | **PUT** /discount/offers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updatePartialCartDiscountData**](docs/DiscountApi.md#updatePartialCartDiscountData) | **POST** /cart/discount-data/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updatePartialDiscount**](docs/DiscountApi.md#updatePartialDiscount) | **POST** /discount/discounts/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updatePartialDiscount2DiscountOffer**](docs/DiscountApi.md#updatePartialDiscount2DiscountOffer) | **POST** /discount/discount-offers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi* | [**updatePartialDiscountOffer**](docs/DiscountApi.md#updatePartialDiscountOffer) | **POST** /discount/offers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ElasticsearchApi* | [**create**](docs/ElasticsearchApi.md#create) | **POST** /modulemanagement/elasticsearch/{index}/{type} | Write message
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**createEtopupCartPosition**](docs/EtopupApi.md#createEtopupCartPosition) | **POST** /etopup/cart-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**createEtopupOrderPosition**](docs/EtopupApi.md#createEtopupOrderPosition) | **POST** /etopup/order-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**createEtopupProduct**](docs/EtopupApi.md#createEtopupProduct) | **POST** /etopup/products | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**deleteEtopupCartPosition**](docs/EtopupApi.md#deleteEtopupCartPosition) | **DELETE** /etopup/cart-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**deleteEtopupOrderPosition**](docs/EtopupApi.md#deleteEtopupOrderPosition) | **DELETE** /etopup/order-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**deleteEtopupProduct**](docs/EtopupApi.md#deleteEtopupProduct) | **DELETE** /etopup/products/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getAllEtopupCartPositions**](docs/EtopupApi.md#getAllEtopupCartPositions) | **GET** /etopup/cart-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getAllEtopupOrderPositions**](docs/EtopupApi.md#getAllEtopupOrderPositions) | **GET** /etopup/order-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getAllEtopupProducts**](docs/EtopupApi.md#getAllEtopupProducts) | **GET** /etopup/products | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getAllEtopupTransactionPositions**](docs/EtopupApi.md#getAllEtopupTransactionPositions) | **GET** /etopup/transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getSingleEtopupCartPosition**](docs/EtopupApi.md#getSingleEtopupCartPosition) | **GET** /etopup/cart-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getSingleEtopupOrderPosition**](docs/EtopupApi.md#getSingleEtopupOrderPosition) | **GET** /etopup/order-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getSingleEtopupProduct**](docs/EtopupApi.md#getSingleEtopupProduct) | **GET** /etopup/products/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**getSingleEtopupTransactionPosition**](docs/EtopupApi.md#getSingleEtopupTransactionPosition) | **GET** /etopup/transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**updateEtopupCartPosition**](docs/EtopupApi.md#updateEtopupCartPosition) | **PUT** /etopup/cart-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**updateEtopupOrderPosition**](docs/EtopupApi.md#updateEtopupOrderPosition) | **PUT** /etopup/order-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**updateEtopupProduct**](docs/EtopupApi.md#updateEtopupProduct) | **PUT** /etopup/products/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**updatePartialEtopupCartPosition**](docs/EtopupApi.md#updatePartialEtopupCartPosition) | **POST** /etopup/cart-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**updatePartialEtopupOrderPosition**](docs/EtopupApi.md#updatePartialEtopupOrderPosition) | **POST** /etopup/order-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi* | [**updatePartialEtopupProduct**](docs/EtopupApi.md#updatePartialEtopupProduct) | **POST** /etopup/products/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**createEvoucherOrderPosition**](docs/EvoucherApi.md#createEvoucherOrderPosition) | **POST** /evoucher/order-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**createEvoucherProduct**](docs/EvoucherApi.md#createEvoucherProduct) | **POST** /evoucher/products | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**deleteEvoucherOrderPosition**](docs/EvoucherApi.md#deleteEvoucherOrderPosition) | **DELETE** /evoucher/order-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**deleteEvoucherProduct**](docs/EvoucherApi.md#deleteEvoucherProduct) | **DELETE** /evoucher/products/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**getAllEvoucherOrderPositions**](docs/EvoucherApi.md#getAllEvoucherOrderPositions) | **GET** /evoucher/order-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**getAllEvoucherProducts**](docs/EvoucherApi.md#getAllEvoucherProducts) | **GET** /evoucher/products | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**getAllEvoucherTransactionPositions**](docs/EvoucherApi.md#getAllEvoucherTransactionPositions) | **GET** /evoucher/transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**getSingleEvoucherOrderPosition**](docs/EvoucherApi.md#getSingleEvoucherOrderPosition) | **GET** /evoucher/order-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**getSingleEvoucherProduct**](docs/EvoucherApi.md#getSingleEvoucherProduct) | **GET** /evoucher/products/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**getSingleEvoucherTransactionPosition**](docs/EvoucherApi.md#getSingleEvoucherTransactionPosition) | **GET** /evoucher/transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**updateEvoucherOrderPosition**](docs/EvoucherApi.md#updateEvoucherOrderPosition) | **PUT** /evoucher/order-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**updateEvoucherProduct**](docs/EvoucherApi.md#updateEvoucherProduct) | **PUT** /evoucher/products/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**updatePartialEvoucherOrderPosition**](docs/EvoucherApi.md#updatePartialEvoucherOrderPosition) | **POST** /evoucher/order-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi* | [**updatePartialEvoucherProduct**](docs/EvoucherApi.md#updatePartialEvoucherProduct) | **POST** /evoucher/products/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**createCertificate**](docs/FiscalizationApi.md#createCertificate) | **POST** /fiscalization/certificates | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**createFiscalizationUnit**](docs/FiscalizationApi.md#createFiscalizationUnit) | **POST** /fiscalization/fiscalization-units | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**createFiscalizationUnit2Certificate**](docs/FiscalizationApi.md#createFiscalizationUnit2Certificate) | **POST** /fiscalization/fiscalization-unit-certificates | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**createInspectionReceipt**](docs/FiscalizationApi.md#createInspectionReceipt) | **POST** /fiscalization/inspection-receipts | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**createSignatureProvider**](docs/FiscalizationApi.md#createSignatureProvider) | **POST** /fiscalization/signature-providers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**deleteFiscalizationUnit**](docs/FiscalizationApi.md#deleteFiscalizationUnit) | **DELETE** /fiscalization/fiscalization-units/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**deleteFiscalizationUnit2Certificate**](docs/FiscalizationApi.md#deleteFiscalizationUnit2Certificate) | **DELETE** /fiscalization/fiscalization-unit-certificates/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**deleteSignatureProvider**](docs/FiscalizationApi.md#deleteSignatureProvider) | **DELETE** /fiscalization/signature-providers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getAllCertificates**](docs/FiscalizationApi.md#getAllCertificates) | **GET** /fiscalization/certificates | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getAllFiscalizationTransactions**](docs/FiscalizationApi.md#getAllFiscalizationTransactions) | **GET** /fiscalization/fiscalization-transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getAllFiscalizationUnit2Certificates**](docs/FiscalizationApi.md#getAllFiscalizationUnit2Certificates) | **GET** /fiscalization/fiscalization-unit-certificates | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getAllFiscalizationUnits**](docs/FiscalizationApi.md#getAllFiscalizationUnits) | **GET** /fiscalization/fiscalization-units | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getAllInspectionReceipts**](docs/FiscalizationApi.md#getAllInspectionReceipts) | **GET** /fiscalization/inspection-receipts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getAllSignatureProviderStrategies**](docs/FiscalizationApi.md#getAllSignatureProviderStrategies) | **GET** /fiscalization/signature-provider-strategies | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getAllSignatureProviders**](docs/FiscalizationApi.md#getAllSignatureProviders) | **GET** /fiscalization/signature-providers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getDataCollectionProtocol**](docs/FiscalizationApi.md#getDataCollectionProtocol) | **GET** /fiscalization/data-collection-protocols | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getSingleCertificate**](docs/FiscalizationApi.md#getSingleCertificate) | **GET** /fiscalization/certificates/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getSingleFiscalizationTransaction**](docs/FiscalizationApi.md#getSingleFiscalizationTransaction) | **GET** /fiscalization/fiscalization-transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getSingleFiscalizationUnit**](docs/FiscalizationApi.md#getSingleFiscalizationUnit) | **GET** /fiscalization/fiscalization-units/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getSingleFiscalizationUnit2Certificate**](docs/FiscalizationApi.md#getSingleFiscalizationUnit2Certificate) | **GET** /fiscalization/fiscalization-unit-certificates/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getSingleInspectionReceipt**](docs/FiscalizationApi.md#getSingleInspectionReceipt) | **GET** /fiscalization/inspection-receipts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getSingleSignatureProvider**](docs/FiscalizationApi.md#getSingleSignatureProvider) | **GET** /fiscalization/signature-providers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**getSingleSignatureProviderStrategy**](docs/FiscalizationApi.md#getSingleSignatureProviderStrategy) | **GET** /fiscalization/signature-provider-strategies/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**updateFiscalizationUnit**](docs/FiscalizationApi.md#updateFiscalizationUnit) | **PUT** /fiscalization/fiscalization-units/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**updatePartialFiscalizationUnit**](docs/FiscalizationApi.md#updatePartialFiscalizationUnit) | **POST** /fiscalization/fiscalization-units/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**updatePartialSignatureProvider**](docs/FiscalizationApi.md#updatePartialSignatureProvider) | **POST** /fiscalization/signature-providers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi* | [**updateSignatureProvider**](docs/FiscalizationApi.md#updateSignatureProvider) | **PUT** /fiscalization/signature-providers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**createGoodsHandoverOrder**](docs/GoodsHandoverApi.md#createGoodsHandoverOrder) | **POST** /goods-handover/orders | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**createGoodsHandoverOrderPosition**](docs/GoodsHandoverApi.md#createGoodsHandoverOrderPosition) | **POST** /goods-handover/order-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**createGoodsHandoverOrderPositionSerial**](docs/GoodsHandoverApi.md#createGoodsHandoverOrderPositionSerial) | **POST** /goods-handover/order-position-serials | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**createGoodsHandoverOrderTransaction**](docs/GoodsHandoverApi.md#createGoodsHandoverOrderTransaction) | **POST** /goods-handover/order-transactions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**deleteGoodsHandoverOrder**](docs/GoodsHandoverApi.md#deleteGoodsHandoverOrder) | **DELETE** /goods-handover/orders/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**deleteGoodsHandoverOrderPosition**](docs/GoodsHandoverApi.md#deleteGoodsHandoverOrderPosition) | **DELETE** /goods-handover/order-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**deleteGoodsHandoverOrderPositionSerial**](docs/GoodsHandoverApi.md#deleteGoodsHandoverOrderPositionSerial) | **DELETE** /goods-handover/order-position-serials/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getAllGoodsHandoverOrderPositionSerials**](docs/GoodsHandoverApi.md#getAllGoodsHandoverOrderPositionSerials) | **GET** /goods-handover/order-position-serials | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getAllGoodsHandoverOrderPositions**](docs/GoodsHandoverApi.md#getAllGoodsHandoverOrderPositions) | **GET** /goods-handover/order-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getAllGoodsHandoverOrderTransactions**](docs/GoodsHandoverApi.md#getAllGoodsHandoverOrderTransactions) | **GET** /goods-handover/order-transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getAllGoodsHandoverOrders**](docs/GoodsHandoverApi.md#getAllGoodsHandoverOrders) | **GET** /goods-handover/orders | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getAllGoodsHandoverTransactionPositionSerials**](docs/GoodsHandoverApi.md#getAllGoodsHandoverTransactionPositionSerials) | **GET** /goods-handover/transaction-position-serials | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getAllGoodsHandoverTransactionPositions**](docs/GoodsHandoverApi.md#getAllGoodsHandoverTransactionPositions) | **GET** /goods-handover/transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getAllGoodsHandoverTransactions**](docs/GoodsHandoverApi.md#getAllGoodsHandoverTransactions) | **GET** /goods-handover/transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getSingleGoodsHandoverOrder**](docs/GoodsHandoverApi.md#getSingleGoodsHandoverOrder) | **GET** /goods-handover/orders/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getSingleGoodsHandoverOrderPosition**](docs/GoodsHandoverApi.md#getSingleGoodsHandoverOrderPosition) | **GET** /goods-handover/order-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getSingleGoodsHandoverOrderPositionSerial**](docs/GoodsHandoverApi.md#getSingleGoodsHandoverOrderPositionSerial) | **GET** /goods-handover/order-position-serials/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getSingleGoodsHandoverOrderTransaction**](docs/GoodsHandoverApi.md#getSingleGoodsHandoverOrderTransaction) | **GET** /goods-handover/order-transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getSingleGoodsHandoverTransaction**](docs/GoodsHandoverApi.md#getSingleGoodsHandoverTransaction) | **GET** /goods-handover/transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getSingleGoodsHandoverTransactionPosition**](docs/GoodsHandoverApi.md#getSingleGoodsHandoverTransactionPosition) | **GET** /goods-handover/transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**getSingleGoodsHandoverTransactionPositionSerial**](docs/GoodsHandoverApi.md#getSingleGoodsHandoverTransactionPositionSerial) | **GET** /goods-handover/transaction-position-serials/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**updateGoodsHandoverOrder**](docs/GoodsHandoverApi.md#updateGoodsHandoverOrder) | **PUT** /goods-handover/orders/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**updateGoodsHandoverOrderPosition**](docs/GoodsHandoverApi.md#updateGoodsHandoverOrderPosition) | **PUT** /goods-handover/order-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**updateGoodsHandoverOrderPositionSerial**](docs/GoodsHandoverApi.md#updateGoodsHandoverOrderPositionSerial) | **PUT** /goods-handover/order-position-serials/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**updatePartialGoodsHandoverOrder**](docs/GoodsHandoverApi.md#updatePartialGoodsHandoverOrder) | **POST** /goods-handover/orders/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**updatePartialGoodsHandoverOrderPosition**](docs/GoodsHandoverApi.md#updatePartialGoodsHandoverOrderPosition) | **POST** /goods-handover/order-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi* | [**updatePartialGoodsHandoverOrderPositionSerial**](docs/GoodsHandoverApi.md#updatePartialGoodsHandoverOrderPositionSerial) | **POST** /goods-handover/order-position-serials/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createApplicationConfigurationForDevice**](docs/HardwareApi.md#createApplicationConfigurationForDevice) | **POST** /hardware/devices/{id}/configurations/applications | Updates, deletes, creates relations between applications and configurations.
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createCashDrawerOpenRequest**](docs/HardwareApi.md#createCashDrawerOpenRequest) | **POST** /hardware/cash-drawer-open-requests | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createChangeAmount**](docs/HardwareApi.md#createChangeAmount) | **POST** /hardware/change-amounts | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createDeviceController**](docs/HardwareApi.md#createDeviceController) | **POST** /hardware/device-controllers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createDeviceControllerSetting**](docs/HardwareApi.md#createDeviceControllerSetting) | **POST** /hardware/device-controller-settings | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createHardwareDevice**](docs/HardwareApi.md#createHardwareDevice) | **POST** /hardware/devices | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createHardwareDevice2MeansOfPayment**](docs/HardwareApi.md#createHardwareDevice2MeansOfPayment) | **POST** /hardware/device-means-of-payments | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createHardwareDeviceAppConfiguration**](docs/HardwareApi.md#createHardwareDeviceAppConfiguration) | **POST** /hardware/deviceAppConfigurations | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createHardwareDeviceInitializationRequest**](docs/HardwareApi.md#createHardwareDeviceInitializationRequest) | **POST** /hardware/device-initialization-requests | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createHardwareSetting**](docs/HardwareApi.md#createHardwareSetting) | **POST** /hardware/settings | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createHardwareStation**](docs/HardwareApi.md#createHardwareStation) | **POST** /hardware/stations | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createHardwareStationLock**](docs/HardwareApi.md#createHardwareStationLock) | **POST** /hardware/hardwareLocks | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createManualPaymentRequestCompletion**](docs/HardwareApi.md#createManualPaymentRequestCompletion) | **POST** /hardware/manual-payment-request-completions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createPaymentJob**](docs/HardwareApi.md#createPaymentJob) | **POST** /hardware/payment-jobs | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createPaymentRequest**](docs/HardwareApi.md#createPaymentRequest) | **POST** /hardware/payment-requests | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createPaymentRequestCancellation**](docs/HardwareApi.md#createPaymentRequestCancellation) | **POST** /hardware/payment-request-cancellations | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createPrintJob**](docs/HardwareApi.md#createPrintJob) | **POST** /hardware/print-jobs | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**createPrintRequest**](docs/HardwareApi.md#createPrintRequest) | **POST** /hardware/print-requests | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteChangeAmount**](docs/HardwareApi.md#deleteChangeAmount) | **DELETE** /hardware/change-amounts/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteDeviceController**](docs/HardwareApi.md#deleteDeviceController) | **DELETE** /hardware/device-controllers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteDeviceControllerSetting**](docs/HardwareApi.md#deleteDeviceControllerSetting) | **DELETE** /hardware/device-controller-settings/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteHardwareDevice**](docs/HardwareApi.md#deleteHardwareDevice) | **DELETE** /hardware/devices/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteHardwareDevice2MeansOfPayment**](docs/HardwareApi.md#deleteHardwareDevice2MeansOfPayment) | **DELETE** /hardware/device-means-of-payments/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteHardwareSetting**](docs/HardwareApi.md#deleteHardwareSetting) | **DELETE** /hardware/settings/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteHardwareStation**](docs/HardwareApi.md#deleteHardwareStation) | **DELETE** /hardware/stations/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deleteHardwareStationLock**](docs/HardwareApi.md#deleteHardwareStationLock) | **DELETE** /hardware/hardwareLocks/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deletePaymentJob**](docs/HardwareApi.md#deletePaymentJob) | **DELETE** /hardware/payment-jobs/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**deletePrintJob**](docs/HardwareApi.md#deletePrintJob) | **DELETE** /hardware/print-jobs/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**fullUpdateHardwareDevice**](docs/HardwareApi.md#fullUpdateHardwareDevice) | **PUT** /hardware/devices/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**fullUpdateHardwareStation**](docs/HardwareApi.md#fullUpdateHardwareStation) | **PUT** /hardware/stations/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllCashDrawerOpenRequests**](docs/HardwareApi.md#getAllCashDrawerOpenRequests) | **GET** /hardware/cash-drawer-open-requests | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllChangeAmounts**](docs/HardwareApi.md#getAllChangeAmounts) | **GET** /hardware/change-amounts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllDeviceControllerSettings**](docs/HardwareApi.md#getAllDeviceControllerSettings) | **GET** /hardware/device-controller-settings | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllDeviceControllers**](docs/HardwareApi.md#getAllDeviceControllers) | **GET** /hardware/device-controllers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllHardwareDevice2MeansOfPayments**](docs/HardwareApi.md#getAllHardwareDevice2MeansOfPayments) | **GET** /hardware/device-means-of-payments | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllHardwareDeviceConfigurations**](docs/HardwareApi.md#getAllHardwareDeviceConfigurations) | **GET** /hardware/deviceAppConfigurations | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllHardwareDeviceInitializationRequests**](docs/HardwareApi.md#getAllHardwareDeviceInitializationRequests) | **GET** /hardware/device-initialization-requests | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllHardwareDevices**](docs/HardwareApi.md#getAllHardwareDevices) | **GET** /hardware/devices | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllHardwareSettings**](docs/HardwareApi.md#getAllHardwareSettings) | **GET** /hardware/settings | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllHardwareStationLocks**](docs/HardwareApi.md#getAllHardwareStationLocks) | **GET** /hardware/hardwareLocks | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllHardwareStations**](docs/HardwareApi.md#getAllHardwareStations) | **GET** /hardware/stations | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllManualPaymentRequestCompletions**](docs/HardwareApi.md#getAllManualPaymentRequestCompletions) | **GET** /hardware/manual-payment-request-completions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllPaymentJobs**](docs/HardwareApi.md#getAllPaymentJobs) | **GET** /hardware/payment-jobs | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllPaymentRequestCancellations**](docs/HardwareApi.md#getAllPaymentRequestCancellations) | **GET** /hardware/payment-request-cancellations | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllPaymentRequests**](docs/HardwareApi.md#getAllPaymentRequests) | **GET** /hardware/payment-requests | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllPrintJobs**](docs/HardwareApi.md#getAllPrintJobs) | **GET** /hardware/print-jobs | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getAllPrintRequests**](docs/HardwareApi.md#getAllPrintRequests) | **GET** /hardware/print-requests | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getApplicationConfigurationForDevice**](docs/HardwareApi.md#getApplicationConfigurationForDevice) | **GET** /hardware/devices/{id}/configurations/applications | Finds application configurations for devices.
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleCashDrawerOpenRequest**](docs/HardwareApi.md#getSingleCashDrawerOpenRequest) | **GET** /hardware/cash-drawer-open-requests/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleChangeAmount**](docs/HardwareApi.md#getSingleChangeAmount) | **GET** /hardware/change-amounts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleDeviceController**](docs/HardwareApi.md#getSingleDeviceController) | **GET** /hardware/device-controllers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleDeviceControllerSetting**](docs/HardwareApi.md#getSingleDeviceControllerSetting) | **GET** /hardware/device-controller-settings/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleHardwareDevice**](docs/HardwareApi.md#getSingleHardwareDevice) | **GET** /hardware/devices/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleHardwareDevice2MeansOfPayment**](docs/HardwareApi.md#getSingleHardwareDevice2MeansOfPayment) | **GET** /hardware/device-means-of-payments/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleHardwareDeviceConfigurations**](docs/HardwareApi.md#getSingleHardwareDeviceConfigurations) | **GET** /hardware/deviceAppConfigurations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleHardwareDeviceInitializationRequest**](docs/HardwareApi.md#getSingleHardwareDeviceInitializationRequest) | **GET** /hardware/device-initialization-requests/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleHardwareSetting**](docs/HardwareApi.md#getSingleHardwareSetting) | **GET** /hardware/settings/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleHardwareStation**](docs/HardwareApi.md#getSingleHardwareStation) | **GET** /hardware/stations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleHardwareStationLock**](docs/HardwareApi.md#getSingleHardwareStationLock) | **GET** /hardware/hardwareLocks/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSingleManualPaymentRequestCompletion**](docs/HardwareApi.md#getSingleManualPaymentRequestCompletion) | **GET** /hardware/manual-payment-request-completions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSinglePaymentJob**](docs/HardwareApi.md#getSinglePaymentJob) | **GET** /hardware/payment-jobs/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSinglePaymentRequest**](docs/HardwareApi.md#getSinglePaymentRequest) | **GET** /hardware/payment-requests/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSinglePaymentRequestCancellation**](docs/HardwareApi.md#getSinglePaymentRequestCancellation) | **GET** /hardware/payment-request-cancellations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSinglePrintJob**](docs/HardwareApi.md#getSinglePrintJob) | **GET** /hardware/print-jobs/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**getSinglePrintRequest**](docs/HardwareApi.md#getSinglePrintRequest) | **GET** /hardware/print-requests/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updateChangeAmount**](docs/HardwareApi.md#updateChangeAmount) | **PUT** /hardware/change-amounts/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updateDeviceController**](docs/HardwareApi.md#updateDeviceController) | **PUT** /hardware/device-controllers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updateDeviceControllerSetting**](docs/HardwareApi.md#updateDeviceControllerSetting) | **PUT** /hardware/device-controller-settings/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updateHardwareDevice**](docs/HardwareApi.md#updateHardwareDevice) | **POST** /hardware/devices/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updateHardwareDevice2MeansOfPayment**](docs/HardwareApi.md#updateHardwareDevice2MeansOfPayment) | **PUT** /hardware/device-means-of-payments/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updateHardwareSetting**](docs/HardwareApi.md#updateHardwareSetting) | **PUT** /hardware/settings/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePartialChangeAmount**](docs/HardwareApi.md#updatePartialChangeAmount) | **POST** /hardware/change-amounts/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePartialDeviceController**](docs/HardwareApi.md#updatePartialDeviceController) | **POST** /hardware/device-controllers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePartialDeviceControllerSetting**](docs/HardwareApi.md#updatePartialDeviceControllerSetting) | **POST** /hardware/device-controller-settings/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePartialHardwareDevice2MeansOfPayment**](docs/HardwareApi.md#updatePartialHardwareDevice2MeansOfPayment) | **POST** /hardware/device-means-of-payments/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePartialHardwareSetting**](docs/HardwareApi.md#updatePartialHardwareSetting) | **POST** /hardware/settings/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePartialPaymentJob**](docs/HardwareApi.md#updatePartialPaymentJob) | **POST** /hardware/payment-jobs/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePartialPrintJob**](docs/HardwareApi.md#updatePartialPrintJob) | **POST** /hardware/print-jobs/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePaymentJob**](docs/HardwareApi.md#updatePaymentJob) | **PUT** /hardware/payment-jobs/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi* | [**updatePrintJob**](docs/HardwareApi.md#updatePrintJob) | **PUT** /hardware/print-jobs/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**createConnection**](docs/HermesApi.md#createConnection) | **POST** /hermes/connections | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**createSubscription**](docs/HermesApi.md#createSubscription) | **POST** /hermes/subscriptions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**deleteConnection**](docs/HermesApi.md#deleteConnection) | **DELETE** /hermes/connections/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**deleteSubscription**](docs/HermesApi.md#deleteSubscription) | **DELETE** /hermes/subscriptions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**getAllConnections**](docs/HermesApi.md#getAllConnections) | **GET** /hermes/connections | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**getAllSubscriptions**](docs/HermesApi.md#getAllSubscriptions) | **GET** /hermes/subscriptions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**getSingleConnection**](docs/HermesApi.md#getSingleConnection) | **GET** /hermes/connections/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi* | [**getSingleSubscription**](docs/HermesApi.md#getSingleSubscription) | **GET** /hermes/subscriptions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**createLocation**](docs/LocationApi.md#createLocation) | **POST** /location/locations | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**deleteLocation**](docs/LocationApi.md#deleteLocation) | **DELETE** /location/locations/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**fullUpdateLocation**](docs/LocationApi.md#fullUpdateLocation) | **PUT** /location/locations/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**getAllCountries**](docs/LocationApi.md#getAllCountries) | **GET** /location/countries | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**getAllLocations**](docs/LocationApi.md#getAllLocations) | **GET** /location/locations | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**getChildrenOf**](docs/LocationApi.md#getChildrenOf) | **GET** /location/locations/{id}/sublocations | Get sub-locations
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**getParent**](docs/LocationApi.md#getParent) | **GET** /location/locations/{id}/parent | Get the parent location of a location
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**getRoots**](docs/LocationApi.md#getRoots) | **GET** /location/locations/roots | Get root locations
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**getSingleCountry**](docs/LocationApi.md#getSingleCountry) | **GET** /location/countries/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**getSingleLocation**](docs/LocationApi.md#getSingleLocation) | **GET** /location/locations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi* | [**updateLocation**](docs/LocationApi.md#updateLocation) | **POST** /location/locations/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi* | [**createLog**](docs/LoggingApi.md#createLog) | **POST** /logs | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi* | [**deleteLog**](docs/LoggingApi.md#deleteLog) | **DELETE** /logs/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi* | [**fullUpdateLog**](docs/LoggingApi.md#fullUpdateLog) | **PUT** /logs/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi* | [**getAllLogs**](docs/LoggingApi.md#getAllLogs) | **GET** /logs | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi* | [**getSingleLog**](docs/LoggingApi.md#getSingleLog) | **GET** /logs/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi* | [**updateLog**](docs/LoggingApi.md#updateLog) | **POST** /logs/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**createDenominationUnit**](docs/MeansOfPaymentApi.md#createDenominationUnit) | **POST** /means-of-payment/units | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**createMeansOfPayment**](docs/MeansOfPaymentApi.md#createMeansOfPayment) | **POST** /means-of-payment/payments | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**deleteDenominationUnit**](docs/MeansOfPaymentApi.md#deleteDenominationUnit) | **DELETE** /means-of-payment/units/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**deleteMeansOfPayment**](docs/MeansOfPaymentApi.md#deleteMeansOfPayment) | **DELETE** /means-of-payment/payments/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**getAllDenominationUnits**](docs/MeansOfPaymentApi.md#getAllDenominationUnits) | **GET** /means-of-payment/units | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**getAllMeansOfPayments**](docs/MeansOfPaymentApi.md#getAllMeansOfPayments) | **GET** /means-of-payment/payments | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**getSingleDenominationUnit**](docs/MeansOfPaymentApi.md#getSingleDenominationUnit) | **GET** /means-of-payment/units/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**getSingleMeansOfPayment**](docs/MeansOfPaymentApi.md#getSingleMeansOfPayment) | **GET** /means-of-payment/payments/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**updateDenominationUnit**](docs/MeansOfPaymentApi.md#updateDenominationUnit) | **PUT** /means-of-payment/units/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**updateMeansOfPayment**](docs/MeansOfPaymentApi.md#updateMeansOfPayment) | **PUT** /means-of-payment/payments/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**updatePartialDenominationUnit**](docs/MeansOfPaymentApi.md#updatePartialDenominationUnit) | **POST** /means-of-payment/units/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi* | [**updatePartialMeansOfPayment**](docs/MeansOfPaymentApi.md#updatePartialMeansOfPayment) | **POST** /means-of-payment/payments/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**createIssuedTransaction**](docs/ModulemanagementApi.md#createIssuedTransaction) | **POST** /modulemanagement/transactions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**deleteIssuedTransaction**](docs/ModulemanagementApi.md#deleteIssuedTransaction) | **DELETE** /modulemanagement/transactions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**getAllModules**](docs/ModulemanagementApi.md#getAllModules) | **GET** /modules | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**getAllUsages**](docs/ModulemanagementApi.md#getAllUsages) | **GET** /modulemanagement/usages | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**getAllowedApplicationIDs**](docs/ModulemanagementApi.md#getAllowedApplicationIDs) | **GET** /modules/rights | Get allowed application IDs
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**getSingleIssuedTransaction**](docs/ModulemanagementApi.md#getSingleIssuedTransaction) | **GET** /modulemanagement/transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**getSinglePostman**](docs/ModulemanagementApi.md#getSinglePostman) | **GET** /modulemanagement/postmen/{name} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi* | [**getSingleUsage**](docs/ModulemanagementApi.md#getSingleUsage) | **GET** /modulemanagement/usages/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**createAttachment**](docs/NotificationApi.md#createAttachment) | **POST** /notification/mail/attachments | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**createMail**](docs/NotificationApi.md#createMail) | **POST** /notification/mail/mails | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**createMail2Attachment**](docs/NotificationApi.md#createMail2Attachment) | **POST** /notification/mail/mail2attachments | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**createSendRequest**](docs/NotificationApi.md#createSendRequest) | **POST** /notification/mail/send-requests | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**createSendRequest_0**](docs/NotificationApi.md#createSendRequest_0) | **POST** /notification/sms/send-requests | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**createSms**](docs/NotificationApi.md#createSms) | **POST** /notification/sms/smses | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**deleteAttachment**](docs/NotificationApi.md#deleteAttachment) | **DELETE** /notification/mail/attachments/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**deleteMail**](docs/NotificationApi.md#deleteMail) | **DELETE** /notification/mail/mails/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**deleteMail2Attachment**](docs/NotificationApi.md#deleteMail2Attachment) | **DELETE** /notification/mail/mail2attachments/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**deleteSms**](docs/NotificationApi.md#deleteSms) | **DELETE** /notification/sms/smses/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getAllAttachments**](docs/NotificationApi.md#getAllAttachments) | **GET** /notification/mail/attachments | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getAllMail2Attachments**](docs/NotificationApi.md#getAllMail2Attachments) | **GET** /notification/mail/mail2attachments | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getAllMails**](docs/NotificationApi.md#getAllMails) | **GET** /notification/mail/mails | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getAllSendRequests**](docs/NotificationApi.md#getAllSendRequests) | **GET** /notification/mail/send-requests | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getAllSendRequests_0**](docs/NotificationApi.md#getAllSendRequests_0) | **GET** /notification/sms/send-requests | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getAllSms**](docs/NotificationApi.md#getAllSms) | **GET** /notification/sms/smses | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getSingleAttachment**](docs/NotificationApi.md#getSingleAttachment) | **GET** /notification/mail/attachments/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getSingleMail**](docs/NotificationApi.md#getSingleMail) | **GET** /notification/mail/mails/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getSingleMail2Attachment**](docs/NotificationApi.md#getSingleMail2Attachment) | **GET** /notification/mail/mail2attachments/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getSingleSendRequest**](docs/NotificationApi.md#getSingleSendRequest) | **GET** /notification/mail/send-requests/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getSingleSendRequest_0**](docs/NotificationApi.md#getSingleSendRequest_0) | **GET** /notification/sms/send-requests/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**getSingleSms**](docs/NotificationApi.md#getSingleSms) | **GET** /notification/sms/smses/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updateAttachment**](docs/NotificationApi.md#updateAttachment) | **PUT** /notification/mail/attachments/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updateMail**](docs/NotificationApi.md#updateMail) | **PUT** /notification/mail/mails/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updateMail2Attachment**](docs/NotificationApi.md#updateMail2Attachment) | **PUT** /notification/mail/mail2attachments/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updatePartialAttachment**](docs/NotificationApi.md#updatePartialAttachment) | **POST** /notification/mail/attachments/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updatePartialMail**](docs/NotificationApi.md#updatePartialMail) | **POST** /notification/mail/mails/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updatePartialMail2Attachment**](docs/NotificationApi.md#updatePartialMail2Attachment) | **POST** /notification/mail/mail2attachments/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updatePartialSms**](docs/NotificationApi.md#updatePartialSms) | **POST** /notification/sms/smses/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi* | [**updateSms**](docs/NotificationApi.md#updateSms) | **PUT** /notification/sms/smses/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**createCartExport**](docs/PortApi.md#createCartExport) | **POST** /port/cart-exports | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**createResourceMapping**](docs/PortApi.md#createResourceMapping) | **POST** /port/resource-mappings | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**deleteResourceMapping**](docs/PortApi.md#deleteResourceMapping) | **DELETE** /port/resource-mappings/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**getAllCartExports**](docs/PortApi.md#getAllCartExports) | **GET** /port/cart-exports | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**getAllResourceMappings**](docs/PortApi.md#getAllResourceMappings) | **GET** /port/resource-mappings | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**getSingleCartExport**](docs/PortApi.md#getSingleCartExport) | **GET** /port/cart-exports/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**getSingleResourceMapping**](docs/PortApi.md#getSingleResourceMapping) | **GET** /port/resource-mappings/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi* | [**updateResourceMapping**](docs/PortApi.md#updateResourceMapping) | **POST** /port/resource-mappings/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**addCategoryToProduct**](docs/ProductApi.md#addCategoryToProduct) | **POST** /product/products/{id}/categories | add category to product
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createBundle**](docs/ProductApi.md#createBundle) | **POST** /product/bundles | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createBundleOffer**](docs/ProductApi.md#createBundleOffer) | **POST** /product/bundleoffer | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createBundlePart**](docs/ProductApi.md#createBundlePart) | **POST** /product/bundleparts | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createBundlePart2Product**](docs/ProductApi.md#createBundlePart2Product) | **POST** /product/bundlepart2product | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createMediaItem**](docs/ProductApi.md#createMediaItem) | **POST** /product/mediaitems | insert a media item asset
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProduct**](docs/ProductApi.md#createProduct) | **POST** /product/products | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProductCategory**](docs/ProductApi.md#createProductCategory) | **POST** /product/categories | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProductCharacteristic**](docs/ProductApi.md#createProductCharacteristic) | **POST** /product/characteristics | create a new characteristic
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProductCode**](docs/ProductApi.md#createProductCode) | **POST** /product/codes | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProductCodeType**](docs/ProductApi.md#createProductCodeType) | **POST** /product/code-types | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProductMedia**](docs/ProductApi.md#createProductMedia) | **POST** /product/media | insert a product media asset
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProductOffer**](docs/ProductApi.md#createProductOffer) | **POST** /product/productoffer | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**createProductRecommendation**](docs/ProductApi.md#createProductRecommendation) | **POST** /product/recommendations | createProductRecommendation
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteBundle**](docs/ProductApi.md#deleteBundle) | **DELETE** /product/bundles/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteBundleOffer**](docs/ProductApi.md#deleteBundleOffer) | **DELETE** /product/bundleoffer/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteBundlePart**](docs/ProductApi.md#deleteBundlePart) | **DELETE** /product/bundleparts/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteBundlePart2Product**](docs/ProductApi.md#deleteBundlePart2Product) | **DELETE** /product/bundlepart2product/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteCategoryFromProduct**](docs/ProductApi.md#deleteCategoryFromProduct) | **DELETE** /product/products/{id}/categories/{categoryId} | remove category from product
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteMediaItem**](docs/ProductApi.md#deleteMediaItem) | **DELETE** /product/mediaitems/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProduct**](docs/ProductApi.md#deleteProduct) | **DELETE** /product/products/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProductCategory**](docs/ProductApi.md#deleteProductCategory) | **DELETE** /product/categories/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProductCharacteristic**](docs/ProductApi.md#deleteProductCharacteristic) | **DELETE** /product/characteristics/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProductCode**](docs/ProductApi.md#deleteProductCode) | **DELETE** /product/codes/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProductCodeType**](docs/ProductApi.md#deleteProductCodeType) | **DELETE** /product/code-types/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProductMedia**](docs/ProductApi.md#deleteProductMedia) | **DELETE** /product/media/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProductOffer**](docs/ProductApi.md#deleteProductOffer) | **DELETE** /product/productoffer/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**deleteProductRecommendation**](docs/ProductApi.md#deleteProductRecommendation) | **DELETE** /product/recommendations/{id} | deleteProductRecommendation
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**fullUpdateBundleOffer**](docs/ProductApi.md#fullUpdateBundleOffer) | **PUT** /product/bundleoffer/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**fullUpdateProductCategory**](docs/ProductApi.md#fullUpdateProductCategory) | **PUT** /product/categories/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**fullUpdateProductOffer**](docs/ProductApi.md#fullUpdateProductOffer) | **PUT** /product/productoffer/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllBrands**](docs/ProductApi.md#getAllBrands) | **GET** /product/brands | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllBundleOffers**](docs/ProductApi.md#getAllBundleOffers) | **GET** /product/bundleoffer | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllBundlePart2Products**](docs/ProductApi.md#getAllBundlePart2Products) | **GET** /product/bundlepart2product | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllBundleParts**](docs/ProductApi.md#getAllBundleParts) | **GET** /product/bundleparts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllBundles**](docs/ProductApi.md#getAllBundles) | **GET** /product/bundles | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllMediaItems**](docs/ProductApi.md#getAllMediaItems) | **GET** /product/mediaitems | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductCategories**](docs/ProductApi.md#getAllProductCategories) | **GET** /product/categories | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductCharacteristics**](docs/ProductApi.md#getAllProductCharacteristics) | **GET** /product/characteristics | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductCodeTypes**](docs/ProductApi.md#getAllProductCodeTypes) | **GET** /product/code-types | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductCodes**](docs/ProductApi.md#getAllProductCodes) | **GET** /product/codes | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductExtensions**](docs/ProductApi.md#getAllProductExtensions) | **GET** /product/extensions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductMedia**](docs/ProductApi.md#getAllProductMedia) | **GET** /product/media | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductOffer**](docs/ProductApi.md#getAllProductOffer) | **GET** /product/productoffer | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProductOfferMetadata**](docs/ProductApi.md#getAllProductOfferMetadata) | **GET** /product/productoffermetadata | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getAllProducts**](docs/ProductApi.md#getAllProducts) | **GET** /product/products | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getCharacteristics**](docs/ProductApi.md#getCharacteristics) | **GET** /product/products/{id}/characteristics | get characteristics of product
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getDirectSubcategories1**](docs/ProductApi.md#getDirectSubcategories1) | **GET** /product/categories/{id}/subcategories | get direct subcategories
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getProductCategories**](docs/ProductApi.md#getProductCategories) | **GET** /product/products/{id}/categories | get product categories
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getProductMedia**](docs/ProductApi.md#getProductMedia) | **GET** /product/products/{id}/media | get product media
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getProductPrimeMedia**](docs/ProductApi.md#getProductPrimeMedia) | **GET** /product/products/{id}/media/prime | get prime media
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getProductRecommendations**](docs/ProductApi.md#getProductRecommendations) | **GET** /product/recommendations | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getProductsOfCategory**](docs/ProductApi.md#getProductsOfCategory) | **GET** /product/categories/{id}/products | get products for category
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleBundle**](docs/ProductApi.md#getSingleBundle) | **GET** /product/bundles/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleBundleOffer**](docs/ProductApi.md#getSingleBundleOffer) | **GET** /product/bundleoffer/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleBundlePart**](docs/ProductApi.md#getSingleBundlePart) | **GET** /product/bundleparts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleBundlePart2Product**](docs/ProductApi.md#getSingleBundlePart2Product) | **GET** /product/bundlepart2product/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleMediaItem**](docs/ProductApi.md#getSingleMediaItem) | **GET** /product/mediaitems/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProduct**](docs/ProductApi.md#getSingleProduct) | **GET** /product/products/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProductCategory**](docs/ProductApi.md#getSingleProductCategory) | **GET** /product/categories/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProductCharacteristic**](docs/ProductApi.md#getSingleProductCharacteristic) | **GET** /product/characteristics/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProductCode**](docs/ProductApi.md#getSingleProductCode) | **GET** /product/codes/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProductCodeType**](docs/ProductApi.md#getSingleProductCodeType) | **GET** /product/code-types/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProductMedia**](docs/ProductApi.md#getSingleProductMedia) | **GET** /product/media/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProductOffer**](docs/ProductApi.md#getSingleProductOffer) | **GET** /product/productoffer/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**getSingleProductRecommendation**](docs/ProductApi.md#getSingleProductRecommendation) | **GET** /product/recommendations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**searchBundleAssignments**](docs/ProductApi.md#searchBundleAssignments) | **GET** /product/bundleassignments | gets a list of bundles matching the given criteria
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**searchProducts**](docs/ProductApi.md#searchProducts) | **GET** /product/search | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateBundle**](docs/ProductApi.md#updateBundle) | **POST** /product/bundles/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateBundleOffer**](docs/ProductApi.md#updateBundleOffer) | **POST** /product/bundleoffer/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateBundlePart**](docs/ProductApi.md#updateBundlePart) | **POST** /product/bundleparts/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateBundlePart2Product**](docs/ProductApi.md#updateBundlePart2Product) | **POST** /product/bundlepart2product/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateMediaItem**](docs/ProductApi.md#updateMediaItem) | **POST** /product/mediaitems/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updatePartialProductCode**](docs/ProductApi.md#updatePartialProductCode) | **POST** /product/codes/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updatePartialProductCodeType**](docs/ProductApi.md#updatePartialProductCodeType) | **POST** /product/code-types/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProduct**](docs/ProductApi.md#updateProduct) | **POST** /product/products/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProductCategory**](docs/ProductApi.md#updateProductCategory) | **POST** /product/categories/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProductCharacteristic**](docs/ProductApi.md#updateProductCharacteristic) | **POST** /product/characteristics/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProductCode**](docs/ProductApi.md#updateProductCode) | **PUT** /product/codes/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProductCodeType**](docs/ProductApi.md#updateProductCodeType) | **PUT** /product/code-types/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProductMedia**](docs/ProductApi.md#updateProductMedia) | **POST** /product/media/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProductOffer**](docs/ProductApi.md#updateProductOffer) | **POST** /product/productoffer/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi* | [**updateProductRecommendation**](docs/ProductApi.md#updateProductRecommendation) | **POST** /product/recommendations/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**createAppointment**](docs/QueueApi.md#createAppointment) | **POST** /queue/appointments | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**createQueue**](docs/QueueApi.md#createQueue) | **POST** /queue/queues | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**createQueueTopic**](docs/QueueApi.md#createQueueTopic) | **POST** /queue/queue-topics | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**createQueueWorker**](docs/QueueApi.md#createQueueWorker) | **POST** /queue/queue-workers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**createVisit**](docs/QueueApi.md#createVisit) | **POST** /queue/visits | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**deleteAppointment**](docs/QueueApi.md#deleteAppointment) | **DELETE** /queue/appointments/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**deleteQueue**](docs/QueueApi.md#deleteQueue) | **DELETE** /queue/queues/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**deleteQueueTopic**](docs/QueueApi.md#deleteQueueTopic) | **DELETE** /queue/queue-topics/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**deleteQueueWorker**](docs/QueueApi.md#deleteQueueWorker) | **DELETE** /queue/queue-workers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**deleteVisit**](docs/QueueApi.md#deleteVisit) | **DELETE** /queue/visits/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getAllAppointments**](docs/QueueApi.md#getAllAppointments) | **GET** /queue/appointments | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getAllQueueTopics**](docs/QueueApi.md#getAllQueueTopics) | **GET** /queue/queue-topics | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getAllQueueWorkers**](docs/QueueApi.md#getAllQueueWorkers) | **GET** /queue/queue-workers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getAllQueues**](docs/QueueApi.md#getAllQueues) | **GET** /queue/queues | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getAllVisits**](docs/QueueApi.md#getAllVisits) | **GET** /queue/visits | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getQueueEstimation**](docs/QueueApi.md#getQueueEstimation) | **GET** /queue/queue-estimations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getSingleAppointment**](docs/QueueApi.md#getSingleAppointment) | **GET** /queue/appointments/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getSingleQueue**](docs/QueueApi.md#getSingleQueue) | **GET** /queue/queues/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getSingleQueueTopic**](docs/QueueApi.md#getSingleQueueTopic) | **GET** /queue/queue-topics/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getSingleQueueWorker**](docs/QueueApi.md#getSingleQueueWorker) | **GET** /queue/queue-workers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getSingleVisit**](docs/QueueApi.md#getSingleVisit) | **GET** /queue/visits/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getVisitEstimation**](docs/QueueApi.md#getVisitEstimation) | **GET** /queue/visit-estimations/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**getVisitEstimations**](docs/QueueApi.md#getVisitEstimations) | **GET** /queue/visit-estimations | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updateAppointment**](docs/QueueApi.md#updateAppointment) | **PUT** /queue/appointments/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updatePartialAppointment**](docs/QueueApi.md#updatePartialAppointment) | **POST** /queue/appointments/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updatePartialQueueTopic**](docs/QueueApi.md#updatePartialQueueTopic) | **POST** /queue/queue-topics/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updatePartialQueueWorker**](docs/QueueApi.md#updatePartialQueueWorker) | **POST** /queue/queue-workers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updatePartialVisit**](docs/QueueApi.md#updatePartialVisit) | **POST** /queue/visits/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updateQueue**](docs/QueueApi.md#updateQueue) | **PUT** /queue/queues/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updateQueueTopic**](docs/QueueApi.md#updateQueueTopic) | **PUT** /queue/queue-topics/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi* | [**updateQueueWorker**](docs/QueueApi.md#updateQueueWorker) | **PUT** /queue/queue-workers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**createOrder**](docs/RetailApi.md#createOrder) | **POST** /retail/orders | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**createOrderCustomerData**](docs/RetailApi.md#createOrderCustomerData) | **POST** /retail/order-customer-data | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**createOrderPosition**](docs/RetailApi.md#createOrderPosition) | **POST** /retail/order-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**createOrderTaxData**](docs/RetailApi.md#createOrderTaxData) | **POST** /retail/order-tax-data | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**createOrderTransaction**](docs/RetailApi.md#createOrderTransaction) | **POST** /retail/order-transactions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**createTransactionPrintJob**](docs/RetailApi.md#createTransactionPrintJob) | **POST** /retail/transaction-print-jobs | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**deleteOrder**](docs/RetailApi.md#deleteOrder) | **DELETE** /retail/orders/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**deleteOrderCustomerData**](docs/RetailApi.md#deleteOrderCustomerData) | **DELETE** /retail/order-customer-data/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**deleteOrderPosition**](docs/RetailApi.md#deleteOrderPosition) | **DELETE** /retail/order-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**deleteOrderTaxData**](docs/RetailApi.md#deleteOrderTaxData) | **DELETE** /retail/order-tax-data/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**fullUpdateOrder**](docs/RetailApi.md#fullUpdateOrder) | **PUT** /retail/orders/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**fullUpdateOrderCustomerData**](docs/RetailApi.md#fullUpdateOrderCustomerData) | **PUT** /retail/order-customer-data/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**fullUpdateOrderPosition**](docs/RetailApi.md#fullUpdateOrderPosition) | **PUT** /retail/order-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**fullUpdateOrderTaxData**](docs/RetailApi.md#fullUpdateOrderTaxData) | **PUT** /retail/order-tax-data/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllOrderCustomerData**](docs/RetailApi.md#getAllOrderCustomerData) | **GET** /retail/order-customer-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllOrderPositions**](docs/RetailApi.md#getAllOrderPositions) | **GET** /retail/order-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllOrderTaxData**](docs/RetailApi.md#getAllOrderTaxData) | **GET** /retail/order-tax-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllOrderTransactions**](docs/RetailApi.md#getAllOrderTransactions) | **GET** /retail/order-transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllOrders**](docs/RetailApi.md#getAllOrders) | **GET** /retail/orders | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllTransactionCustomerData**](docs/RetailApi.md#getAllTransactionCustomerData) | **GET** /retail/transaction-customer-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllTransactionPositions**](docs/RetailApi.md#getAllTransactionPositions) | **GET** /retail/transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllTransactionPrintJobParts**](docs/RetailApi.md#getAllTransactionPrintJobParts) | **GET** /retail/transaction-print-job-parts | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllTransactionPrintJobs**](docs/RetailApi.md#getAllTransactionPrintJobs) | **GET** /retail/transaction-print-jobs | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllTransactionTaxData**](docs/RetailApi.md#getAllTransactionTaxData) | **GET** /retail/transaction-tax-data | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getAllTransactions**](docs/RetailApi.md#getAllTransactions) | **GET** /retail/transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleOrder**](docs/RetailApi.md#getSingleOrder) | **GET** /retail/orders/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleOrderCustomerData**](docs/RetailApi.md#getSingleOrderCustomerData) | **GET** /retail/order-customer-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleOrderPosition**](docs/RetailApi.md#getSingleOrderPosition) | **GET** /retail/order-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleOrderTaxData**](docs/RetailApi.md#getSingleOrderTaxData) | **GET** /retail/order-tax-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleOrderTransaction**](docs/RetailApi.md#getSingleOrderTransaction) | **GET** /retail/order-transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleTransaction**](docs/RetailApi.md#getSingleTransaction) | **GET** /retail/transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleTransactionCustomerData**](docs/RetailApi.md#getSingleTransactionCustomerData) | **GET** /retail/transaction-customer-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleTransactionPosition**](docs/RetailApi.md#getSingleTransactionPosition) | **GET** /retail/transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleTransactionPrintJob**](docs/RetailApi.md#getSingleTransactionPrintJob) | **GET** /retail/transaction-print-jobs/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleTransactionPrintJobPart**](docs/RetailApi.md#getSingleTransactionPrintJobPart) | **GET** /retail/transaction-print-job-parts/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**getSingleTransactionTaxData**](docs/RetailApi.md#getSingleTransactionTaxData) | **GET** /retail/transaction-tax-data/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**updateOrder**](docs/RetailApi.md#updateOrder) | **POST** /retail/orders/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**updateOrderCustomerData**](docs/RetailApi.md#updateOrderCustomerData) | **POST** /retail/order-customer-data/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**updateOrderPosition**](docs/RetailApi.md#updateOrderPosition) | **POST** /retail/order-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi* | [**updateOrderTaxData**](docs/RetailApi.md#updateOrderTaxData) | **POST** /retail/order-tax-data/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**createReturnCartPosition**](docs/ReturnApi.md#createReturnCartPosition) | **POST** /return/cart-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**createReturnReason**](docs/ReturnApi.md#createReturnReason) | **POST** /return/reasons | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**deleteReturnCartPosition**](docs/ReturnApi.md#deleteReturnCartPosition) | **DELETE** /return/cart-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**deleteReturnReason**](docs/ReturnApi.md#deleteReturnReason) | **DELETE** /return/reasons/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**getAllReturnCartPositions**](docs/ReturnApi.md#getAllReturnCartPositions) | **GET** /return/cart-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**getAllReturnReasons**](docs/ReturnApi.md#getAllReturnReasons) | **GET** /return/reasons | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**getAllReturnTransactionPositions**](docs/ReturnApi.md#getAllReturnTransactionPositions) | **GET** /return/transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**getReturnCartPosition**](docs/ReturnApi.md#getReturnCartPosition) | **GET** /return/cart-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**getSingleReturnReason**](docs/ReturnApi.md#getSingleReturnReason) | **GET** /return/reasons/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**getSingleReturnTransactionPosition**](docs/ReturnApi.md#getSingleReturnTransactionPosition) | **GET** /return/transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**updatePartialReturnCartPosition**](docs/ReturnApi.md#updatePartialReturnCartPosition) | **POST** /return/cart-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**updatePartialReturnReason**](docs/ReturnApi.md#updatePartialReturnReason) | **POST** /return/reasons/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**updateReturnCartPosition**](docs/ReturnApi.md#updateReturnCartPosition) | **PUT** /return/cart-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi* | [**updateReturnReason**](docs/ReturnApi.md#updateReturnReason) | **PUT** /return/reasons/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**createPermission**](docs/SecurityApi.md#createPermission) | **POST** /security/permissions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**createRole**](docs/SecurityApi.md#createRole) | **POST** /security/roles | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**createRole2Permission**](docs/SecurityApi.md#createRole2Permission) | **POST** /security/role-permissions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**createShortToken**](docs/SecurityApi.md#createShortToken) | **POST** /security/short-tokens | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**deletePermission**](docs/SecurityApi.md#deletePermission) | **DELETE** /security/permissions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**deleteRole**](docs/SecurityApi.md#deleteRole) | **DELETE** /security/roles/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**deleteRole2Permission**](docs/SecurityApi.md#deleteRole2Permission) | **DELETE** /security/role-permissions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**fullUpdatePermission**](docs/SecurityApi.md#fullUpdatePermission) | **PUT** /security/permissions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**fullUpdateRole**](docs/SecurityApi.md#fullUpdateRole) | **PUT** /security/roles/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**fullUpdateRole2Permission**](docs/SecurityApi.md#fullUpdateRole2Permission) | **PUT** /security/role-permissions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getAllPermissions**](docs/SecurityApi.md#getAllPermissions) | **GET** /security/permissions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getAllRole2Permissions**](docs/SecurityApi.md#getAllRole2Permissions) | **GET** /security/role-permissions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getAllRoles**](docs/SecurityApi.md#getAllRoles) | **GET** /security/roles | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getSinglePermission**](docs/SecurityApi.md#getSinglePermission) | **GET** /security/permissions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getSingleRole**](docs/SecurityApi.md#getSingleRole) | **GET** /security/roles/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getSingleRole2Permission**](docs/SecurityApi.md#getSingleRole2Permission) | **GET** /security/role-permissions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getSingleShortToken**](docs/SecurityApi.md#getSingleShortToken) | **GET** /security/short-tokens/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**getSingleUser**](docs/SecurityApi.md#getSingleUser) | **GET** /security/users/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**updatePermission**](docs/SecurityApi.md#updatePermission) | **POST** /security/permissions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**updateRole**](docs/SecurityApi.md#updateRole) | **POST** /security/roles/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi* | [**updateRole2Permission**](docs/SecurityApi.md#updateRole2Permission) | **POST** /security/role-permissions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SerialNumberApi* | [**getAllSerialNumbers**](docs/SerialNumberApi.md#getAllSerialNumbers) | **GET** /serial-number/serial-numbers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SerialNumberApi* | [**getSingleSerialNumber**](docs/SerialNumberApi.md#getSingleSerialNumber) | **GET** /serial-number/serial-numbers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**createStock**](docs/StockApi.md#createStock) | **POST** /stock/stocks | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**createStockMovementOrder**](docs/StockApi.md#createStockMovementOrder) | **POST** /stock/movement-orders | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**createStockMovementOrderPosition**](docs/StockApi.md#createStockMovementOrderPosition) | **POST** /stock/movement-order-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**createStockMovementOrderPositionSerial**](docs/StockApi.md#createStockMovementOrderPositionSerial) | **POST** /stock/movement-order-position-serials | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**createStockMovementOrderTransaction**](docs/StockApi.md#createStockMovementOrderTransaction) | **POST** /stock/movement-order-transactions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**deleteStock**](docs/StockApi.md#deleteStock) | **DELETE** /stock/stocks/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**deleteStockMovementOrder**](docs/StockApi.md#deleteStockMovementOrder) | **DELETE** /stock/movement-orders/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**deleteStockMovementOrderPosition**](docs/StockApi.md#deleteStockMovementOrderPosition) | **DELETE** /stock/movement-order-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**deleteStockMovementOrderPositionSerial**](docs/StockApi.md#deleteStockMovementOrderPositionSerial) | **DELETE** /stock/movement-order-position-serials/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockLevels**](docs/StockApi.md#getAllStockLevels) | **GET** /stock/levels | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockMovementOrderPositionSerials**](docs/StockApi.md#getAllStockMovementOrderPositionSerials) | **GET** /stock/movement-order-position-serials | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockMovementOrderPositions**](docs/StockApi.md#getAllStockMovementOrderPositions) | **GET** /stock/movement-order-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockMovementOrderTransactions**](docs/StockApi.md#getAllStockMovementOrderTransactions) | **GET** /stock/movement-order-transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockMovementOrders**](docs/StockApi.md#getAllStockMovementOrders) | **GET** /stock/movement-orders | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockMovementTransactionPositionSerials**](docs/StockApi.md#getAllStockMovementTransactionPositionSerials) | **GET** /stock/movement-transaction-position-serials | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockMovementTransactionPositions**](docs/StockApi.md#getAllStockMovementTransactionPositions) | **GET** /stock/movement-transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStockMovementTransactions**](docs/StockApi.md#getAllStockMovementTransactions) | **GET** /stock/movement-transactions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getAllStocks**](docs/StockApi.md#getAllStocks) | **GET** /stock/stocks | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStock**](docs/StockApi.md#getSingleStock) | **GET** /stock/stocks/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStockMovementOrder**](docs/StockApi.md#getSingleStockMovementOrder) | **GET** /stock/movement-orders/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStockMovementOrderPosition**](docs/StockApi.md#getSingleStockMovementOrderPosition) | **GET** /stock/movement-order-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStockMovementOrderPositionSerial**](docs/StockApi.md#getSingleStockMovementOrderPositionSerial) | **GET** /stock/movement-order-position-serials/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStockMovementOrderTransaction**](docs/StockApi.md#getSingleStockMovementOrderTransaction) | **GET** /stock/movement-order-transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStockMovementTransaction**](docs/StockApi.md#getSingleStockMovementTransaction) | **GET** /stock/movement-transactions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStockMovementTransactionPosition**](docs/StockApi.md#getSingleStockMovementTransactionPosition) | **GET** /stock/movement-transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**getSingleStockMovementTransactionPositionSerial**](docs/StockApi.md#getSingleStockMovementTransactionPositionSerial) | **GET** /stock/movement-transaction-position-serials/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updatePartialStock**](docs/StockApi.md#updatePartialStock) | **POST** /stock/stocks/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updatePartialStockMovementOrder**](docs/StockApi.md#updatePartialStockMovementOrder) | **POST** /stock/movement-orders/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updatePartialStockMovementOrderPosition**](docs/StockApi.md#updatePartialStockMovementOrderPosition) | **POST** /stock/movement-order-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updatePartialStockMovementOrderPositionSerial**](docs/StockApi.md#updatePartialStockMovementOrderPositionSerial) | **POST** /stock/movement-order-position-serials/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updateStock**](docs/StockApi.md#updateStock) | **PUT** /stock/stocks/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updateStockMovementOrder**](docs/StockApi.md#updateStockMovementOrder) | **PUT** /stock/movement-orders/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updateStockMovementOrderPosition**](docs/StockApi.md#updateStockMovementOrderPosition) | **PUT** /stock/movement-order-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi* | [**updateStockMovementOrderPositionSerial**](docs/StockApi.md#updateStockMovementOrderPositionSerial) | **PUT** /stock/movement-order-position-serials/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**createStockGoodsHandoverOrderPosition**](docs/StockGoodsHandoverApi.md#createStockGoodsHandoverOrderPosition) | **POST** /stock-goods-handover/order-positions | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**deleteStockGoodsHandoverOrderPosition**](docs/StockGoodsHandoverApi.md#deleteStockGoodsHandoverOrderPosition) | **DELETE** /stock-goods-handover/order-positions/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**getAllStockGoodsHandoverOrderPositions**](docs/StockGoodsHandoverApi.md#getAllStockGoodsHandoverOrderPositions) | **GET** /stock-goods-handover/order-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**getAllStockGoodsHandoverTransactionPositions**](docs/StockGoodsHandoverApi.md#getAllStockGoodsHandoverTransactionPositions) | **GET** /stock-goods-handover/transaction-positions | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**getSingleStockGoodsHandoverOrderPosition**](docs/StockGoodsHandoverApi.md#getSingleStockGoodsHandoverOrderPosition) | **GET** /stock-goods-handover/order-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**getSingleStockGoodsHandoverTransactionPosition**](docs/StockGoodsHandoverApi.md#getSingleStockGoodsHandoverTransactionPosition) | **GET** /stock-goods-handover/transaction-positions/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**updatePartialStockGoodsHandoverOrderPosition**](docs/StockGoodsHandoverApi.md#updatePartialStockGoodsHandoverOrderPosition) | **POST** /stock-goods-handover/order-positions/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi* | [**updateStockGoodsHandoverOrderPosition**](docs/StockGoodsHandoverApi.md#updateStockGoodsHandoverOrderPosition) | **PUT** /stock-goods-handover/order-positions/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**createTax**](docs/TaxApi.md#createTax) | **POST** /tax/taxes | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**createTaxClass**](docs/TaxApi.md#createTaxClass) | **POST** /tax/tax-classes | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**createTaxClass2Product**](docs/TaxApi.md#createTaxClass2Product) | **POST** /tax/tax-class-products | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**createTaxRule**](docs/TaxApi.md#createTaxRule) | **POST** /tax/tax-rules | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**createTaxSet**](docs/TaxApi.md#createTaxSet) | **POST** /tax/tax-sets | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**createTaxSet2Tax**](docs/TaxApi.md#createTaxSet2Tax) | **POST** /tax/tax-set-taxes | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**deleteTax**](docs/TaxApi.md#deleteTax) | **DELETE** /tax/taxes/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**deleteTaxClass**](docs/TaxApi.md#deleteTaxClass) | **DELETE** /tax/tax-classes/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**deleteTaxClass2Product**](docs/TaxApi.md#deleteTaxClass2Product) | **DELETE** /tax/tax-class-products/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**deleteTaxRule**](docs/TaxApi.md#deleteTaxRule) | **DELETE** /tax/tax-rules/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**deleteTaxSet**](docs/TaxApi.md#deleteTaxSet) | **DELETE** /tax/tax-sets/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**deleteTaxSet2Tax**](docs/TaxApi.md#deleteTaxSet2Tax) | **DELETE** /tax/tax-set-taxes/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getAllTaxClass2Products**](docs/TaxApi.md#getAllTaxClass2Products) | **GET** /tax/tax-class-products | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getAllTaxClasses**](docs/TaxApi.md#getAllTaxClasses) | **GET** /tax/tax-classes | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getAllTaxRules**](docs/TaxApi.md#getAllTaxRules) | **GET** /tax/tax-rules | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getAllTaxSet2Taxes**](docs/TaxApi.md#getAllTaxSet2Taxes) | **GET** /tax/tax-set-taxes | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getAllTaxSets**](docs/TaxApi.md#getAllTaxSets) | **GET** /tax/tax-sets | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getAllTaxes**](docs/TaxApi.md#getAllTaxes) | **GET** /tax/taxes | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getSingleTax**](docs/TaxApi.md#getSingleTax) | **GET** /tax/taxes/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getSingleTaxClass**](docs/TaxApi.md#getSingleTaxClass) | **GET** /tax/tax-classes/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getSingleTaxClass2Product**](docs/TaxApi.md#getSingleTaxClass2Product) | **GET** /tax/tax-class-products/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getSingleTaxRule**](docs/TaxApi.md#getSingleTaxRule) | **GET** /tax/tax-rules/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getSingleTaxSet**](docs/TaxApi.md#getSingleTaxSet) | **GET** /tax/tax-sets/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**getSingleTaxSet2Tax**](docs/TaxApi.md#getSingleTaxSet2Tax) | **GET** /tax/tax-set-taxes/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updatePartialTax**](docs/TaxApi.md#updatePartialTax) | **POST** /tax/taxes/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updatePartialTaxClass**](docs/TaxApi.md#updatePartialTaxClass) | **POST** /tax/tax-classes/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updatePartialTaxClass2Product**](docs/TaxApi.md#updatePartialTaxClass2Product) | **POST** /tax/tax-class-products/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updatePartialTaxRule**](docs/TaxApi.md#updatePartialTaxRule) | **POST** /tax/tax-rules/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updatePartialTaxSet**](docs/TaxApi.md#updatePartialTaxSet) | **POST** /tax/tax-sets/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updatePartialTaxSet2Tax**](docs/TaxApi.md#updatePartialTaxSet2Tax) | **POST** /tax/tax-set-taxes/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updateTax**](docs/TaxApi.md#updateTax) | **PUT** /tax/taxes/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updateTaxClass**](docs/TaxApi.md#updateTaxClass) | **PUT** /tax/tax-classes/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updateTaxClass2Product**](docs/TaxApi.md#updateTaxClass2Product) | **PUT** /tax/tax-class-products/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updateTaxRule**](docs/TaxApi.md#updateTaxRule) | **PUT** /tax/tax-rules/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updateTaxSet**](docs/TaxApi.md#updateTaxSet) | **PUT** /tax/tax-sets/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi* | [**updateTaxSet2Tax**](docs/TaxApi.md#updateTaxSet2Tax) | **PUT** /tax/tax-set-taxes/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TraceApi* | [**getSingleStackTrace**](docs/TraceApi.md#getSingleStackTrace) | **GET** /trace/stack-traces/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**deleteTranslationContent**](docs/TranslatorApi.md#deleteTranslationContent) | **DELETE** /translator/contents/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**exportTranslationsAsXml**](docs/TranslatorApi.md#exportTranslationsAsXml) | **GET** /translator/contents | Exports to XML
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**exportTranslationsToFile**](docs/TranslatorApi.md#exportTranslationsToFile) | **GET** /translator/contents/export | Exports to XML
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**fullUpdateTranslationContent**](docs/TranslatorApi.md#fullUpdateTranslationContent) | **PUT** /translator/contents/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**getAllTranslations**](docs/TranslatorApi.md#getAllTranslations) | **GET** /translator/translations | Get information about a scope
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**getLanguages**](docs/TranslatorApi.md#getLanguages) | **GET** /translator/languages | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**getSingleTranslationContent**](docs/TranslatorApi.md#getSingleTranslationContent) | **GET** /translator/contents/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**importCsv**](docs/TranslatorApi.md#importCsv) | **POST** /translator/contents | Imports CSV
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi* | [**updateTranslationContent**](docs/TranslatorApi.md#updateTranslationContent) | **POST** /translator/contents/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**createVisitor**](docs/VisitorApi.md#createVisitor) | **POST** /visitor/visitors | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**createVisitorMedia**](docs/VisitorApi.md#createVisitorMedia) | **POST** /visitor/media | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**deleteVisitor**](docs/VisitorApi.md#deleteVisitor) | **DELETE** /visitor/visitors/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**deleteVisitorMedia**](docs/VisitorApi.md#deleteVisitorMedia) | **DELETE** /visitor/media/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**getAllVisitorMedia**](docs/VisitorApi.md#getAllVisitorMedia) | **GET** /visitor/media | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**getAllVisitorMediaPreviews**](docs/VisitorApi.md#getAllVisitorMediaPreviews) | **GET** /visitor/media-previews | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**getAllVisitors**](docs/VisitorApi.md#getAllVisitors) | **GET** /visitor/visitors | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**getSingleVisitor**](docs/VisitorApi.md#getSingleVisitor) | **GET** /visitor/visitors/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**getSingleVisitorMedia**](docs/VisitorApi.md#getSingleVisitorMedia) | **GET** /visitor/media/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**getSingleVisitorMediaPreview**](docs/VisitorApi.md#getSingleVisitorMediaPreview) | **GET** /visitor/media-previews/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**updatePartialVisitor**](docs/VisitorApi.md#updatePartialVisitor) | **POST** /visitor/visitors/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**updateVisitor**](docs/VisitorApi.md#updateVisitor) | **PUT** /visitor/visitors/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi* | [**updateVisitorMedia**](docs/VisitorApi.md#updateVisitorMedia) | **PUT** /visitor/media/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**createVoucherNotificationSetting**](docs/VoucherApi.md#createVoucherNotificationSetting) | **POST** /voucher/notification-settings | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**deleteVoucher**](docs/VoucherApi.md#deleteVoucher) | **DELETE** /voucher/vouchers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**deleteVoucherNotificationSetting**](docs/VoucherApi.md#deleteVoucherNotificationSetting) | **DELETE** /voucher/notification-settings/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**getAllVoucherNotificationSettings**](docs/VoucherApi.md#getAllVoucherNotificationSettings) | **GET** /voucher/notification-settings | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**getAllVouchers**](docs/VoucherApi.md#getAllVouchers) | **GET** /voucher/vouchers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**getSingleVoucher**](docs/VoucherApi.md#getSingleVoucher) | **GET** /voucher/vouchers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**getSingleVoucherNotificationSetting**](docs/VoucherApi.md#getSingleVoucherNotificationSetting) | **GET** /voucher/notification-settings/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**importVouchersFromMofFile**](docs/VoucherApi.md#importVouchersFromMofFile) | **POST** /voucher/vouchers | Import MOF file
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**updatePartialVoucher**](docs/VoucherApi.md#updatePartialVoucher) | **POST** /voucher/vouchers/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**updatePartialVoucherNotificationSetting**](docs/VoucherApi.md#updatePartialVoucherNotificationSetting) | **POST** /voucher/notification-settings/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**updateVoucher**](docs/VoucherApi.md#updateVoucher) | **PUT** /voucher/vouchers/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi* | [**updateVoucherNotificationSetting**](docs/VoucherApi.md#updateVoucherNotificationSetting) | **PUT** /voucher/notification-settings/{id} | update resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi* | [**createVoucherHandover**](docs/VoucherHandoverApi.md#createVoucherHandover) | **POST** /voucher-usage/handovers | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi* | [**deleteVoucherHandover**](docs/VoucherHandoverApi.md#deleteVoucherHandover) | **DELETE** /voucher-usage/handovers/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi* | [**getAllVoucherHandovers**](docs/VoucherHandoverApi.md#getAllVoucherHandovers) | **GET** /voucher-usage/handovers | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi* | [**getSingleVoucherHandover**](docs/VoucherHandoverApi.md#getSingleVoucherHandover) | **GET** /voucher-usage/handovers/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi* | [**createWorkflowStep**](docs/WorkflowApi.md#createWorkflowStep) | **POST** /workflow/workflow-steps | insert resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi* | [**deleteWorkflowStep**](docs/WorkflowApi.md#deleteWorkflowStep) | **DELETE** /workflow/workflow-steps/{id} | delete resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi* | [**getAllWorkflowSteps**](docs/WorkflowApi.md#getAllWorkflowSteps) | **GET** /workflow/workflow-steps | get list of resources
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi* | [**getSingleWorkflowStep**](docs/WorkflowApi.md#getSingleWorkflowStep) | **GET** /workflow/workflow-steps/{id} | get resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi* | [**updatePartialWorkflowStep**](docs/WorkflowApi.md#updatePartialWorkflowStep) | **POST** /workflow/workflow-steps/{id} | perform a partial update of the resource
*ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi* | [**updateWorkflowStep**](docs/WorkflowApi.md#updateWorkflowStep) | **PUT** /workflow/workflow-steps/{id} | update resource


## Documentation for Models

 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.AddressJson](docs/AddressJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.AddressRestResultPage](docs/AddressRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationConfigurationJson](docs/ApplicationConfigurationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationConfigurationRestResultPage](docs/ApplicationConfigurationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationJson](docs/ApplicationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationRestResultPage](docs/ApplicationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationSettingJson](docs/ApplicationSettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationSettingRestResultPage](docs/ApplicationSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.AppointmentJson](docs/AppointmentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.AppointmentRestResultPage](docs/AppointmentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.AttachmentJson](docs/AttachmentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.AttachmentRestResultPage](docs/AttachmentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BankAccountJson](docs/BankAccountJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BankAccountRestResultPage](docs/BankAccountRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentCartPositionJson](docs/BillPaymentCartPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentCartPositionRestResultPage](docs/BillPaymentCartPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentOrderPositionJson](docs/BillPaymentOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentOrderPositionRestResultPage](docs/BillPaymentOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentProductJson](docs/BillPaymentProductJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentProductRestResultPage](docs/BillPaymentProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentTransactionPositionJson](docs/BillPaymentTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentTransactionPositionRestResultPage](docs/BillPaymentTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BrandJson](docs/BrandJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BrandRestResultPage](docs/BrandRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundleAssignmentJson](docs/BundleAssignmentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundleAssignmentRestResultPage](docs/BundleAssignmentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundleItemJson](docs/BundleItemJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundleJson](docs/BundleJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundleOfferJson](docs/BundleOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundleOfferRestResultPage](docs/BundleOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundlePart2ProductJson](docs/BundlePart2ProductJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundlePart2ProductRestResultPage](docs/BundlePart2ProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundlePartJson](docs/BundlePartJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundlePartRestResultPage](docs/BundlePartRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BundleRestResultPage](docs/BundleRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BusinessErrorObject](docs/BusinessErrorObject.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Cart2BundleOfferJson](docs/Cart2BundleOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Cart2BundleOfferRestResultPage](docs/Cart2BundleOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Cart2BundlePartJson](docs/Cart2BundlePartJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Cart2BundlePartRestResultPage](docs/Cart2BundlePartRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Cart2ProductOfferJson](docs/Cart2ProductOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Cart2ProductOfferRestResultPage](docs/Cart2ProductOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartAddressDataJson](docs/CartAddressDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartAddressDataRestResultPage](docs/CartAddressDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartBankAccountDataJson](docs/CartBankAccountDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartBankAccountDataRestResultPage](docs/CartBankAccountDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartCheckErrorJson](docs/CartCheckErrorJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartCheckErrorRestResultPage](docs/CartCheckErrorRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartCheckJson](docs/CartCheckJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartCustomerDataJson](docs/CartCustomerDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartCustomerDataRestResultPage](docs/CartCustomerDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartDiscountDataJson](docs/CartDiscountDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartDiscountDataRestResultPage](docs/CartDiscountDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartExportJson](docs/CartExportJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartExportRestResultPage](docs/CartExportRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartJson](docs/CartJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartRestResultPage](docs/CartRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartTaxDataJson](docs/CartTaxDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartTaxDataRestResultPage](docs/CartTaxDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartTransactionJson](docs/CartTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartTransactionRestResultPage](docs/CartTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CashDrawerOpenRequestJson](docs/CashDrawerOpenRequestJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CashDrawerOpenRequestRestResultPage](docs/CashDrawerOpenRequestRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CertificateJson](docs/CertificateJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CertificateRestResultPage](docs/CertificateRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ChangeAmountJson](docs/ChangeAmountJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ChangeAmountRestResultPage](docs/ChangeAmountRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationJson](docs/ConfigurationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationRestResultPage](docs/ConfigurationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationTypeTemplateJson](docs/ConfigurationTypeTemplateJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationTypeTemplateRestResultPage](docs/ConfigurationTypeTemplateRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConnectionJson](docs/ConnectionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConnectionRestResultPage](docs/ConnectionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicJson](docs/ConsultingTopicJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicOfferJson](docs/ConsultingTopicOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicOfferRestResultPage](docs/ConsultingTopicOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicRestResultPage](docs/ConsultingTopicRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CountryJson](docs/CountryJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CountryRestResultPage](docs/CountryRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerAddressJson](docs/CustomerAddressJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerContractJson](docs/CustomerContractJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerContractRestResultPage](docs/CustomerContractRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerJson](docs/CustomerJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerRestResultPage](docs/CustomerRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerSearchJson](docs/CustomerSearchJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerSearchRestResultPage](docs/CustomerSearchRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DataCollectionProtocolJson](docs/DataCollectionProtocolJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DenominationUnitJson](docs/DenominationUnitJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DenominationUnitRestResultPage](docs/DenominationUnitRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DeviceConfigSettingJson](docs/DeviceConfigSettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DeviceConfigurationJson](docs/DeviceConfigurationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DeviceControllerJson](docs/DeviceControllerJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DeviceControllerRestResultPage](docs/DeviceControllerRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DeviceControllerSettingJson](docs/DeviceControllerSettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DeviceControllerSettingRestResultPage](docs/DeviceControllerSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Discount2DiscountOfferJson](docs/Discount2DiscountOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Discount2DiscountOfferRestResultPage](docs/Discount2DiscountOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountJson](docs/DiscountJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountOfferJson](docs/DiscountOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountOfferRestResultPage](docs/DiscountOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountRestResultPage](docs/DiscountRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EntityTag](docs/EntityTag.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ErrorObject](docs/ErrorObject.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupCartPositionJson](docs/EtopupCartPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupCartPositionRestResultPage](docs/EtopupCartPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupOrderPositionJson](docs/EtopupOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupOrderPositionRestResultPage](docs/EtopupOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupProductJson](docs/EtopupProductJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupProductRestResultPage](docs/EtopupProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupTransactionPositionJson](docs/EtopupTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupTransactionPositionRestResultPage](docs/EtopupTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherOrderPositionJson](docs/EvoucherOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherOrderPositionRestResultPage](docs/EvoucherOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherProductJson](docs/EvoucherProductJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherProductRestResultPage](docs/EvoucherProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherTransactionPositionJson](docs/EvoucherTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherTransactionPositionRestResultPage](docs/EvoucherTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Expandable](docs/Expandable.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableAddressRestResultPage](docs/ExpandableAddressRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableBankAccountRestResultPage](docs/ExpandableBankAccountRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableBundleAssignmentRestResultPage](docs/ExpandableBundleAssignmentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableBundlePart2ProductRestResultPage](docs/ExpandableBundlePart2ProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableBundlePartRestResultPage](docs/ExpandableBundlePartRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCart2BundleOfferRestResultPage](docs/ExpandableCart2BundleOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCart2BundlePartRestResultPage](docs/ExpandableCart2BundlePartRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCart2ProductOfferRestResultPage](docs/ExpandableCart2ProductOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCartAddressDataRestResultPage](docs/ExpandableCartAddressDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCartBankAccountDataRestResultPage](docs/ExpandableCartBankAccountDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCartCheckErrorRestResultPage](docs/ExpandableCartCheckErrorRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCartDiscountDataRestResultPage](docs/ExpandableCartDiscountDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCartTaxDataRestResultPage](docs/ExpandableCartTaxDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableConsultingTopicRestResultPage](docs/ExpandableConsultingTopicRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableCustomerContractRestResultPage](docs/ExpandableCustomerContractRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableDenominationUnitRestResultPage](docs/ExpandableDenominationUnitRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableDeviceControllerSettingRestResultPage](docs/ExpandableDeviceControllerSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableFiscalizationUnit2CertificateRestResultPage](docs/ExpandableFiscalizationUnit2CertificateRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableGoodsHandoverOrderPositionRestResultPage](docs/ExpandableGoodsHandoverOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableGoodsHandoverOrderPositionSerialRestResultPage](docs/ExpandableGoodsHandoverOrderPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableGoodsHandoverTransactionPositionRestResultPage](docs/ExpandableGoodsHandoverTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableGoodsHandoverTransactionPositionSerialRestResultPage](docs/ExpandableGoodsHandoverTransactionPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableHardwareDevice2MeansOfPaymentRestResultPage](docs/ExpandableHardwareDevice2MeansOfPaymentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableHardwareDeviceAppConfigurationRestResultPage](docs/ExpandableHardwareDeviceAppConfigurationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableHardwareDeviceRestResultPage](docs/ExpandableHardwareDeviceRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableHardwareSettingRestResultPage](docs/ExpandableHardwareSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableHardwareStationLockRestResultPage](docs/ExpandableHardwareStationLockRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableJsonNode](docs/ExpandableJsonNode.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableLocationRestResultPage](docs/ExpandableLocationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableProductCategoryRestResultPage](docs/ExpandableProductCategoryRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableProductCharacteristicRestResultPage](docs/ExpandableProductCharacteristicRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableProductCodeRestResultPage](docs/ExpandableProductCodeRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableProductExtensionRestResultPage](docs/ExpandableProductExtensionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableProductMediaRestResultPage](docs/ExpandableProductMediaRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableProductRestResultPage](docs/ExpandableProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableQueueEstimationJson](docs/ExpandableQueueEstimationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableQueueTopicRestResultPage](docs/ExpandableQueueTopicRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableQueueWorkerRestResultPage](docs/ExpandableQueueWorkerRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRetailOrderCustomerDataRestResultPage](docs/ExpandableRetailOrderCustomerDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRetailOrderPositionRestResultPage](docs/ExpandableRetailOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRetailOrderTaxDataRestResultPage](docs/ExpandableRetailOrderTaxDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRetailTransactionCustomerDataRestResultPage](docs/ExpandableRetailTransactionCustomerDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRetailTransactionPositionRestResultPage](docs/ExpandableRetailTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRetailTransactionPrintJobPartRestResultPage](docs/ExpandableRetailTransactionPrintJobPartRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRetailTransactionTaxDataRestResultPage](docs/ExpandableRetailTransactionTaxDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableRole2PermissionRestResultPage](docs/ExpandableRole2PermissionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableSettingRestResultPage](docs/ExpandableSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableStockMovementOrderPositionRestResultPage](docs/ExpandableStockMovementOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableStockMovementOrderPositionSerialRestResultPage](docs/ExpandableStockMovementOrderPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableStockMovementTransactionPositionRestResultPage](docs/ExpandableStockMovementTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableStockMovementTransactionPositionSerialRestResultPage](docs/ExpandableStockMovementTransactionPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableTimedConfigurationRestResultPage](docs/ExpandableTimedConfigurationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableVisitEstimationJson](docs/ExpandableVisitEstimationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableVisitEstimationRestResultPage](docs/ExpandableVisitEstimationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableVisitRestResultPage](docs/ExpandableVisitRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableVisitorMediaPreviewRestResultPage](docs/ExpandableVisitorMediaPreviewRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableVisitorMediaRestResultPage](docs/ExpandableVisitorMediaRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithId](docs/ExpandableWithId.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongAppointmentJson](docs/ExpandableWithIdLongAppointmentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongAttachmentJson](docs/ExpandableWithIdLongAttachmentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongBundleJson](docs/ExpandableWithIdLongBundleJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongBundleOfferJson](docs/ExpandableWithIdLongBundleOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongBundlePartJson](docs/ExpandableWithIdLongBundlePartJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCart2BundleOfferJson](docs/ExpandableWithIdLongCart2BundleOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCart2BundlePartJson](docs/ExpandableWithIdLongCart2BundlePartJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCartCheckJson](docs/ExpandableWithIdLongCartCheckJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCartCustomerDataJson](docs/ExpandableWithIdLongCartCustomerDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCartDiscountDataJson](docs/ExpandableWithIdLongCartDiscountDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCartJson](docs/ExpandableWithIdLongCartJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCertificateJson](docs/ExpandableWithIdLongCertificateJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongConfigurationJson](docs/ExpandableWithIdLongConfigurationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongConfigurationTypeTemplateJson](docs/ExpandableWithIdLongConfigurationTypeTemplateJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongConnectionJson](docs/ExpandableWithIdLongConnectionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongConsultingTopicItemJson](docs/ExpandableWithIdLongConsultingTopicItemJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongConsultingTopicJson](docs/ExpandableWithIdLongConsultingTopicJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongCustomerJson](docs/ExpandableWithIdLongCustomerJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongDeviceControllerJson](docs/ExpandableWithIdLongDeviceControllerJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongDiscountJson](docs/ExpandableWithIdLongDiscountJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongDiscountOfferJson](docs/ExpandableWithIdLongDiscountOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongFiscalizationTransactionJson](docs/ExpandableWithIdLongFiscalizationTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongFiscalizationUnitJson](docs/ExpandableWithIdLongFiscalizationUnitJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongGoodsHandoverOrderJson](docs/ExpandableWithIdLongGoodsHandoverOrderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongGoodsHandoverOrderPositionJson](docs/ExpandableWithIdLongGoodsHandoverOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongGoodsHandoverTransactionJson](docs/ExpandableWithIdLongGoodsHandoverTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongGoodsHandoverTransactionPositionJson](docs/ExpandableWithIdLongGoodsHandoverTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongHardwareDeviceJson](docs/ExpandableWithIdLongHardwareDeviceJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongHardwareStationJson](docs/ExpandableWithIdLongHardwareStationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongJsonNode](docs/ExpandableWithIdLongJsonNode.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongLocationJson](docs/ExpandableWithIdLongLocationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongMailJson](docs/ExpandableWithIdLongMailJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongMeansOfPaymentJson](docs/ExpandableWithIdLongMeansOfPaymentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongMediaItemJson](docs/ExpandableWithIdLongMediaItemJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongPaymentRequestJson](docs/ExpandableWithIdLongPaymentRequestJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongPermissionJson](docs/ExpandableWithIdLongPermissionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongProductCategoryJson](docs/ExpandableWithIdLongProductCategoryJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongProductCodeTypeJson](docs/ExpandableWithIdLongProductCodeTypeJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongProductJson](docs/ExpandableWithIdLongProductJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongProductMediaJson](docs/ExpandableWithIdLongProductMediaJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongQueueJson](docs/ExpandableWithIdLongQueueJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongQueueWorkerJson](docs/ExpandableWithIdLongQueueWorkerJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongRetailOrderJson](docs/ExpandableWithIdLongRetailOrderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongRetailOrderPositionJson](docs/ExpandableWithIdLongRetailOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongRetailTransactionJson](docs/ExpandableWithIdLongRetailTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongRetailTransactionPositionJson](docs/ExpandableWithIdLongRetailTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongRetailTransactionPrintJobJson](docs/ExpandableWithIdLongRetailTransactionPrintJobJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongReturnReasonJson](docs/ExpandableWithIdLongReturnReasonJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongRoleJson](docs/ExpandableWithIdLongRoleJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongSettingJson](docs/ExpandableWithIdLongSettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongSignatureProviderJson](docs/ExpandableWithIdLongSignatureProviderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongSmsJson](docs/ExpandableWithIdLongSmsJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongStockJson](docs/ExpandableWithIdLongStockJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongStockMovementOrderJson](docs/ExpandableWithIdLongStockMovementOrderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongStockMovementOrderPositionJson](docs/ExpandableWithIdLongStockMovementOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongStockMovementTransactionJson](docs/ExpandableWithIdLongStockMovementTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongStockMovementTransactionPositionJson](docs/ExpandableWithIdLongStockMovementTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongTaxClassJson](docs/ExpandableWithIdLongTaxClassJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongTaxJson](docs/ExpandableWithIdLongTaxJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongTaxSetJson](docs/ExpandableWithIdLongTaxSetJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongVisitJson](docs/ExpandableWithIdLongVisitJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdLongVisitorJson](docs/ExpandableWithIdLongVisitorJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ExpandableWithIdStringStrategyJson](docs/ExpandableWithIdStringStrategyJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationTransactionJson](docs/FiscalizationTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationTransactionRestResultPage](docs/FiscalizationTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationUnit2CertificateJson](docs/FiscalizationUnit2CertificateJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationUnit2CertificateRestResultPage](docs/FiscalizationUnit2CertificateRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationUnitJson](docs/FiscalizationUnitJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationUnitRestResultPage](docs/FiscalizationUnitRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderJson](docs/GoodsHandoverOrderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderPositionJson](docs/GoodsHandoverOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderPositionRestResultPage](docs/GoodsHandoverOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderPositionSerialJson](docs/GoodsHandoverOrderPositionSerialJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderPositionSerialRestResultPage](docs/GoodsHandoverOrderPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderRestResultPage](docs/GoodsHandoverOrderRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderTransactionJson](docs/GoodsHandoverOrderTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverOrderTransactionRestResultPage](docs/GoodsHandoverOrderTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverTransactionJson](docs/GoodsHandoverTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverTransactionPositionJson](docs/GoodsHandoverTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverTransactionPositionRestResultPage](docs/GoodsHandoverTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverTransactionPositionSerialJson](docs/GoodsHandoverTransactionPositionSerialJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverTransactionPositionSerialRestResultPage](docs/GoodsHandoverTransactionPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverTransactionRestResultPage](docs/GoodsHandoverTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDevice2MeansOfPaymentJson](docs/HardwareDevice2MeansOfPaymentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDevice2MeansOfPaymentRestResultPage](docs/HardwareDevice2MeansOfPaymentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDeviceAppConfigurationJson](docs/HardwareDeviceAppConfigurationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDeviceAppConfigurationRestResultPage](docs/HardwareDeviceAppConfigurationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDeviceInitializationRequestJson](docs/HardwareDeviceInitializationRequestJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDeviceInitializationRequestRestResultPage](docs/HardwareDeviceInitializationRequestRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDeviceJson](docs/HardwareDeviceJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareDeviceRestResultPage](docs/HardwareDeviceRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareSettingJson](docs/HardwareSettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareSettingRestResultPage](docs/HardwareSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareStationJson](docs/HardwareStationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareStationLockJson](docs/HardwareStationLockJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareStationLockRestResultPage](docs/HardwareStationLockRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareStationRestResultPage](docs/HardwareStationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.InputPart](docs/InputPart.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.InspectionReceiptJson](docs/InspectionReceiptJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.InspectionReceiptRestResultPage](docs/InspectionReceiptRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.IssuedTransactionJson](docs/IssuedTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.JsonNode](docs/JsonNode.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LanguageRestResultPage](docs/LanguageRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Link](docs/Link.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Locale](docs/Locale.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationJson](docs/LocationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationRestResultPage](docs/LocationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LogJson](docs/LogJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LogRestResultPage](docs/LogRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Mail2AttachmentJson](docs/Mail2AttachmentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Mail2AttachmentRestResultPage](docs/Mail2AttachmentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MailAddressJson](docs/MailAddressJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MailJson](docs/MailJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MailRestResultPage](docs/MailRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MailSendRequestJson](docs/MailSendRequestJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MailSendRequestRestResultPage](docs/MailSendRequestRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ManualPaymentRequestCompletionJson](docs/ManualPaymentRequestCompletionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ManualPaymentRequestCompletionRestResultPage](docs/ManualPaymentRequestCompletionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentJson](docs/MeansOfPaymentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentRestResultPage](docs/MeansOfPaymentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MediaItemJson](docs/MediaItemJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MediaItemRestResultPage](docs/MediaItemRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MediaType](docs/MediaType.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModuleJson](docs/ModuleJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MultipartFormDataInput](docs/MultipartFormDataInput.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NewCookie](docs/NewCookie.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PaymentJobJson](docs/PaymentJobJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PaymentJobRestResultPage](docs/PaymentJobRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PaymentRequestCancellationJson](docs/PaymentRequestCancellationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PaymentRequestCancellationRestResultPage](docs/PaymentRequestCancellationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PaymentRequestJson](docs/PaymentRequestJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PaymentRequestRestResultPage](docs/PaymentRequestRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PermissionJson](docs/PermissionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PermissionRestResultPage](docs/PermissionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PersistedPaymentJobJson](docs/PersistedPaymentJobJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PersistedPrintJobJson](docs/PersistedPrintJobJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PersistedVoucherJson](docs/PersistedVoucherJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PriceJson](docs/PriceJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PrintJobJson](docs/PrintJobJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PrintJobRestResultPage](docs/PrintJobRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PrintRequestJson](docs/PrintRequestJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PrintRequestRestResultPage](docs/PrintRequestRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCategoryJson](docs/ProductCategoryJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCategoryRestResultPage](docs/ProductCategoryRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCharacteristicJson](docs/ProductCharacteristicJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCharacteristicRestResultPage](docs/ProductCharacteristicRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCodeJson](docs/ProductCodeJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCodeRestResultPage](docs/ProductCodeRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCodeTypeJson](docs/ProductCodeTypeJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductCodeTypeRestResultPage](docs/ProductCodeTypeRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductExtensionJson](docs/ProductExtensionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductExtensionRestResultPage](docs/ProductExtensionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductJson](docs/ProductJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductMediaJson](docs/ProductMediaJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductMediaRestResultPage](docs/ProductMediaRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductOfferJson](docs/ProductOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductOfferMetadataJson](docs/ProductOfferMetadataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductOfferRestResultPage](docs/ProductOfferRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductRecommendationJson](docs/ProductRecommendationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductRecommendationRestResultPage](docs/ProductRecommendationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductRestResultPage](docs/ProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductSearchJson](docs/ProductSearchJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductSearchRestResultPage](docs/ProductSearchRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueEstimationJson](docs/QueueEstimationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueJson](docs/QueueJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueRestResultPage](docs/QueueRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueTopicJson](docs/QueueTopicJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueTopicRestResultPage](docs/QueueTopicRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueWorkerJson](docs/QueueWorkerJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueWorkerRestResultPage](docs/QueueWorkerRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReceiptGroupJson](docs/ReceiptGroupJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ResourceMappingJson](docs/ResourceMappingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ResourceMappingRestResultPage](docs/ResourceMappingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Response](docs/Response.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderCustomerDataJson](docs/RetailOrderCustomerDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderCustomerDataRestResultPage](docs/RetailOrderCustomerDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderJson](docs/RetailOrderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderPositionJson](docs/RetailOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderPositionRestResultPage](docs/RetailOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderRestResultPage](docs/RetailOrderRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderTaxDataJson](docs/RetailOrderTaxDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderTaxDataRestResultPage](docs/RetailOrderTaxDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderTransactionJson](docs/RetailOrderTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailOrderTransactionRestResultPage](docs/RetailOrderTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionCustomerDataJson](docs/RetailTransactionCustomerDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionCustomerDataRestResultPage](docs/RetailTransactionCustomerDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionJson](docs/RetailTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionPositionJson](docs/RetailTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionPositionRestResultPage](docs/RetailTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionPrintJobJson](docs/RetailTransactionPrintJobJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionPrintJobPartJson](docs/RetailTransactionPrintJobPartJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionPrintJobPartRestResultPage](docs/RetailTransactionPrintJobPartRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionPrintJobRestResultPage](docs/RetailTransactionPrintJobRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionRestResultPage](docs/RetailTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionTaxDataJson](docs/RetailTransactionTaxDataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailTransactionTaxDataRestResultPage](docs/RetailTransactionTaxDataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnCartPositionJson](docs/ReturnCartPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnCartPositionRestResultPage](docs/ReturnCartPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnReasonJson](docs/ReturnReasonJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnReasonRestResultPage](docs/ReturnReasonRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnTransactionPositionJson](docs/ReturnTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnTransactionPositionRestResultPage](docs/ReturnTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Role2PermissionJson](docs/Role2PermissionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.Role2PermissionRestResultPage](docs/Role2PermissionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RoleJson](docs/RoleJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RoleRestResultPage](docs/RoleRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SerialNumberJson](docs/SerialNumberJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SerialNumberRestResultPage](docs/SerialNumberRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SettingHistoryJson](docs/SettingHistoryJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SettingHistoryMetadataJson](docs/SettingHistoryMetadataJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SettingHistoryMetadataRestResultPage](docs/SettingHistoryMetadataRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SettingHistoryRestResultPage](docs/SettingHistoryRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SettingJson](docs/SettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SettingRestResultPage](docs/SettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ShortTokenJson](docs/ShortTokenJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SignatureProviderJson](docs/SignatureProviderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SignatureProviderRestResultPage](docs/SignatureProviderRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SmsJson](docs/SmsJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SmsRestResultPage](docs/SmsRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SmsSendRequestJson](docs/SmsSendRequestJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SmsSendRequestRestResultPage](docs/SmsSendRequestRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StackTraceJson](docs/StackTraceJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StatusType](docs/StatusType.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverOrderPositionJson](docs/StockGoodsHandoverOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverOrderPositionRestResultPage](docs/StockGoodsHandoverOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverTransactionPositionJson](docs/StockGoodsHandoverTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverTransactionPositionRestResultPage](docs/StockGoodsHandoverTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockJson](docs/StockJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockLevelJson](docs/StockLevelJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockLevelRestResultPage](docs/StockLevelRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderJson](docs/StockMovementOrderJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderPositionJson](docs/StockMovementOrderPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderPositionRestResultPage](docs/StockMovementOrderPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderPositionSerialJson](docs/StockMovementOrderPositionSerialJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderPositionSerialRestResultPage](docs/StockMovementOrderPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderRestResultPage](docs/StockMovementOrderRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderTransactionJson](docs/StockMovementOrderTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementOrderTransactionRestResultPage](docs/StockMovementOrderTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementTransactionJson](docs/StockMovementTransactionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementTransactionPositionJson](docs/StockMovementTransactionPositionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementTransactionPositionRestResultPage](docs/StockMovementTransactionPositionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementTransactionPositionSerialJson](docs/StockMovementTransactionPositionSerialJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementTransactionPositionSerialRestResultPage](docs/StockMovementTransactionPositionSerialRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockMovementTransactionRestResultPage](docs/StockMovementTransactionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockRestResultPage](docs/StockRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StrategyJson](docs/StrategyJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StrategyRestResultPage](docs/StrategyRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SubscriptionJson](docs/SubscriptionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SubscriptionRestResultPage](docs/SubscriptionRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxAmountJson](docs/TaxAmountJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxClass2ProductJson](docs/TaxClass2ProductJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxClass2ProductRestResultPage](docs/TaxClass2ProductRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxClassJson](docs/TaxClassJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxClassRestResultPage](docs/TaxClassRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxJson](docs/TaxJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxRestResultPage](docs/TaxRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxRuleJson](docs/TaxRuleJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxRuleRestResultPage](docs/TaxRuleRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxSet2TaxJson](docs/TaxSet2TaxJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxSet2TaxRestResultPage](docs/TaxSet2TaxRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxSetJson](docs/TaxSetJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxSetRestResultPage](docs/TaxSetRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TimedConfigurationRestResultPage](docs/TimedConfigurationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslationContentJson](docs/TranslationContentJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslationContentRestResultPage](docs/TranslationContentRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslationJson](docs/TranslationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TypeSettingJson](docs/TypeSettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TypeSettingRestResultPage](docs/TypeSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.UriBuilder](docs/UriBuilder.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.UsageJson](docs/UsageJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.UsageRestResultPage](docs/UsageRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.UserJson](docs/UserJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitEstimationJson](docs/VisitEstimationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitEstimationRestResultPage](docs/VisitEstimationRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitJson](docs/VisitJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitRestResultPage](docs/VisitRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorJson](docs/VisitorJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorMediaJson](docs/VisitorMediaJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorMediaPreviewJson](docs/VisitorMediaPreviewJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorMediaPreviewRestResultPage](docs/VisitorMediaPreviewRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorMediaRestResultPage](docs/VisitorMediaRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorRestResultPage](docs/VisitorRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverJson](docs/VoucherHandoverJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverRestResultPage](docs/VoucherHandoverRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherJson](docs/VoucherJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherNotificationSettingJson](docs/VoucherNotificationSettingJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherNotificationSettingRestResultPage](docs/VoucherNotificationSettingRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherRestResultPage](docs/VoucherRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowStepJson](docs/WorkflowStepJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowStepRestResultPage](docs/WorkflowStepRestResultPage.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationValueTemplateJson](docs/ConfigurationValueTemplateJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicGroupJson](docs/ConsultingTopicGroupJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicItemJson](docs/ConsultingTopicItemJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ManualConsultingTopicOfferJson](docs/ManualConsultingTopicOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ManualQueueTopicJson](docs/ManualQueueTopicJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RegionJson](docs/RegionJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SimpleConfigurationJson](docs/SimpleConfigurationJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StandardConsultingTopicOfferJson](docs/StandardConsultingTopicOfferJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StandardQueueTopicJson](docs/StandardQueueTopicJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StoreJson](docs/StoreJson.md)
 - [ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TimedConfigurationJson](docs/TimedConfigurationJson.md)


## Documentation for Authorization


### gemini_auth

- **Type**: OAuth
- **Flow**: implicit
- **Authorization URL**: ../login/openid
- **Scopes**: 
  - gemini_scope: The global authorization scope for Gemini.

