To use the examples, create `config.json` (and `specific-skill-config.json` for brand) files in their respective directories
with the respective configurations. These are briefly explained below.

Then, run the example you're interested in by calling `node <filename.js>`. Note that, for some brand examples, 
a consumer example must also be ran, in order for the example to make sense.

### Brand

These are the configurations for your brand. Fill in the auth data for an example bot as taken from the configuration page. 
Also enter your accountId and agentId (id of the example bot, whose configuration you are using).

```json
{
  "accountId": "",
  "agentId": "",
  "authData": {
    "username": "",
    "appKey": "",
    "secret": "",
    "accessToken": "",
    "accessTokenSecret": ""
  },
  "appId": ""
}
```
### Consumer

These are (mostly) free-form values for customer details, so enter basically whatever you want. 
Note that, "PHOTO_SHARING" and "AUTO_MESSAGES" features are required for the examples to work, so they are already filled below.

```json
{
  "accountId": "",
  "clientProperties": {
    "deviceFamily": "",
    "deviceManufacturer": "",
    "deviceModel": "",
    "osName": "",
    "osVersion": "",
    "ipAddress": "",
    "browser": "",
    "browserVersion": "",
    "timeZone": "",
    "features": ["AUTO_MESSAGES", "PHOTO_SHARING"]
  },
  "appId": "",
  "skillId": "4725444232"
}
```
